2 * Maintained by Jaroslav Kysela <perex@perex.cz>
3 * Originated by audio@tridentmicro.com
4 * Fri Feb 19 15:55:28 MST 1999
5 * Routines for control of Trident 4DWave (DX and NX) chip
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 * SiS7018 S/PDIF support by Thomas Winischhofer <thomas@winischhofer.net>
30 #include <linux/delay.h>
31 #include <linux/init.h>
32 #include <linux/interrupt.h>
33 #include <linux/pci.h>
34 #include <linux/slab.h>
35 #include <linux/vmalloc.h>
36 #include <linux/gameport.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/export.h>
40 #include <sound/core.h>
41 #include <sound/info.h>
42 #include <sound/control.h>
43 #include <sound/tlv.h>
44 #include <sound/trident.h>
45 #include <sound/asoundef.h>
49 static int snd_trident_pcm_mixer_build(struct snd_trident
*trident
,
50 struct snd_trident_voice
* voice
,
51 struct snd_pcm_substream
*substream
);
52 static int snd_trident_pcm_mixer_free(struct snd_trident
*trident
,
53 struct snd_trident_voice
* voice
,
54 struct snd_pcm_substream
*substream
);
55 static irqreturn_t
snd_trident_interrupt(int irq
, void *dev_id
);
56 static int snd_trident_sis_reset(struct snd_trident
*trident
);
58 static void snd_trident_clear_voices(struct snd_trident
* trident
,
59 unsigned short v_min
, unsigned short v_max
);
60 static int snd_trident_free(struct snd_trident
*trident
);
68 static void snd_trident_print_voice_regs(struct snd_trident
*trident
, int voice
)
70 unsigned int val
, tmp
;
72 printk(KERN_DEBUG
"Trident voice %i:\n", voice
);
73 outb(voice
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
74 val
= inl(TRID_REG(trident
, CH_LBA
));
75 printk(KERN_DEBUG
"LBA: 0x%x\n", val
);
76 val
= inl(TRID_REG(trident
, CH_GVSEL_PAN_VOL_CTRL_EC
));
77 printk(KERN_DEBUG
"GVSel: %i\n", val
>> 31);
78 printk(KERN_DEBUG
"Pan: 0x%x\n", (val
>> 24) & 0x7f);
79 printk(KERN_DEBUG
"Vol: 0x%x\n", (val
>> 16) & 0xff);
80 printk(KERN_DEBUG
"CTRL: 0x%x\n", (val
>> 12) & 0x0f);
81 printk(KERN_DEBUG
"EC: 0x%x\n", val
& 0x0fff);
82 if (trident
->device
!= TRIDENT_DEVICE_ID_NX
) {
83 val
= inl(TRID_REG(trident
, CH_DX_CSO_ALPHA_FMS
));
84 printk(KERN_DEBUG
"CSO: 0x%x\n", val
>> 16);
85 printk("Alpha: 0x%x\n", (val
>> 4) & 0x0fff);
86 printk(KERN_DEBUG
"FMS: 0x%x\n", val
& 0x0f);
87 val
= inl(TRID_REG(trident
, CH_DX_ESO_DELTA
));
88 printk(KERN_DEBUG
"ESO: 0x%x\n", val
>> 16);
89 printk(KERN_DEBUG
"Delta: 0x%x\n", val
& 0xffff);
90 val
= inl(TRID_REG(trident
, CH_DX_FMC_RVOL_CVOL
));
91 } else { // TRIDENT_DEVICE_ID_NX
92 val
= inl(TRID_REG(trident
, CH_NX_DELTA_CSO
));
93 tmp
= (val
>> 24) & 0xff;
94 printk(KERN_DEBUG
"CSO: 0x%x\n", val
& 0x00ffffff);
95 val
= inl(TRID_REG(trident
, CH_NX_DELTA_ESO
));
96 tmp
|= (val
>> 16) & 0xff00;
97 printk(KERN_DEBUG
"Delta: 0x%x\n", tmp
);
98 printk(KERN_DEBUG
"ESO: 0x%x\n", val
& 0x00ffffff);
99 val
= inl(TRID_REG(trident
, CH_NX_ALPHA_FMS_FMC_RVOL_CVOL
));
100 printk(KERN_DEBUG
"Alpha: 0x%x\n", val
>> 20);
101 printk(KERN_DEBUG
"FMS: 0x%x\n", (val
>> 16) & 0x0f);
103 printk(KERN_DEBUG
"FMC: 0x%x\n", (val
>> 14) & 3);
104 printk(KERN_DEBUG
"RVol: 0x%x\n", (val
>> 7) & 0x7f);
105 printk(KERN_DEBUG
"CVol: 0x%x\n", val
& 0x7f);
109 /*---------------------------------------------------------------------------
110 unsigned short snd_trident_codec_read(struct snd_ac97 *ac97, unsigned short reg)
112 Description: This routine will do all of the reading from the external
115 Parameters: ac97 - ac97 codec structure
116 reg - CODEC register index, from AC97 Hal.
118 returns: 16 bit value read from the AC97.
120 ---------------------------------------------------------------------------*/
121 static unsigned short snd_trident_codec_read(struct snd_ac97
*ac97
, unsigned short reg
)
123 unsigned int data
= 0, treg
;
124 unsigned short count
= 0xffff;
126 struct snd_trident
*trident
= ac97
->private_data
;
128 spin_lock_irqsave(&trident
->reg_lock
, flags
);
129 if (trident
->device
== TRIDENT_DEVICE_ID_DX
) {
130 data
= (DX_AC97_BUSY_READ
| (reg
& 0x000000ff));
131 outl(data
, TRID_REG(trident
, DX_ACR1_AC97_R
));
133 data
= inl(TRID_REG(trident
, DX_ACR1_AC97_R
));
134 if ((data
& DX_AC97_BUSY_READ
) == 0)
137 } else if (trident
->device
== TRIDENT_DEVICE_ID_NX
) {
138 data
= (NX_AC97_BUSY_READ
| (reg
& 0x000000ff));
139 treg
= ac97
->num
== 0 ? NX_ACR2_AC97_R_PRIMARY
: NX_ACR3_AC97_R_SECONDARY
;
140 outl(data
, TRID_REG(trident
, treg
));
142 data
= inl(TRID_REG(trident
, treg
));
143 if ((data
& 0x00000C00) == 0)
146 } else if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
147 data
= SI_AC97_BUSY_READ
| SI_AC97_AUDIO_BUSY
| (reg
& 0x000000ff);
149 data
|= SI_AC97_SECONDARY
;
150 outl(data
, TRID_REG(trident
, SI_AC97_READ
));
152 data
= inl(TRID_REG(trident
, SI_AC97_READ
));
153 if ((data
& (SI_AC97_BUSY_READ
)) == 0)
158 if (count
== 0 && !trident
->ac97_detect
) {
159 snd_printk(KERN_ERR
"ac97 codec read TIMEOUT [0x%x/0x%x]!!!\n",
164 spin_unlock_irqrestore(&trident
->reg_lock
, flags
);
165 return ((unsigned short) (data
>> 16));
168 /*---------------------------------------------------------------------------
169 void snd_trident_codec_write(struct snd_ac97 *ac97, unsigned short reg,
170 unsigned short wdata)
172 Description: This routine will do all of the writing to the external
175 Parameters: ac97 - ac97 codec structure
176 reg - CODEC register index, from AC97 Hal.
177 data - Lower 16 bits are the data to write to CODEC.
179 returns: TRUE if everything went ok, else FALSE.
181 ---------------------------------------------------------------------------*/
182 static void snd_trident_codec_write(struct snd_ac97
*ac97
, unsigned short reg
,
183 unsigned short wdata
)
185 unsigned int address
, data
;
186 unsigned short count
= 0xffff;
188 struct snd_trident
*trident
= ac97
->private_data
;
190 data
= ((unsigned long) wdata
) << 16;
192 spin_lock_irqsave(&trident
->reg_lock
, flags
);
193 if (trident
->device
== TRIDENT_DEVICE_ID_DX
) {
194 address
= DX_ACR0_AC97_W
;
196 /* read AC-97 write register status */
198 if ((inw(TRID_REG(trident
, address
)) & DX_AC97_BUSY_WRITE
) == 0)
202 data
|= (DX_AC97_BUSY_WRITE
| (reg
& 0x000000ff));
203 } else if (trident
->device
== TRIDENT_DEVICE_ID_NX
) {
204 address
= NX_ACR1_AC97_W
;
206 /* read AC-97 write register status */
208 if ((inw(TRID_REG(trident
, address
)) & NX_AC97_BUSY_WRITE
) == 0)
212 data
|= (NX_AC97_BUSY_WRITE
| (ac97
->num
<< 8) | (reg
& 0x000000ff));
213 } else if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
214 address
= SI_AC97_WRITE
;
216 /* read AC-97 write register status */
218 if ((inw(TRID_REG(trident
, address
)) & (SI_AC97_BUSY_WRITE
)) == 0)
222 data
|= SI_AC97_BUSY_WRITE
| SI_AC97_AUDIO_BUSY
| (reg
& 0x000000ff);
224 data
|= SI_AC97_SECONDARY
;
226 address
= 0; /* keep GCC happy */
227 count
= 0; /* return */
231 spin_unlock_irqrestore(&trident
->reg_lock
, flags
);
234 outl(data
, TRID_REG(trident
, address
));
235 spin_unlock_irqrestore(&trident
->reg_lock
, flags
);
238 /*---------------------------------------------------------------------------
239 void snd_trident_enable_eso(struct snd_trident *trident)
241 Description: This routine will enable end of loop interrupts.
242 End of loop interrupts will occur when a running
244 Also enables middle of loop interrupts.
246 Parameters: trident - pointer to target device class for 4DWave.
248 ---------------------------------------------------------------------------*/
250 static void snd_trident_enable_eso(struct snd_trident
* trident
)
254 val
= inl(TRID_REG(trident
, T4D_LFO_GC_CIR
));
257 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
)
259 outl(val
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
262 /*---------------------------------------------------------------------------
263 void snd_trident_disable_eso(struct snd_trident *trident)
265 Description: This routine will disable end of loop interrupts.
266 End of loop interrupts will occur when a running
268 Also disables middle of loop interrupts.
271 trident - pointer to target device class for 4DWave.
273 returns: TRUE if everything went ok, else FALSE.
275 ---------------------------------------------------------------------------*/
277 static void snd_trident_disable_eso(struct snd_trident
* trident
)
281 tmp
= inl(TRID_REG(trident
, T4D_LFO_GC_CIR
));
284 outl(tmp
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
287 /*---------------------------------------------------------------------------
288 void snd_trident_start_voice(struct snd_trident * trident, unsigned int voice)
290 Description: Start a voice, any channel 0 thru 63.
291 This routine automatically handles the fact that there are
292 more than 32 channels available.
294 Parameters : voice - Voice number 0 thru n.
295 trident - pointer to target device class for 4DWave.
299 ---------------------------------------------------------------------------*/
301 void snd_trident_start_voice(struct snd_trident
* trident
, unsigned int voice
)
303 unsigned int mask
= 1 << (voice
& 0x1f);
304 unsigned int reg
= (voice
& 0x20) ? T4D_START_B
: T4D_START_A
;
306 outl(mask
, TRID_REG(trident
, reg
));
309 EXPORT_SYMBOL(snd_trident_start_voice
);
311 /*---------------------------------------------------------------------------
312 void snd_trident_stop_voice(struct snd_trident * trident, unsigned int voice)
314 Description: Stop a voice, any channel 0 thru 63.
315 This routine automatically handles the fact that there are
316 more than 32 channels available.
318 Parameters : voice - Voice number 0 thru n.
319 trident - pointer to target device class for 4DWave.
323 ---------------------------------------------------------------------------*/
325 void snd_trident_stop_voice(struct snd_trident
* trident
, unsigned int voice
)
327 unsigned int mask
= 1 << (voice
& 0x1f);
328 unsigned int reg
= (voice
& 0x20) ? T4D_STOP_B
: T4D_STOP_A
;
330 outl(mask
, TRID_REG(trident
, reg
));
333 EXPORT_SYMBOL(snd_trident_stop_voice
);
335 /*---------------------------------------------------------------------------
336 int snd_trident_allocate_pcm_channel(struct snd_trident *trident)
338 Description: Allocate hardware channel in Bank B (32-63).
340 Parameters : trident - pointer to target device class for 4DWave.
342 Return Value: hardware channel - 32-63 or -1 when no channel is available
344 ---------------------------------------------------------------------------*/
346 static int snd_trident_allocate_pcm_channel(struct snd_trident
* trident
)
350 if (trident
->ChanPCMcnt
>= trident
->ChanPCM
)
352 for (idx
= 31; idx
>= 0; idx
--) {
353 if (!(trident
->ChanMap
[T4D_BANK_B
] & (1 << idx
))) {
354 trident
->ChanMap
[T4D_BANK_B
] |= 1 << idx
;
355 trident
->ChanPCMcnt
++;
362 /*---------------------------------------------------------------------------
363 void snd_trident_free_pcm_channel(int channel)
365 Description: Free hardware channel in Bank B (32-63)
367 Parameters : trident - pointer to target device class for 4DWave.
368 channel - hardware channel number 0-63
372 ---------------------------------------------------------------------------*/
374 static void snd_trident_free_pcm_channel(struct snd_trident
*trident
, int channel
)
376 if (channel
< 32 || channel
> 63)
379 if (trident
->ChanMap
[T4D_BANK_B
] & (1 << channel
)) {
380 trident
->ChanMap
[T4D_BANK_B
] &= ~(1 << channel
);
381 trident
->ChanPCMcnt
--;
385 /*---------------------------------------------------------------------------
386 unsigned int snd_trident_allocate_synth_channel(void)
388 Description: Allocate hardware channel in Bank A (0-31).
390 Parameters : trident - pointer to target device class for 4DWave.
392 Return Value: hardware channel - 0-31 or -1 when no channel is available
394 ---------------------------------------------------------------------------*/
396 static int snd_trident_allocate_synth_channel(struct snd_trident
* trident
)
400 for (idx
= 31; idx
>= 0; idx
--) {
401 if (!(trident
->ChanMap
[T4D_BANK_A
] & (1 << idx
))) {
402 trident
->ChanMap
[T4D_BANK_A
] |= 1 << idx
;
403 trident
->synth
.ChanSynthCount
++;
410 /*---------------------------------------------------------------------------
411 void snd_trident_free_synth_channel( int channel )
413 Description: Free hardware channel in Bank B (0-31).
415 Parameters : trident - pointer to target device class for 4DWave.
416 channel - hardware channel number 0-63
420 ---------------------------------------------------------------------------*/
422 static void snd_trident_free_synth_channel(struct snd_trident
*trident
, int channel
)
424 if (channel
< 0 || channel
> 31)
427 if (trident
->ChanMap
[T4D_BANK_A
] & (1 << channel
)) {
428 trident
->ChanMap
[T4D_BANK_A
] &= ~(1 << channel
);
429 trident
->synth
.ChanSynthCount
--;
433 /*---------------------------------------------------------------------------
434 snd_trident_write_voice_regs
436 Description: This routine will complete and write the 5 hardware channel
437 registers to hardware.
439 Parameters: trident - pointer to target device class for 4DWave.
440 voice - synthesizer voice structure
443 ---------------------------------------------------------------------------*/
445 void snd_trident_write_voice_regs(struct snd_trident
* trident
,
446 struct snd_trident_voice
* voice
)
448 unsigned int FmcRvolCvol
;
449 unsigned int regs
[5];
451 regs
[1] = voice
->LBA
;
452 regs
[4] = (voice
->GVSel
<< 31) |
453 ((voice
->Pan
& 0x0000007f) << 24) |
454 ((voice
->CTRL
& 0x0000000f) << 12);
455 FmcRvolCvol
= ((voice
->FMC
& 3) << 14) |
456 ((voice
->RVol
& 0x7f) << 7) |
457 (voice
->CVol
& 0x7f);
459 switch (trident
->device
) {
460 case TRIDENT_DEVICE_ID_SI7018
:
461 regs
[4] |= voice
->number
> 31 ?
462 (voice
->Vol
& 0x000003ff) :
463 ((voice
->Vol
& 0x00003fc) << (16-2)) |
464 (voice
->EC
& 0x00000fff);
465 regs
[0] = (voice
->CSO
<< 16) | ((voice
->Alpha
& 0x00000fff) << 4) |
466 (voice
->FMS
& 0x0000000f);
467 regs
[2] = (voice
->ESO
<< 16) | (voice
->Delta
& 0x0ffff);
468 regs
[3] = (voice
->Attribute
<< 16) | FmcRvolCvol
;
470 case TRIDENT_DEVICE_ID_DX
:
471 regs
[4] |= ((voice
->Vol
& 0x000003fc) << (16-2)) |
472 (voice
->EC
& 0x00000fff);
473 regs
[0] = (voice
->CSO
<< 16) | ((voice
->Alpha
& 0x00000fff) << 4) |
474 (voice
->FMS
& 0x0000000f);
475 regs
[2] = (voice
->ESO
<< 16) | (voice
->Delta
& 0x0ffff);
476 regs
[3] = FmcRvolCvol
;
478 case TRIDENT_DEVICE_ID_NX
:
479 regs
[4] |= ((voice
->Vol
& 0x000003fc) << (16-2)) |
480 (voice
->EC
& 0x00000fff);
481 regs
[0] = (voice
->Delta
<< 24) | (voice
->CSO
& 0x00ffffff);
482 regs
[2] = ((voice
->Delta
<< 16) & 0xff000000) |
483 (voice
->ESO
& 0x00ffffff);
484 regs
[3] = (voice
->Alpha
<< 20) |
485 ((voice
->FMS
& 0x0000000f) << 16) | FmcRvolCvol
;
492 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
493 outl(regs
[0], TRID_REG(trident
, CH_START
+ 0));
494 outl(regs
[1], TRID_REG(trident
, CH_START
+ 4));
495 outl(regs
[2], TRID_REG(trident
, CH_START
+ 8));
496 outl(regs
[3], TRID_REG(trident
, CH_START
+ 12));
497 outl(regs
[4], TRID_REG(trident
, CH_START
+ 16));
500 printk(KERN_DEBUG
"written %i channel:\n", voice
->number
);
501 printk(KERN_DEBUG
" regs[0] = 0x%x/0x%x\n",
502 regs
[0], inl(TRID_REG(trident
, CH_START
+ 0)));
503 printk(KERN_DEBUG
" regs[1] = 0x%x/0x%x\n",
504 regs
[1], inl(TRID_REG(trident
, CH_START
+ 4)));
505 printk(KERN_DEBUG
" regs[2] = 0x%x/0x%x\n",
506 regs
[2], inl(TRID_REG(trident
, CH_START
+ 8)));
507 printk(KERN_DEBUG
" regs[3] = 0x%x/0x%x\n",
508 regs
[3], inl(TRID_REG(trident
, CH_START
+ 12)));
509 printk(KERN_DEBUG
" regs[4] = 0x%x/0x%x\n",
510 regs
[4], inl(TRID_REG(trident
, CH_START
+ 16)));
514 EXPORT_SYMBOL(snd_trident_write_voice_regs
);
516 /*---------------------------------------------------------------------------
517 snd_trident_write_cso_reg
519 Description: This routine will write the new CSO offset
520 register to hardware.
522 Parameters: trident - pointer to target device class for 4DWave.
523 voice - synthesizer voice structure
526 ---------------------------------------------------------------------------*/
528 static void snd_trident_write_cso_reg(struct snd_trident
* trident
,
529 struct snd_trident_voice
* voice
,
533 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
534 if (trident
->device
!= TRIDENT_DEVICE_ID_NX
) {
535 outw(voice
->CSO
, TRID_REG(trident
, CH_DX_CSO_ALPHA_FMS
) + 2);
537 outl((voice
->Delta
<< 24) |
538 (voice
->CSO
& 0x00ffffff), TRID_REG(trident
, CH_NX_DELTA_CSO
));
542 /*---------------------------------------------------------------------------
543 snd_trident_write_eso_reg
545 Description: This routine will write the new ESO offset
546 register to hardware.
548 Parameters: trident - pointer to target device class for 4DWave.
549 voice - synthesizer voice structure
552 ---------------------------------------------------------------------------*/
554 static void snd_trident_write_eso_reg(struct snd_trident
* trident
,
555 struct snd_trident_voice
* voice
,
559 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
560 if (trident
->device
!= TRIDENT_DEVICE_ID_NX
) {
561 outw(voice
->ESO
, TRID_REG(trident
, CH_DX_ESO_DELTA
) + 2);
563 outl(((voice
->Delta
<< 16) & 0xff000000) | (voice
->ESO
& 0x00ffffff),
564 TRID_REG(trident
, CH_NX_DELTA_ESO
));
568 /*---------------------------------------------------------------------------
569 snd_trident_write_vol_reg
571 Description: This routine will write the new voice volume
572 register to hardware.
574 Parameters: trident - pointer to target device class for 4DWave.
575 voice - synthesizer voice structure
576 Vol - new voice volume
578 ---------------------------------------------------------------------------*/
580 static void snd_trident_write_vol_reg(struct snd_trident
* trident
,
581 struct snd_trident_voice
* voice
,
585 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
586 switch (trident
->device
) {
587 case TRIDENT_DEVICE_ID_DX
:
588 case TRIDENT_DEVICE_ID_NX
:
589 outb(voice
->Vol
>> 2, TRID_REG(trident
, CH_GVSEL_PAN_VOL_CTRL_EC
+ 2));
591 case TRIDENT_DEVICE_ID_SI7018
:
592 /* printk(KERN_DEBUG "voice->Vol = 0x%x\n", voice->Vol); */
593 outw((voice
->CTRL
<< 12) | voice
->Vol
,
594 TRID_REG(trident
, CH_GVSEL_PAN_VOL_CTRL_EC
));
599 /*---------------------------------------------------------------------------
600 snd_trident_write_pan_reg
602 Description: This routine will write the new voice pan
603 register to hardware.
605 Parameters: trident - pointer to target device class for 4DWave.
606 voice - synthesizer voice structure
609 ---------------------------------------------------------------------------*/
611 static void snd_trident_write_pan_reg(struct snd_trident
* trident
,
612 struct snd_trident_voice
* voice
,
616 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
617 outb(((voice
->GVSel
& 0x01) << 7) | (voice
->Pan
& 0x7f),
618 TRID_REG(trident
, CH_GVSEL_PAN_VOL_CTRL_EC
+ 3));
621 /*---------------------------------------------------------------------------
622 snd_trident_write_rvol_reg
624 Description: This routine will write the new reverb volume
625 register to hardware.
627 Parameters: trident - pointer to target device class for 4DWave.
628 voice - synthesizer voice structure
629 RVol - new reverb volume
631 ---------------------------------------------------------------------------*/
633 static void snd_trident_write_rvol_reg(struct snd_trident
* trident
,
634 struct snd_trident_voice
* voice
,
638 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
639 outw(((voice
->FMC
& 0x0003) << 14) | ((voice
->RVol
& 0x007f) << 7) |
640 (voice
->CVol
& 0x007f),
641 TRID_REG(trident
, trident
->device
== TRIDENT_DEVICE_ID_NX
?
642 CH_NX_ALPHA_FMS_FMC_RVOL_CVOL
: CH_DX_FMC_RVOL_CVOL
));
645 /*---------------------------------------------------------------------------
646 snd_trident_write_cvol_reg
648 Description: This routine will write the new chorus volume
649 register to hardware.
651 Parameters: trident - pointer to target device class for 4DWave.
652 voice - synthesizer voice structure
653 CVol - new chorus volume
655 ---------------------------------------------------------------------------*/
657 static void snd_trident_write_cvol_reg(struct snd_trident
* trident
,
658 struct snd_trident_voice
* voice
,
662 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
663 outw(((voice
->FMC
& 0x0003) << 14) | ((voice
->RVol
& 0x007f) << 7) |
664 (voice
->CVol
& 0x007f),
665 TRID_REG(trident
, trident
->device
== TRIDENT_DEVICE_ID_NX
?
666 CH_NX_ALPHA_FMS_FMC_RVOL_CVOL
: CH_DX_FMC_RVOL_CVOL
));
669 /*---------------------------------------------------------------------------
670 snd_trident_convert_rate
672 Description: This routine converts rate in HZ to hardware delta value.
674 Parameters: trident - pointer to target device class for 4DWave.
675 rate - Real or Virtual channel number.
677 Returns: Delta value.
679 ---------------------------------------------------------------------------*/
680 static unsigned int snd_trident_convert_rate(unsigned int rate
)
684 // We special case 44100 and 8000 since rounding with the equation
685 // does not give us an accurate enough value. For 11025 and 22050
686 // the equation gives us the best answer. All other frequencies will
687 // also use the equation. JDW
690 else if (rate
== 8000)
692 else if (rate
== 48000)
695 delta
= (((rate
<< 12) + 24000) / 48000) & 0x0000ffff;
699 /*---------------------------------------------------------------------------
700 snd_trident_convert_adc_rate
702 Description: This routine converts rate in HZ to hardware delta value.
704 Parameters: trident - pointer to target device class for 4DWave.
705 rate - Real or Virtual channel number.
707 Returns: Delta value.
709 ---------------------------------------------------------------------------*/
710 static unsigned int snd_trident_convert_adc_rate(unsigned int rate
)
714 // We special case 44100 and 8000 since rounding with the equation
715 // does not give us an accurate enough value. For 11025 and 22050
716 // the equation gives us the best answer. All other frequencies will
717 // also use the equation. JDW
720 else if (rate
== 8000)
722 else if (rate
== 48000)
725 delta
= ((48000 << 12) / rate
) & 0x0000ffff;
729 /*---------------------------------------------------------------------------
730 snd_trident_spurious_threshold
732 Description: This routine converts rate in HZ to spurious threshold.
734 Parameters: trident - pointer to target device class for 4DWave.
735 rate - Real or Virtual channel number.
737 Returns: Delta value.
739 ---------------------------------------------------------------------------*/
740 static unsigned int snd_trident_spurious_threshold(unsigned int rate
,
741 unsigned int period_size
)
743 unsigned int res
= (rate
* period_size
) / 48000;
751 /*---------------------------------------------------------------------------
752 snd_trident_control_mode
754 Description: This routine returns a control mode for a PCM channel.
756 Parameters: trident - pointer to target device class for 4DWave.
757 substream - PCM substream
759 Returns: Control value.
761 ---------------------------------------------------------------------------*/
762 static unsigned int snd_trident_control_mode(struct snd_pcm_substream
*substream
)
765 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
768 CTRL default: 8-bit (unsigned) mono, loop mode enabled
771 if (snd_pcm_format_width(runtime
->format
) == 16)
772 CTRL
|= 0x00000008; // 16-bit data
773 if (snd_pcm_format_signed(runtime
->format
))
774 CTRL
|= 0x00000002; // signed data
775 if (runtime
->channels
> 1)
776 CTRL
|= 0x00000004; // stereo data
784 /*---------------------------------------------------------------------------
787 Description: Device I/O control handler for playback/capture parameters.
789 Parameters: substream - PCM substream class
790 cmd - what ioctl message to process
791 arg - additional message infoarg
793 Returns: Error status
795 ---------------------------------------------------------------------------*/
797 static int snd_trident_ioctl(struct snd_pcm_substream
*substream
,
801 /* FIXME: it seems that with small periods the behaviour of
802 trident hardware is unpredictable and interrupt generator
804 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
807 /*---------------------------------------------------------------------------
808 snd_trident_allocate_pcm_mem
810 Description: Allocate PCM ring buffer for given substream
812 Parameters: substream - PCM substream class
813 hw_params - hardware parameters
815 Returns: Error status
817 ---------------------------------------------------------------------------*/
819 static int snd_trident_allocate_pcm_mem(struct snd_pcm_substream
*substream
,
820 struct snd_pcm_hw_params
*hw_params
)
822 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
823 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
824 struct snd_trident_voice
*voice
= runtime
->private_data
;
827 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
829 if (trident
->tlb
.entries
) {
830 if (err
> 0) { /* change */
832 snd_trident_free_pages(trident
, voice
->memblk
);
833 voice
->memblk
= snd_trident_alloc_pages(trident
, substream
);
834 if (voice
->memblk
== NULL
)
841 /*---------------------------------------------------------------------------
842 snd_trident_allocate_evoice
844 Description: Allocate extra voice as interrupt generator
846 Parameters: substream - PCM substream class
847 hw_params - hardware parameters
849 Returns: Error status
851 ---------------------------------------------------------------------------*/
853 static int snd_trident_allocate_evoice(struct snd_pcm_substream
*substream
,
854 struct snd_pcm_hw_params
*hw_params
)
856 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
857 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
858 struct snd_trident_voice
*voice
= runtime
->private_data
;
859 struct snd_trident_voice
*evoice
= voice
->extra
;
861 /* voice management */
863 if (params_buffer_size(hw_params
) / 2 != params_period_size(hw_params
)) {
864 if (evoice
== NULL
) {
865 evoice
= snd_trident_alloc_voice(trident
, SNDRV_TRIDENT_VOICE_TYPE_PCM
, 0, 0);
868 voice
->extra
= evoice
;
869 evoice
->substream
= substream
;
872 if (evoice
!= NULL
) {
873 snd_trident_free_voice(trident
, evoice
);
874 voice
->extra
= evoice
= NULL
;
881 /*---------------------------------------------------------------------------
882 snd_trident_hw_params
884 Description: Set the hardware parameters for the playback device.
886 Parameters: substream - PCM substream class
887 hw_params - hardware parameters
889 Returns: Error status
891 ---------------------------------------------------------------------------*/
893 static int snd_trident_hw_params(struct snd_pcm_substream
*substream
,
894 struct snd_pcm_hw_params
*hw_params
)
898 err
= snd_trident_allocate_pcm_mem(substream
, hw_params
);
900 err
= snd_trident_allocate_evoice(substream
, hw_params
);
904 /*---------------------------------------------------------------------------
905 snd_trident_playback_hw_free
907 Description: Release the hardware resources for the playback device.
909 Parameters: substream - PCM substream class
911 Returns: Error status
913 ---------------------------------------------------------------------------*/
915 static int snd_trident_hw_free(struct snd_pcm_substream
*substream
)
917 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
918 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
919 struct snd_trident_voice
*voice
= runtime
->private_data
;
920 struct snd_trident_voice
*evoice
= voice
? voice
->extra
: NULL
;
922 if (trident
->tlb
.entries
) {
923 if (voice
&& voice
->memblk
) {
924 snd_trident_free_pages(trident
, voice
->memblk
);
925 voice
->memblk
= NULL
;
928 snd_pcm_lib_free_pages(substream
);
929 if (evoice
!= NULL
) {
930 snd_trident_free_voice(trident
, evoice
);
936 /*---------------------------------------------------------------------------
937 snd_trident_playback_prepare
939 Description: Prepare playback device for playback.
941 Parameters: substream - PCM substream class
943 Returns: Error status
945 ---------------------------------------------------------------------------*/
947 static int snd_trident_playback_prepare(struct snd_pcm_substream
*substream
)
949 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
950 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
951 struct snd_trident_voice
*voice
= runtime
->private_data
;
952 struct snd_trident_voice
*evoice
= voice
->extra
;
953 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[substream
->number
];
955 spin_lock_irq(&trident
->reg_lock
);
957 /* set delta (rate) value */
958 voice
->Delta
= snd_trident_convert_rate(runtime
->rate
);
959 voice
->spurious_threshold
= snd_trident_spurious_threshold(runtime
->rate
, runtime
->period_size
);
961 /* set Loop Begin Address */
963 voice
->LBA
= voice
->memblk
->offset
;
965 voice
->LBA
= runtime
->dma_addr
;
968 voice
->ESO
= runtime
->buffer_size
- 1; /* in samples */
969 voice
->CTRL
= snd_trident_control_mode(substream
);
975 voice
->Vol
= mix
->vol
;
976 voice
->RVol
= mix
->rvol
;
977 voice
->CVol
= mix
->cvol
;
978 voice
->Pan
= mix
->pan
;
979 voice
->Attribute
= 0;
981 voice
->Attribute
= (1<<(30-16))|(2<<(26-16))|
982 (0<<(24-16))|(0x1f<<(19-16));
984 voice
->Attribute
= 0;
987 snd_trident_write_voice_regs(trident
, voice
);
989 if (evoice
!= NULL
) {
990 evoice
->Delta
= voice
->Delta
;
991 evoice
->spurious_threshold
= voice
->spurious_threshold
;
992 evoice
->LBA
= voice
->LBA
;
994 evoice
->ESO
= (runtime
->period_size
* 2) + 4 - 1; /* in samples */
995 evoice
->CTRL
= voice
->CTRL
;
997 evoice
->GVSel
= trident
->device
== TRIDENT_DEVICE_ID_SI7018
? 0 : 1;
1001 evoice
->Vol
= 0x3ff; /* mute */
1002 evoice
->RVol
= evoice
->CVol
= 0x7f; /* mute */
1003 evoice
->Pan
= 0x7f; /* mute */
1005 evoice
->Attribute
= (1<<(30-16))|(2<<(26-16))|
1006 (0<<(24-16))|(0x1f<<(19-16));
1008 evoice
->Attribute
= 0;
1010 snd_trident_write_voice_regs(trident
, evoice
);
1012 evoice
->isync_mark
= runtime
->period_size
;
1013 evoice
->ESO
= (runtime
->period_size
* 2) - 1;
1016 spin_unlock_irq(&trident
->reg_lock
);
1021 /*---------------------------------------------------------------------------
1022 snd_trident_capture_hw_params
1024 Description: Set the hardware parameters for the capture device.
1026 Parameters: substream - PCM substream class
1027 hw_params - hardware parameters
1029 Returns: Error status
1031 ---------------------------------------------------------------------------*/
1033 static int snd_trident_capture_hw_params(struct snd_pcm_substream
*substream
,
1034 struct snd_pcm_hw_params
*hw_params
)
1036 return snd_trident_allocate_pcm_mem(substream
, hw_params
);
1039 /*---------------------------------------------------------------------------
1040 snd_trident_capture_prepare
1042 Description: Prepare capture device for playback.
1044 Parameters: substream - PCM substream class
1046 Returns: Error status
1048 ---------------------------------------------------------------------------*/
1050 static int snd_trident_capture_prepare(struct snd_pcm_substream
*substream
)
1052 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1053 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1054 struct snd_trident_voice
*voice
= runtime
->private_data
;
1055 unsigned int val
, ESO_bytes
;
1057 spin_lock_irq(&trident
->reg_lock
);
1059 // Initialize the channel and set channel Mode
1060 outb(0, TRID_REG(trident
, LEGACY_DMAR15
));
1062 // Set DMA channel operation mode register
1063 outb(0x54, TRID_REG(trident
, LEGACY_DMAR11
));
1065 // Set channel buffer Address, DMAR0 expects contiguous PCI memory area
1066 voice
->LBA
= runtime
->dma_addr
;
1067 outl(voice
->LBA
, TRID_REG(trident
, LEGACY_DMAR0
));
1069 voice
->LBA
= voice
->memblk
->offset
;
1072 ESO_bytes
= snd_pcm_lib_buffer_bytes(substream
) - 1;
1073 outb((ESO_bytes
& 0x00ff0000) >> 16, TRID_REG(trident
, LEGACY_DMAR6
));
1074 outw((ESO_bytes
& 0x0000ffff), TRID_REG(trident
, LEGACY_DMAR4
));
1077 // Set channel sample rate, 4.12 format
1078 val
= (((unsigned int) 48000L << 12) + (runtime
->rate
/2)) / runtime
->rate
;
1079 outw(val
, TRID_REG(trident
, T4D_SBDELTA_DELTA_R
));
1081 // Set channel interrupt blk length
1082 if (snd_pcm_format_width(runtime
->format
) == 16) {
1083 val
= (unsigned short) ((ESO_bytes
>> 1) - 1);
1085 val
= (unsigned short) (ESO_bytes
- 1);
1088 outl((val
<< 16) | val
, TRID_REG(trident
, T4D_SBBL_SBCL
));
1090 // Right now, set format and start to run captureing,
1091 // continuous run loop enable.
1092 trident
->bDMAStart
= 0x19; // 0001 1001b
1094 if (snd_pcm_format_width(runtime
->format
) == 16)
1095 trident
->bDMAStart
|= 0x80;
1096 if (snd_pcm_format_signed(runtime
->format
))
1097 trident
->bDMAStart
|= 0x20;
1098 if (runtime
->channels
> 1)
1099 trident
->bDMAStart
|= 0x40;
1101 // Prepare capture intr channel
1103 voice
->Delta
= snd_trident_convert_rate(runtime
->rate
);
1104 voice
->spurious_threshold
= snd_trident_spurious_threshold(runtime
->rate
, runtime
->period_size
);
1106 voice
->isync_mark
= runtime
->period_size
;
1107 voice
->isync_max
= runtime
->buffer_size
;
1109 // Set voice parameters
1111 voice
->ESO
= voice
->isync_ESO
= (runtime
->period_size
* 2) + 6 - 1;
1112 voice
->CTRL
= snd_trident_control_mode(substream
);
1117 voice
->Pan
= 0x7f; /* mute */
1118 voice
->Vol
= 0x3ff; /* mute */
1122 voice
->Attribute
= 0;
1124 snd_trident_write_voice_regs(trident
, voice
);
1126 spin_unlock_irq(&trident
->reg_lock
);
1130 /*---------------------------------------------------------------------------
1131 snd_trident_si7018_capture_hw_params
1133 Description: Set the hardware parameters for the capture device.
1135 Parameters: substream - PCM substream class
1136 hw_params - hardware parameters
1138 Returns: Error status
1140 ---------------------------------------------------------------------------*/
1142 static int snd_trident_si7018_capture_hw_params(struct snd_pcm_substream
*substream
,
1143 struct snd_pcm_hw_params
*hw_params
)
1147 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
1150 return snd_trident_allocate_evoice(substream
, hw_params
);
1153 /*---------------------------------------------------------------------------
1154 snd_trident_si7018_capture_hw_free
1156 Description: Release the hardware resources for the capture device.
1158 Parameters: substream - PCM substream class
1160 Returns: Error status
1162 ---------------------------------------------------------------------------*/
1164 static int snd_trident_si7018_capture_hw_free(struct snd_pcm_substream
*substream
)
1166 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1167 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1168 struct snd_trident_voice
*voice
= runtime
->private_data
;
1169 struct snd_trident_voice
*evoice
= voice
? voice
->extra
: NULL
;
1171 snd_pcm_lib_free_pages(substream
);
1172 if (evoice
!= NULL
) {
1173 snd_trident_free_voice(trident
, evoice
);
1174 voice
->extra
= NULL
;
1179 /*---------------------------------------------------------------------------
1180 snd_trident_si7018_capture_prepare
1182 Description: Prepare capture device for playback.
1184 Parameters: substream - PCM substream class
1186 Returns: Error status
1188 ---------------------------------------------------------------------------*/
1190 static int snd_trident_si7018_capture_prepare(struct snd_pcm_substream
*substream
)
1192 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1193 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1194 struct snd_trident_voice
*voice
= runtime
->private_data
;
1195 struct snd_trident_voice
*evoice
= voice
->extra
;
1197 spin_lock_irq(&trident
->reg_lock
);
1199 voice
->LBA
= runtime
->dma_addr
;
1200 voice
->Delta
= snd_trident_convert_adc_rate(runtime
->rate
);
1201 voice
->spurious_threshold
= snd_trident_spurious_threshold(runtime
->rate
, runtime
->period_size
);
1203 // Set voice parameters
1205 voice
->ESO
= runtime
->buffer_size
- 1; /* in samples */
1206 voice
->CTRL
= snd_trident_control_mode(substream
);
1211 voice
->Pan
= T4D_DEFAULT_PCM_PAN
;
1217 voice
->Attribute
= (2 << (30-16)) |
1222 snd_trident_write_voice_regs(trident
, voice
);
1224 if (evoice
!= NULL
) {
1225 evoice
->Delta
= snd_trident_convert_rate(runtime
->rate
);
1226 evoice
->spurious_threshold
= voice
->spurious_threshold
;
1227 evoice
->LBA
= voice
->LBA
;
1229 evoice
->ESO
= (runtime
->period_size
* 2) + 20 - 1; /* in samples, 20 means correction */
1230 evoice
->CTRL
= voice
->CTRL
;
1236 evoice
->Vol
= 0x3ff; /* mute */
1237 evoice
->RVol
= evoice
->CVol
= 0x7f; /* mute */
1238 evoice
->Pan
= 0x7f; /* mute */
1239 evoice
->Attribute
= 0;
1240 snd_trident_write_voice_regs(trident
, evoice
);
1242 evoice
->isync_mark
= runtime
->period_size
;
1243 evoice
->ESO
= (runtime
->period_size
* 2) - 1;
1246 spin_unlock_irq(&trident
->reg_lock
);
1250 /*---------------------------------------------------------------------------
1251 snd_trident_foldback_prepare
1253 Description: Prepare foldback capture device for playback.
1255 Parameters: substream - PCM substream class
1257 Returns: Error status
1259 ---------------------------------------------------------------------------*/
1261 static int snd_trident_foldback_prepare(struct snd_pcm_substream
*substream
)
1263 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1264 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1265 struct snd_trident_voice
*voice
= runtime
->private_data
;
1266 struct snd_trident_voice
*evoice
= voice
->extra
;
1268 spin_lock_irq(&trident
->reg_lock
);
1270 /* Set channel buffer Address */
1272 voice
->LBA
= voice
->memblk
->offset
;
1274 voice
->LBA
= runtime
->dma_addr
;
1276 /* set target ESO for channel */
1277 voice
->ESO
= runtime
->buffer_size
- 1; /* in samples */
1279 /* set sample rate */
1280 voice
->Delta
= 0x1000;
1281 voice
->spurious_threshold
= snd_trident_spurious_threshold(48000, runtime
->period_size
);
1284 voice
->CTRL
= snd_trident_control_mode(substream
);
1289 voice
->Pan
= 0x7f; /* mute */
1290 voice
->Vol
= 0x3ff; /* mute */
1294 voice
->Attribute
= 0;
1296 /* set up capture channel */
1297 outb(((voice
->number
& 0x3f) | 0x80), TRID_REG(trident
, T4D_RCI
+ voice
->foldback_chan
));
1299 snd_trident_write_voice_regs(trident
, voice
);
1301 if (evoice
!= NULL
) {
1302 evoice
->Delta
= voice
->Delta
;
1303 evoice
->spurious_threshold
= voice
->spurious_threshold
;
1304 evoice
->LBA
= voice
->LBA
;
1306 evoice
->ESO
= (runtime
->period_size
* 2) + 4 - 1; /* in samples */
1307 evoice
->CTRL
= voice
->CTRL
;
1309 evoice
->GVSel
= trident
->device
== TRIDENT_DEVICE_ID_SI7018
? 0 : 1;
1313 evoice
->Vol
= 0x3ff; /* mute */
1314 evoice
->RVol
= evoice
->CVol
= 0x7f; /* mute */
1315 evoice
->Pan
= 0x7f; /* mute */
1316 evoice
->Attribute
= 0;
1317 snd_trident_write_voice_regs(trident
, evoice
);
1319 evoice
->isync_mark
= runtime
->period_size
;
1320 evoice
->ESO
= (runtime
->period_size
* 2) - 1;
1323 spin_unlock_irq(&trident
->reg_lock
);
1327 /*---------------------------------------------------------------------------
1328 snd_trident_spdif_hw_params
1330 Description: Set the hardware parameters for the spdif device.
1332 Parameters: substream - PCM substream class
1333 hw_params - hardware parameters
1335 Returns: Error status
1337 ---------------------------------------------------------------------------*/
1339 static int snd_trident_spdif_hw_params(struct snd_pcm_substream
*substream
,
1340 struct snd_pcm_hw_params
*hw_params
)
1342 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1343 unsigned int old_bits
= 0, change
= 0;
1346 err
= snd_trident_allocate_pcm_mem(substream
, hw_params
);
1350 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
1351 err
= snd_trident_allocate_evoice(substream
, hw_params
);
1356 /* prepare SPDIF channel */
1357 spin_lock_irq(&trident
->reg_lock
);
1358 old_bits
= trident
->spdif_pcm_bits
;
1359 if (old_bits
& IEC958_AES0_PROFESSIONAL
)
1360 trident
->spdif_pcm_bits
&= ~IEC958_AES0_PRO_FS
;
1362 trident
->spdif_pcm_bits
&= ~(IEC958_AES3_CON_FS
<< 24);
1363 if (params_rate(hw_params
) >= 48000) {
1364 trident
->spdif_pcm_ctrl
= 0x3c; // 48000 Hz
1365 trident
->spdif_pcm_bits
|=
1366 trident
->spdif_bits
& IEC958_AES0_PROFESSIONAL
?
1367 IEC958_AES0_PRO_FS_48000
:
1368 (IEC958_AES3_CON_FS_48000
<< 24);
1370 else if (params_rate(hw_params
) >= 44100) {
1371 trident
->spdif_pcm_ctrl
= 0x3e; // 44100 Hz
1372 trident
->spdif_pcm_bits
|=
1373 trident
->spdif_bits
& IEC958_AES0_PROFESSIONAL
?
1374 IEC958_AES0_PRO_FS_44100
:
1375 (IEC958_AES3_CON_FS_44100
<< 24);
1378 trident
->spdif_pcm_ctrl
= 0x3d; // 32000 Hz
1379 trident
->spdif_pcm_bits
|=
1380 trident
->spdif_bits
& IEC958_AES0_PROFESSIONAL
?
1381 IEC958_AES0_PRO_FS_32000
:
1382 (IEC958_AES3_CON_FS_32000
<< 24);
1384 change
= old_bits
!= trident
->spdif_pcm_bits
;
1385 spin_unlock_irq(&trident
->reg_lock
);
1388 snd_ctl_notify(trident
->card
, SNDRV_CTL_EVENT_MASK_VALUE
, &trident
->spdif_pcm_ctl
->id
);
1393 /*---------------------------------------------------------------------------
1394 snd_trident_spdif_prepare
1396 Description: Prepare SPDIF device for playback.
1398 Parameters: substream - PCM substream class
1400 Returns: Error status
1402 ---------------------------------------------------------------------------*/
1404 static int snd_trident_spdif_prepare(struct snd_pcm_substream
*substream
)
1406 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1407 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1408 struct snd_trident_voice
*voice
= runtime
->private_data
;
1409 struct snd_trident_voice
*evoice
= voice
->extra
;
1410 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[substream
->number
];
1411 unsigned int RESO
, LBAO
;
1414 spin_lock_irq(&trident
->reg_lock
);
1416 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
1418 /* set delta (rate) value */
1419 voice
->Delta
= snd_trident_convert_rate(runtime
->rate
);
1420 voice
->spurious_threshold
= snd_trident_spurious_threshold(runtime
->rate
, runtime
->period_size
);
1422 /* set Loop Back Address */
1423 LBAO
= runtime
->dma_addr
;
1425 voice
->LBA
= voice
->memblk
->offset
;
1431 voice
->isync_mark
= runtime
->period_size
;
1432 voice
->isync_max
= runtime
->buffer_size
;
1434 /* set target ESO for channel */
1435 RESO
= runtime
->buffer_size
- 1;
1436 voice
->ESO
= voice
->isync_ESO
= (runtime
->period_size
* 2) + 6 - 1;
1439 voice
->CTRL
= snd_trident_control_mode(substream
);
1451 voice
->Attribute
= 0;
1453 /* prepare surrogate IRQ channel */
1454 snd_trident_write_voice_regs(trident
, voice
);
1456 outw((RESO
& 0xffff), TRID_REG(trident
, NX_SPESO
));
1457 outb((RESO
>> 16), TRID_REG(trident
, NX_SPESO
+ 2));
1458 outl((LBAO
& 0xfffffffc), TRID_REG(trident
, NX_SPLBA
));
1459 outw((voice
->CSO
& 0xffff), TRID_REG(trident
, NX_SPCTRL_SPCSO
));
1460 outb((voice
->CSO
>> 16), TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 2));
1462 /* set SPDIF setting */
1463 outb(trident
->spdif_pcm_ctrl
, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
1464 outl(trident
->spdif_pcm_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
1468 /* set delta (rate) value */
1469 voice
->Delta
= 0x800;
1470 voice
->spurious_threshold
= snd_trident_spurious_threshold(48000, runtime
->period_size
);
1472 /* set Loop Begin Address */
1474 voice
->LBA
= voice
->memblk
->offset
;
1476 voice
->LBA
= runtime
->dma_addr
;
1479 voice
->ESO
= runtime
->buffer_size
- 1; /* in samples */
1480 voice
->CTRL
= snd_trident_control_mode(substream
);
1486 voice
->Vol
= mix
->vol
;
1487 voice
->RVol
= mix
->rvol
;
1488 voice
->CVol
= mix
->cvol
;
1489 voice
->Pan
= mix
->pan
;
1490 voice
->Attribute
= (1<<(30-16))|(7<<(26-16))|
1491 (0<<(24-16))|(0<<(19-16));
1493 snd_trident_write_voice_regs(trident
, voice
);
1495 if (evoice
!= NULL
) {
1496 evoice
->Delta
= voice
->Delta
;
1497 evoice
->spurious_threshold
= voice
->spurious_threshold
;
1498 evoice
->LBA
= voice
->LBA
;
1500 evoice
->ESO
= (runtime
->period_size
* 2) + 4 - 1; /* in samples */
1501 evoice
->CTRL
= voice
->CTRL
;
1503 evoice
->GVSel
= trident
->device
== TRIDENT_DEVICE_ID_SI7018
? 0 : 1;
1507 evoice
->Vol
= 0x3ff; /* mute */
1508 evoice
->RVol
= evoice
->CVol
= 0x7f; /* mute */
1509 evoice
->Pan
= 0x7f; /* mute */
1510 evoice
->Attribute
= 0;
1511 snd_trident_write_voice_regs(trident
, evoice
);
1513 evoice
->isync_mark
= runtime
->period_size
;
1514 evoice
->ESO
= (runtime
->period_size
* 2) - 1;
1517 outl(trident
->spdif_pcm_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
1518 temp
= inl(TRID_REG(trident
, T4D_LFO_GC_CIR
));
1520 outl(temp
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
1521 temp
= inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
1523 outl(temp
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
1526 spin_unlock_irq(&trident
->reg_lock
);
1531 /*---------------------------------------------------------------------------
1534 Description: Start/stop devices
1536 Parameters: substream - PCM substream class
1537 cmd - trigger command (STOP, GO)
1539 Returns: Error status
1541 ---------------------------------------------------------------------------*/
1543 static int snd_trident_trigger(struct snd_pcm_substream
*substream
,
1547 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1548 struct snd_pcm_substream
*s
;
1549 unsigned int what
, whati
, capture_flag
, spdif_flag
;
1550 struct snd_trident_voice
*voice
, *evoice
;
1551 unsigned int val
, go
;
1554 case SNDRV_PCM_TRIGGER_START
:
1555 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1556 case SNDRV_PCM_TRIGGER_RESUME
:
1559 case SNDRV_PCM_TRIGGER_STOP
:
1560 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1561 case SNDRV_PCM_TRIGGER_SUSPEND
:
1567 what
= whati
= capture_flag
= spdif_flag
= 0;
1568 spin_lock(&trident
->reg_lock
);
1569 val
= inl(TRID_REG(trident
, T4D_STIMER
)) & 0x00ffffff;
1570 snd_pcm_group_for_each_entry(s
, substream
) {
1571 if ((struct snd_trident
*) snd_pcm_substream_chip(s
) == trident
) {
1572 voice
= s
->runtime
->private_data
;
1573 evoice
= voice
->extra
;
1574 what
|= 1 << (voice
->number
& 0x1f);
1575 if (evoice
== NULL
) {
1576 whati
|= 1 << (voice
->number
& 0x1f);
1578 what
|= 1 << (evoice
->number
& 0x1f);
1579 whati
|= 1 << (evoice
->number
& 0x1f);
1581 evoice
->stimer
= val
;
1585 voice
->stimer
= val
;
1589 snd_pcm_trigger_done(s
, substream
);
1597 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
1598 outl(trident
->spdif_pcm_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
1599 val
= trident
->spdif_pcm_ctrl
;
1602 outb(val
, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
1604 outl(trident
->spdif_pcm_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
1605 val
= inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)) | SPDIF_EN
;
1606 outl(val
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
1610 outl(what
, TRID_REG(trident
, T4D_STOP_B
));
1611 val
= inl(TRID_REG(trident
, T4D_AINTEN_B
));
1617 outl(val
, TRID_REG(trident
, T4D_AINTEN_B
));
1619 outl(what
, TRID_REG(trident
, T4D_START_B
));
1621 if (capture_flag
&& trident
->device
!= TRIDENT_DEVICE_ID_SI7018
)
1622 outb(trident
->bDMAStart
, TRID_REG(trident
, T4D_SBCTRL_SBE2R_SBDD
));
1624 if (capture_flag
&& trident
->device
!= TRIDENT_DEVICE_ID_SI7018
)
1625 outb(0x00, TRID_REG(trident
, T4D_SBCTRL_SBE2R_SBDD
));
1627 spin_unlock(&trident
->reg_lock
);
1631 /*---------------------------------------------------------------------------
1632 snd_trident_playback_pointer
1634 Description: This routine return the playback position
1636 Parameters: substream - PCM substream class
1638 Returns: position of buffer
1640 ---------------------------------------------------------------------------*/
1642 static snd_pcm_uframes_t
snd_trident_playback_pointer(struct snd_pcm_substream
*substream
)
1644 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1645 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1646 struct snd_trident_voice
*voice
= runtime
->private_data
;
1649 if (!voice
->running
)
1652 spin_lock(&trident
->reg_lock
);
1654 outb(voice
->number
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
1656 if (trident
->device
!= TRIDENT_DEVICE_ID_NX
) {
1657 cso
= inw(TRID_REG(trident
, CH_DX_CSO_ALPHA_FMS
+ 2));
1658 } else { // ID_4DWAVE_NX
1659 cso
= (unsigned int) inl(TRID_REG(trident
, CH_NX_DELTA_CSO
)) & 0x00ffffff;
1662 spin_unlock(&trident
->reg_lock
);
1664 if (cso
>= runtime
->buffer_size
)
1670 /*---------------------------------------------------------------------------
1671 snd_trident_capture_pointer
1673 Description: This routine return the capture position
1675 Parameters: pcm1 - PCM device class
1677 Returns: position of buffer
1679 ---------------------------------------------------------------------------*/
1681 static snd_pcm_uframes_t
snd_trident_capture_pointer(struct snd_pcm_substream
*substream
)
1683 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1684 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1685 struct snd_trident_voice
*voice
= runtime
->private_data
;
1686 unsigned int result
;
1688 if (!voice
->running
)
1691 result
= inw(TRID_REG(trident
, T4D_SBBL_SBCL
));
1692 if (runtime
->channels
> 1)
1695 result
= runtime
->buffer_size
- result
;
1700 /*---------------------------------------------------------------------------
1701 snd_trident_spdif_pointer
1703 Description: This routine return the SPDIF playback position
1705 Parameters: substream - PCM substream class
1707 Returns: position of buffer
1709 ---------------------------------------------------------------------------*/
1711 static snd_pcm_uframes_t
snd_trident_spdif_pointer(struct snd_pcm_substream
*substream
)
1713 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1714 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1715 struct snd_trident_voice
*voice
= runtime
->private_data
;
1716 unsigned int result
;
1718 if (!voice
->running
)
1721 result
= inl(TRID_REG(trident
, NX_SPCTRL_SPCSO
)) & 0x00ffffff;
1727 * Playback support device description
1730 static struct snd_pcm_hardware snd_trident_playback
=
1732 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1733 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1734 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_SYNC_START
|
1735 SNDRV_PCM_INFO_PAUSE
/* | SNDRV_PCM_INFO_RESUME */),
1736 .formats
= (SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
|
1737 SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_U16_LE
),
1738 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
1743 .buffer_bytes_max
= (256*1024),
1744 .period_bytes_min
= 64,
1745 .period_bytes_max
= (256*1024),
1747 .periods_max
= 1024,
1752 * Capture support device description
1755 static struct snd_pcm_hardware snd_trident_capture
=
1757 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1758 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1759 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_SYNC_START
|
1760 SNDRV_PCM_INFO_PAUSE
/* | SNDRV_PCM_INFO_RESUME */),
1761 .formats
= (SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
|
1762 SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_U16_LE
),
1763 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
1768 .buffer_bytes_max
= (128*1024),
1769 .period_bytes_min
= 64,
1770 .period_bytes_max
= (128*1024),
1772 .periods_max
= 1024,
1777 * Foldback capture support device description
1780 static struct snd_pcm_hardware snd_trident_foldback
=
1782 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1783 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1784 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_SYNC_START
|
1785 SNDRV_PCM_INFO_PAUSE
/* | SNDRV_PCM_INFO_RESUME */),
1786 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1787 .rates
= SNDRV_PCM_RATE_48000
,
1792 .buffer_bytes_max
= (128*1024),
1793 .period_bytes_min
= 64,
1794 .period_bytes_max
= (128*1024),
1796 .periods_max
= 1024,
1801 * SPDIF playback support device description
1804 static struct snd_pcm_hardware snd_trident_spdif
=
1806 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1807 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1808 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_SYNC_START
|
1809 SNDRV_PCM_INFO_PAUSE
/* | SNDRV_PCM_INFO_RESUME */),
1810 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1811 .rates
= (SNDRV_PCM_RATE_32000
| SNDRV_PCM_RATE_44100
|
1812 SNDRV_PCM_RATE_48000
),
1817 .buffer_bytes_max
= (128*1024),
1818 .period_bytes_min
= 64,
1819 .period_bytes_max
= (128*1024),
1821 .periods_max
= 1024,
1825 static struct snd_pcm_hardware snd_trident_spdif_7018
=
1827 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1828 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1829 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_SYNC_START
|
1830 SNDRV_PCM_INFO_PAUSE
/* | SNDRV_PCM_INFO_RESUME */),
1831 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1832 .rates
= SNDRV_PCM_RATE_48000
,
1837 .buffer_bytes_max
= (128*1024),
1838 .period_bytes_min
= 64,
1839 .period_bytes_max
= (128*1024),
1841 .periods_max
= 1024,
1845 static void snd_trident_pcm_free_substream(struct snd_pcm_runtime
*runtime
)
1847 struct snd_trident_voice
*voice
= runtime
->private_data
;
1848 struct snd_trident
*trident
;
1851 trident
= voice
->trident
;
1852 snd_trident_free_voice(trident
, voice
);
1856 static int snd_trident_playback_open(struct snd_pcm_substream
*substream
)
1858 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1859 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1860 struct snd_trident_voice
*voice
;
1862 voice
= snd_trident_alloc_voice(trident
, SNDRV_TRIDENT_VOICE_TYPE_PCM
, 0, 0);
1865 snd_trident_pcm_mixer_build(trident
, voice
, substream
);
1866 voice
->substream
= substream
;
1867 runtime
->private_data
= voice
;
1868 runtime
->private_free
= snd_trident_pcm_free_substream
;
1869 runtime
->hw
= snd_trident_playback
;
1870 snd_pcm_set_sync(substream
);
1871 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, 0, 64*1024);
1875 /*---------------------------------------------------------------------------
1876 snd_trident_playback_close
1878 Description: This routine will close the 4DWave playback device. For now
1879 we will simply free the dma transfer buffer.
1881 Parameters: substream - PCM substream class
1883 ---------------------------------------------------------------------------*/
1884 static int snd_trident_playback_close(struct snd_pcm_substream
*substream
)
1886 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1887 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1888 struct snd_trident_voice
*voice
= runtime
->private_data
;
1890 snd_trident_pcm_mixer_free(trident
, voice
, substream
);
1894 /*---------------------------------------------------------------------------
1895 snd_trident_spdif_open
1897 Description: This routine will open the 4DWave SPDIF device.
1899 Parameters: substream - PCM substream class
1901 Returns: status - success or failure flag
1903 ---------------------------------------------------------------------------*/
1905 static int snd_trident_spdif_open(struct snd_pcm_substream
*substream
)
1907 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1908 struct snd_trident_voice
*voice
;
1909 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1911 voice
= snd_trident_alloc_voice(trident
, SNDRV_TRIDENT_VOICE_TYPE_PCM
, 0, 0);
1915 voice
->substream
= substream
;
1916 spin_lock_irq(&trident
->reg_lock
);
1917 trident
->spdif_pcm_bits
= trident
->spdif_bits
;
1918 spin_unlock_irq(&trident
->reg_lock
);
1920 runtime
->private_data
= voice
;
1921 runtime
->private_free
= snd_trident_pcm_free_substream
;
1922 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
1923 runtime
->hw
= snd_trident_spdif
;
1925 runtime
->hw
= snd_trident_spdif_7018
;
1928 trident
->spdif_pcm_ctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1929 snd_ctl_notify(trident
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
1930 SNDRV_CTL_EVENT_MASK_INFO
, &trident
->spdif_pcm_ctl
->id
);
1932 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, 0, 64*1024);
1937 /*---------------------------------------------------------------------------
1938 snd_trident_spdif_close
1940 Description: This routine will close the 4DWave SPDIF device.
1942 Parameters: substream - PCM substream class
1944 ---------------------------------------------------------------------------*/
1946 static int snd_trident_spdif_close(struct snd_pcm_substream
*substream
)
1948 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1951 spin_lock_irq(&trident
->reg_lock
);
1952 // restore default SPDIF setting
1953 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
1954 outb(trident
->spdif_ctrl
, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
1955 outl(trident
->spdif_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
1957 outl(trident
->spdif_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
1958 temp
= inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
1959 if (trident
->spdif_ctrl
) {
1964 outl(temp
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
1966 spin_unlock_irq(&trident
->reg_lock
);
1967 trident
->spdif_pcm_ctl
->vd
[0].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1968 snd_ctl_notify(trident
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
1969 SNDRV_CTL_EVENT_MASK_INFO
, &trident
->spdif_pcm_ctl
->id
);
1973 /*---------------------------------------------------------------------------
1974 snd_trident_capture_open
1976 Description: This routine will open the 4DWave capture device.
1978 Parameters: substream - PCM substream class
1980 Returns: status - success or failure flag
1982 ---------------------------------------------------------------------------*/
1984 static int snd_trident_capture_open(struct snd_pcm_substream
*substream
)
1986 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
1987 struct snd_trident_voice
*voice
;
1988 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1990 voice
= snd_trident_alloc_voice(trident
, SNDRV_TRIDENT_VOICE_TYPE_PCM
, 0, 0);
1994 voice
->substream
= substream
;
1995 runtime
->private_data
= voice
;
1996 runtime
->private_free
= snd_trident_pcm_free_substream
;
1997 runtime
->hw
= snd_trident_capture
;
1998 snd_pcm_set_sync(substream
);
1999 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, 0, 64*1024);
2003 /*---------------------------------------------------------------------------
2004 snd_trident_capture_close
2006 Description: This routine will close the 4DWave capture device. For now
2007 we will simply free the dma transfer buffer.
2009 Parameters: substream - PCM substream class
2011 ---------------------------------------------------------------------------*/
2012 static int snd_trident_capture_close(struct snd_pcm_substream
*substream
)
2017 /*---------------------------------------------------------------------------
2018 snd_trident_foldback_open
2020 Description: This routine will open the 4DWave foldback capture device.
2022 Parameters: substream - PCM substream class
2024 Returns: status - success or failure flag
2026 ---------------------------------------------------------------------------*/
2028 static int snd_trident_foldback_open(struct snd_pcm_substream
*substream
)
2030 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
2031 struct snd_trident_voice
*voice
;
2032 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2034 voice
= snd_trident_alloc_voice(trident
, SNDRV_TRIDENT_VOICE_TYPE_PCM
, 0, 0);
2037 voice
->foldback_chan
= substream
->number
;
2038 voice
->substream
= substream
;
2039 runtime
->private_data
= voice
;
2040 runtime
->private_free
= snd_trident_pcm_free_substream
;
2041 runtime
->hw
= snd_trident_foldback
;
2042 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, 0, 64*1024);
2046 /*---------------------------------------------------------------------------
2047 snd_trident_foldback_close
2049 Description: This routine will close the 4DWave foldback capture device.
2050 For now we will simply free the dma transfer buffer.
2052 Parameters: substream - PCM substream class
2054 ---------------------------------------------------------------------------*/
2055 static int snd_trident_foldback_close(struct snd_pcm_substream
*substream
)
2057 struct snd_trident
*trident
= snd_pcm_substream_chip(substream
);
2058 struct snd_trident_voice
*voice
;
2059 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2060 voice
= runtime
->private_data
;
2062 /* stop capture channel */
2063 spin_lock_irq(&trident
->reg_lock
);
2064 outb(0x00, TRID_REG(trident
, T4D_RCI
+ voice
->foldback_chan
));
2065 spin_unlock_irq(&trident
->reg_lock
);
2069 /*---------------------------------------------------------------------------
2071 ---------------------------------------------------------------------------*/
2073 static struct snd_pcm_ops snd_trident_playback_ops
= {
2074 .open
= snd_trident_playback_open
,
2075 .close
= snd_trident_playback_close
,
2076 .ioctl
= snd_trident_ioctl
,
2077 .hw_params
= snd_trident_hw_params
,
2078 .hw_free
= snd_trident_hw_free
,
2079 .prepare
= snd_trident_playback_prepare
,
2080 .trigger
= snd_trident_trigger
,
2081 .pointer
= snd_trident_playback_pointer
,
2084 static struct snd_pcm_ops snd_trident_nx_playback_ops
= {
2085 .open
= snd_trident_playback_open
,
2086 .close
= snd_trident_playback_close
,
2087 .ioctl
= snd_trident_ioctl
,
2088 .hw_params
= snd_trident_hw_params
,
2089 .hw_free
= snd_trident_hw_free
,
2090 .prepare
= snd_trident_playback_prepare
,
2091 .trigger
= snd_trident_trigger
,
2092 .pointer
= snd_trident_playback_pointer
,
2093 .page
= snd_pcm_sgbuf_ops_page
,
2096 static struct snd_pcm_ops snd_trident_capture_ops
= {
2097 .open
= snd_trident_capture_open
,
2098 .close
= snd_trident_capture_close
,
2099 .ioctl
= snd_trident_ioctl
,
2100 .hw_params
= snd_trident_capture_hw_params
,
2101 .hw_free
= snd_trident_hw_free
,
2102 .prepare
= snd_trident_capture_prepare
,
2103 .trigger
= snd_trident_trigger
,
2104 .pointer
= snd_trident_capture_pointer
,
2107 static struct snd_pcm_ops snd_trident_si7018_capture_ops
= {
2108 .open
= snd_trident_capture_open
,
2109 .close
= snd_trident_capture_close
,
2110 .ioctl
= snd_trident_ioctl
,
2111 .hw_params
= snd_trident_si7018_capture_hw_params
,
2112 .hw_free
= snd_trident_si7018_capture_hw_free
,
2113 .prepare
= snd_trident_si7018_capture_prepare
,
2114 .trigger
= snd_trident_trigger
,
2115 .pointer
= snd_trident_playback_pointer
,
2118 static struct snd_pcm_ops snd_trident_foldback_ops
= {
2119 .open
= snd_trident_foldback_open
,
2120 .close
= snd_trident_foldback_close
,
2121 .ioctl
= snd_trident_ioctl
,
2122 .hw_params
= snd_trident_hw_params
,
2123 .hw_free
= snd_trident_hw_free
,
2124 .prepare
= snd_trident_foldback_prepare
,
2125 .trigger
= snd_trident_trigger
,
2126 .pointer
= snd_trident_playback_pointer
,
2129 static struct snd_pcm_ops snd_trident_nx_foldback_ops
= {
2130 .open
= snd_trident_foldback_open
,
2131 .close
= snd_trident_foldback_close
,
2132 .ioctl
= snd_trident_ioctl
,
2133 .hw_params
= snd_trident_hw_params
,
2134 .hw_free
= snd_trident_hw_free
,
2135 .prepare
= snd_trident_foldback_prepare
,
2136 .trigger
= snd_trident_trigger
,
2137 .pointer
= snd_trident_playback_pointer
,
2138 .page
= snd_pcm_sgbuf_ops_page
,
2141 static struct snd_pcm_ops snd_trident_spdif_ops
= {
2142 .open
= snd_trident_spdif_open
,
2143 .close
= snd_trident_spdif_close
,
2144 .ioctl
= snd_trident_ioctl
,
2145 .hw_params
= snd_trident_spdif_hw_params
,
2146 .hw_free
= snd_trident_hw_free
,
2147 .prepare
= snd_trident_spdif_prepare
,
2148 .trigger
= snd_trident_trigger
,
2149 .pointer
= snd_trident_spdif_pointer
,
2152 static struct snd_pcm_ops snd_trident_spdif_7018_ops
= {
2153 .open
= snd_trident_spdif_open
,
2154 .close
= snd_trident_spdif_close
,
2155 .ioctl
= snd_trident_ioctl
,
2156 .hw_params
= snd_trident_spdif_hw_params
,
2157 .hw_free
= snd_trident_hw_free
,
2158 .prepare
= snd_trident_spdif_prepare
,
2159 .trigger
= snd_trident_trigger
,
2160 .pointer
= snd_trident_playback_pointer
,
2163 /*---------------------------------------------------------------------------
2166 Description: This routine registers the 4DWave device for PCM support.
2168 Parameters: trident - pointer to target device class for 4DWave.
2172 ---------------------------------------------------------------------------*/
2174 int __devinit
snd_trident_pcm(struct snd_trident
* trident
,
2175 int device
, struct snd_pcm
** rpcm
)
2177 struct snd_pcm
*pcm
;
2182 if ((err
= snd_pcm_new(trident
->card
, "trident_dx_nx", device
, trident
->ChanPCM
, 1, &pcm
)) < 0)
2185 pcm
->private_data
= trident
;
2187 if (trident
->tlb
.entries
) {
2188 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_trident_nx_playback_ops
);
2190 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_trident_playback_ops
);
2192 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
,
2193 trident
->device
!= TRIDENT_DEVICE_ID_SI7018
?
2194 &snd_trident_capture_ops
:
2195 &snd_trident_si7018_capture_ops
);
2197 pcm
->info_flags
= 0;
2198 pcm
->dev_subclass
= SNDRV_PCM_SUBCLASS_GENERIC_MIX
;
2199 strcpy(pcm
->name
, "Trident 4DWave");
2202 if (trident
->tlb
.entries
) {
2203 struct snd_pcm_substream
*substream
;
2204 for (substream
= pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
; substream
; substream
= substream
->next
)
2205 snd_pcm_lib_preallocate_pages(substream
, SNDRV_DMA_TYPE_DEV_SG
,
2206 snd_dma_pci_data(trident
->pci
),
2208 snd_pcm_lib_preallocate_pages(pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
,
2209 SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(trident
->pci
),
2212 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
2213 snd_dma_pci_data(trident
->pci
), 64*1024, 128*1024);
2221 /*---------------------------------------------------------------------------
2222 snd_trident_foldback_pcm
2224 Description: This routine registers the 4DWave device for foldback PCM support.
2226 Parameters: trident - pointer to target device class for 4DWave.
2230 ---------------------------------------------------------------------------*/
2232 int __devinit
snd_trident_foldback_pcm(struct snd_trident
* trident
,
2233 int device
, struct snd_pcm
** rpcm
)
2235 struct snd_pcm
*foldback
;
2238 struct snd_pcm_substream
*substream
;
2242 if (trident
->device
== TRIDENT_DEVICE_ID_NX
)
2244 if ((err
= snd_pcm_new(trident
->card
, "trident_dx_nx", device
, 0, num_chan
, &foldback
)) < 0)
2247 foldback
->private_data
= trident
;
2248 if (trident
->tlb
.entries
)
2249 snd_pcm_set_ops(foldback
, SNDRV_PCM_STREAM_CAPTURE
, &snd_trident_nx_foldback_ops
);
2251 snd_pcm_set_ops(foldback
, SNDRV_PCM_STREAM_CAPTURE
, &snd_trident_foldback_ops
);
2252 foldback
->info_flags
= 0;
2253 strcpy(foldback
->name
, "Trident 4DWave");
2254 substream
= foldback
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
;
2255 strcpy(substream
->name
, "Front Mixer");
2256 substream
= substream
->next
;
2257 strcpy(substream
->name
, "Reverb Mixer");
2258 substream
= substream
->next
;
2259 strcpy(substream
->name
, "Chorus Mixer");
2260 if (num_chan
== 4) {
2261 substream
= substream
->next
;
2262 strcpy(substream
->name
, "Second AC'97 ADC");
2264 trident
->foldback
= foldback
;
2266 if (trident
->tlb
.entries
)
2267 snd_pcm_lib_preallocate_pages_for_all(foldback
, SNDRV_DMA_TYPE_DEV_SG
,
2268 snd_dma_pci_data(trident
->pci
), 0, 128*1024);
2270 snd_pcm_lib_preallocate_pages_for_all(foldback
, SNDRV_DMA_TYPE_DEV
,
2271 snd_dma_pci_data(trident
->pci
), 64*1024, 128*1024);
2278 /*---------------------------------------------------------------------------
2281 Description: This routine registers the 4DWave-NX device for SPDIF support.
2283 Parameters: trident - pointer to target device class for 4DWave-NX.
2287 ---------------------------------------------------------------------------*/
2289 int __devinit
snd_trident_spdif_pcm(struct snd_trident
* trident
,
2290 int device
, struct snd_pcm
** rpcm
)
2292 struct snd_pcm
*spdif
;
2297 if ((err
= snd_pcm_new(trident
->card
, "trident_dx_nx IEC958", device
, 1, 0, &spdif
)) < 0)
2300 spdif
->private_data
= trident
;
2301 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
2302 snd_pcm_set_ops(spdif
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_trident_spdif_ops
);
2304 snd_pcm_set_ops(spdif
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_trident_spdif_7018_ops
);
2306 spdif
->info_flags
= 0;
2307 strcpy(spdif
->name
, "Trident 4DWave IEC958");
2308 trident
->spdif
= spdif
;
2310 snd_pcm_lib_preallocate_pages_for_all(spdif
, SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(trident
->pci
), 64*1024, 128*1024);
2322 /*---------------------------------------------------------------------------
2323 snd_trident_spdif_control
2325 Description: enable/disable S/PDIF out from ac97 mixer
2326 ---------------------------------------------------------------------------*/
2328 #define snd_trident_spdif_control_info snd_ctl_boolean_mono_info
2330 static int snd_trident_spdif_control_get(struct snd_kcontrol
*kcontrol
,
2331 struct snd_ctl_elem_value
*ucontrol
)
2333 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2336 spin_lock_irq(&trident
->reg_lock
);
2337 val
= trident
->spdif_ctrl
;
2338 ucontrol
->value
.integer
.value
[0] = val
== kcontrol
->private_value
;
2339 spin_unlock_irq(&trident
->reg_lock
);
2343 static int snd_trident_spdif_control_put(struct snd_kcontrol
*kcontrol
,
2344 struct snd_ctl_elem_value
*ucontrol
)
2346 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2350 val
= ucontrol
->value
.integer
.value
[0] ? (unsigned char) kcontrol
->private_value
: 0x00;
2351 spin_lock_irq(&trident
->reg_lock
);
2352 /* S/PDIF C Channel bits 0-31 : 48khz, SCMS disabled */
2353 change
= trident
->spdif_ctrl
!= val
;
2354 trident
->spdif_ctrl
= val
;
2355 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
2356 if ((inb(TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3)) & 0x10) == 0) {
2357 outl(trident
->spdif_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
2358 outb(trident
->spdif_ctrl
, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
2361 if (trident
->spdif
== NULL
) {
2363 outl(trident
->spdif_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
2364 temp
= inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)) & ~SPDIF_EN
;
2367 outl(temp
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
2370 spin_unlock_irq(&trident
->reg_lock
);
2374 static struct snd_kcontrol_new snd_trident_spdif_control __devinitdata
=
2376 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2377 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,SWITCH
),
2378 .info
= snd_trident_spdif_control_info
,
2379 .get
= snd_trident_spdif_control_get
,
2380 .put
= snd_trident_spdif_control_put
,
2381 .private_value
= 0x28,
2384 /*---------------------------------------------------------------------------
2385 snd_trident_spdif_default
2387 Description: put/get the S/PDIF default settings
2388 ---------------------------------------------------------------------------*/
2390 static int snd_trident_spdif_default_info(struct snd_kcontrol
*kcontrol
,
2391 struct snd_ctl_elem_info
*uinfo
)
2393 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
2398 static int snd_trident_spdif_default_get(struct snd_kcontrol
*kcontrol
,
2399 struct snd_ctl_elem_value
*ucontrol
)
2401 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2403 spin_lock_irq(&trident
->reg_lock
);
2404 ucontrol
->value
.iec958
.status
[0] = (trident
->spdif_bits
>> 0) & 0xff;
2405 ucontrol
->value
.iec958
.status
[1] = (trident
->spdif_bits
>> 8) & 0xff;
2406 ucontrol
->value
.iec958
.status
[2] = (trident
->spdif_bits
>> 16) & 0xff;
2407 ucontrol
->value
.iec958
.status
[3] = (trident
->spdif_bits
>> 24) & 0xff;
2408 spin_unlock_irq(&trident
->reg_lock
);
2412 static int snd_trident_spdif_default_put(struct snd_kcontrol
*kcontrol
,
2413 struct snd_ctl_elem_value
*ucontrol
)
2415 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2419 val
= (ucontrol
->value
.iec958
.status
[0] << 0) |
2420 (ucontrol
->value
.iec958
.status
[1] << 8) |
2421 (ucontrol
->value
.iec958
.status
[2] << 16) |
2422 (ucontrol
->value
.iec958
.status
[3] << 24);
2423 spin_lock_irq(&trident
->reg_lock
);
2424 change
= trident
->spdif_bits
!= val
;
2425 trident
->spdif_bits
= val
;
2426 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
2427 if ((inb(TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3)) & 0x10) == 0)
2428 outl(trident
->spdif_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
2430 if (trident
->spdif
== NULL
)
2431 outl(trident
->spdif_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
2433 spin_unlock_irq(&trident
->reg_lock
);
2437 static struct snd_kcontrol_new snd_trident_spdif_default __devinitdata
=
2439 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2440 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
2441 .info
= snd_trident_spdif_default_info
,
2442 .get
= snd_trident_spdif_default_get
,
2443 .put
= snd_trident_spdif_default_put
2446 /*---------------------------------------------------------------------------
2447 snd_trident_spdif_mask
2449 Description: put/get the S/PDIF mask
2450 ---------------------------------------------------------------------------*/
2452 static int snd_trident_spdif_mask_info(struct snd_kcontrol
*kcontrol
,
2453 struct snd_ctl_elem_info
*uinfo
)
2455 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
2460 static int snd_trident_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
2461 struct snd_ctl_elem_value
*ucontrol
)
2463 ucontrol
->value
.iec958
.status
[0] = 0xff;
2464 ucontrol
->value
.iec958
.status
[1] = 0xff;
2465 ucontrol
->value
.iec958
.status
[2] = 0xff;
2466 ucontrol
->value
.iec958
.status
[3] = 0xff;
2470 static struct snd_kcontrol_new snd_trident_spdif_mask __devinitdata
=
2472 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2473 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2474 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,MASK
),
2475 .info
= snd_trident_spdif_mask_info
,
2476 .get
= snd_trident_spdif_mask_get
,
2479 /*---------------------------------------------------------------------------
2480 snd_trident_spdif_stream
2482 Description: put/get the S/PDIF stream settings
2483 ---------------------------------------------------------------------------*/
2485 static int snd_trident_spdif_stream_info(struct snd_kcontrol
*kcontrol
,
2486 struct snd_ctl_elem_info
*uinfo
)
2488 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
2493 static int snd_trident_spdif_stream_get(struct snd_kcontrol
*kcontrol
,
2494 struct snd_ctl_elem_value
*ucontrol
)
2496 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2498 spin_lock_irq(&trident
->reg_lock
);
2499 ucontrol
->value
.iec958
.status
[0] = (trident
->spdif_pcm_bits
>> 0) & 0xff;
2500 ucontrol
->value
.iec958
.status
[1] = (trident
->spdif_pcm_bits
>> 8) & 0xff;
2501 ucontrol
->value
.iec958
.status
[2] = (trident
->spdif_pcm_bits
>> 16) & 0xff;
2502 ucontrol
->value
.iec958
.status
[3] = (trident
->spdif_pcm_bits
>> 24) & 0xff;
2503 spin_unlock_irq(&trident
->reg_lock
);
2507 static int snd_trident_spdif_stream_put(struct snd_kcontrol
*kcontrol
,
2508 struct snd_ctl_elem_value
*ucontrol
)
2510 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2514 val
= (ucontrol
->value
.iec958
.status
[0] << 0) |
2515 (ucontrol
->value
.iec958
.status
[1] << 8) |
2516 (ucontrol
->value
.iec958
.status
[2] << 16) |
2517 (ucontrol
->value
.iec958
.status
[3] << 24);
2518 spin_lock_irq(&trident
->reg_lock
);
2519 change
= trident
->spdif_pcm_bits
!= val
;
2520 trident
->spdif_pcm_bits
= val
;
2521 if (trident
->spdif
!= NULL
) {
2522 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
2523 outl(trident
->spdif_pcm_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
2525 outl(trident
->spdif_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
2528 spin_unlock_irq(&trident
->reg_lock
);
2532 static struct snd_kcontrol_new snd_trident_spdif_stream __devinitdata
=
2534 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2535 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2536 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PCM_STREAM
),
2537 .info
= snd_trident_spdif_stream_info
,
2538 .get
= snd_trident_spdif_stream_get
,
2539 .put
= snd_trident_spdif_stream_put
2542 /*---------------------------------------------------------------------------
2543 snd_trident_ac97_control
2545 Description: enable/disable rear path for ac97
2546 ---------------------------------------------------------------------------*/
2548 #define snd_trident_ac97_control_info snd_ctl_boolean_mono_info
2550 static int snd_trident_ac97_control_get(struct snd_kcontrol
*kcontrol
,
2551 struct snd_ctl_elem_value
*ucontrol
)
2553 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2556 spin_lock_irq(&trident
->reg_lock
);
2557 val
= trident
->ac97_ctrl
= inl(TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
2558 ucontrol
->value
.integer
.value
[0] = (val
& (1 << kcontrol
->private_value
)) ? 1 : 0;
2559 spin_unlock_irq(&trident
->reg_lock
);
2563 static int snd_trident_ac97_control_put(struct snd_kcontrol
*kcontrol
,
2564 struct snd_ctl_elem_value
*ucontrol
)
2566 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2570 spin_lock_irq(&trident
->reg_lock
);
2571 val
= trident
->ac97_ctrl
= inl(TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
2572 val
&= ~(1 << kcontrol
->private_value
);
2573 if (ucontrol
->value
.integer
.value
[0])
2574 val
|= 1 << kcontrol
->private_value
;
2575 change
= val
!= trident
->ac97_ctrl
;
2576 trident
->ac97_ctrl
= val
;
2577 outl(trident
->ac97_ctrl
= val
, TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
2578 spin_unlock_irq(&trident
->reg_lock
);
2582 static struct snd_kcontrol_new snd_trident_ac97_rear_control __devinitdata
=
2584 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2585 .name
= "Rear Path",
2586 .info
= snd_trident_ac97_control_info
,
2587 .get
= snd_trident_ac97_control_get
,
2588 .put
= snd_trident_ac97_control_put
,
2592 /*---------------------------------------------------------------------------
2593 snd_trident_vol_control
2595 Description: wave & music volume control
2596 ---------------------------------------------------------------------------*/
2598 static int snd_trident_vol_control_info(struct snd_kcontrol
*kcontrol
,
2599 struct snd_ctl_elem_info
*uinfo
)
2601 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2603 uinfo
->value
.integer
.min
= 0;
2604 uinfo
->value
.integer
.max
= 255;
2608 static int snd_trident_vol_control_get(struct snd_kcontrol
*kcontrol
,
2609 struct snd_ctl_elem_value
*ucontrol
)
2611 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2614 val
= trident
->musicvol_wavevol
;
2615 ucontrol
->value
.integer
.value
[0] = 255 - ((val
>> kcontrol
->private_value
) & 0xff);
2616 ucontrol
->value
.integer
.value
[1] = 255 - ((val
>> (kcontrol
->private_value
+ 8)) & 0xff);
2620 static const DECLARE_TLV_DB_SCALE(db_scale_gvol
, -6375, 25, 0);
2622 static int snd_trident_vol_control_put(struct snd_kcontrol
*kcontrol
,
2623 struct snd_ctl_elem_value
*ucontrol
)
2625 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2629 spin_lock_irq(&trident
->reg_lock
);
2630 val
= trident
->musicvol_wavevol
;
2631 val
&= ~(0xffff << kcontrol
->private_value
);
2632 val
|= ((255 - (ucontrol
->value
.integer
.value
[0] & 0xff)) |
2633 ((255 - (ucontrol
->value
.integer
.value
[1] & 0xff)) << 8)) << kcontrol
->private_value
;
2634 change
= val
!= trident
->musicvol_wavevol
;
2635 outl(trident
->musicvol_wavevol
= val
, TRID_REG(trident
, T4D_MUSICVOL_WAVEVOL
));
2636 spin_unlock_irq(&trident
->reg_lock
);
2640 static struct snd_kcontrol_new snd_trident_vol_music_control __devinitdata
=
2642 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2643 .name
= "Music Playback Volume",
2644 .info
= snd_trident_vol_control_info
,
2645 .get
= snd_trident_vol_control_get
,
2646 .put
= snd_trident_vol_control_put
,
2647 .private_value
= 16,
2648 .tlv
= { .p
= db_scale_gvol
},
2651 static struct snd_kcontrol_new snd_trident_vol_wave_control __devinitdata
=
2653 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2654 .name
= "Wave Playback Volume",
2655 .info
= snd_trident_vol_control_info
,
2656 .get
= snd_trident_vol_control_get
,
2657 .put
= snd_trident_vol_control_put
,
2659 .tlv
= { .p
= db_scale_gvol
},
2662 /*---------------------------------------------------------------------------
2663 snd_trident_pcm_vol_control
2665 Description: PCM front volume control
2666 ---------------------------------------------------------------------------*/
2668 static int snd_trident_pcm_vol_control_info(struct snd_kcontrol
*kcontrol
,
2669 struct snd_ctl_elem_info
*uinfo
)
2671 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2673 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2675 uinfo
->value
.integer
.min
= 0;
2676 uinfo
->value
.integer
.max
= 255;
2677 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
)
2678 uinfo
->value
.integer
.max
= 1023;
2682 static int snd_trident_pcm_vol_control_get(struct snd_kcontrol
*kcontrol
,
2683 struct snd_ctl_elem_value
*ucontrol
)
2685 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2686 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2688 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
2689 ucontrol
->value
.integer
.value
[0] = 1023 - mix
->vol
;
2691 ucontrol
->value
.integer
.value
[0] = 255 - (mix
->vol
>>2);
2696 static int snd_trident_pcm_vol_control_put(struct snd_kcontrol
*kcontrol
,
2697 struct snd_ctl_elem_value
*ucontrol
)
2699 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2700 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2704 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
2705 val
= 1023 - (ucontrol
->value
.integer
.value
[0] & 1023);
2707 val
= (255 - (ucontrol
->value
.integer
.value
[0] & 255)) << 2;
2709 spin_lock_irq(&trident
->reg_lock
);
2710 change
= val
!= mix
->vol
;
2712 if (mix
->voice
!= NULL
)
2713 snd_trident_write_vol_reg(trident
, mix
->voice
, val
);
2714 spin_unlock_irq(&trident
->reg_lock
);
2718 static struct snd_kcontrol_new snd_trident_pcm_vol_control __devinitdata
=
2720 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2721 .name
= "PCM Front Playback Volume",
2722 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2724 .info
= snd_trident_pcm_vol_control_info
,
2725 .get
= snd_trident_pcm_vol_control_get
,
2726 .put
= snd_trident_pcm_vol_control_put
,
2727 /* FIXME: no tlv yet */
2730 /*---------------------------------------------------------------------------
2731 snd_trident_pcm_pan_control
2733 Description: PCM front pan control
2734 ---------------------------------------------------------------------------*/
2736 static int snd_trident_pcm_pan_control_info(struct snd_kcontrol
*kcontrol
,
2737 struct snd_ctl_elem_info
*uinfo
)
2739 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2741 uinfo
->value
.integer
.min
= 0;
2742 uinfo
->value
.integer
.max
= 127;
2746 static int snd_trident_pcm_pan_control_get(struct snd_kcontrol
*kcontrol
,
2747 struct snd_ctl_elem_value
*ucontrol
)
2749 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2750 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2752 ucontrol
->value
.integer
.value
[0] = mix
->pan
;
2753 if (ucontrol
->value
.integer
.value
[0] & 0x40) {
2754 ucontrol
->value
.integer
.value
[0] = (0x3f - (ucontrol
->value
.integer
.value
[0] & 0x3f));
2756 ucontrol
->value
.integer
.value
[0] |= 0x40;
2761 static int snd_trident_pcm_pan_control_put(struct snd_kcontrol
*kcontrol
,
2762 struct snd_ctl_elem_value
*ucontrol
)
2764 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2765 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2769 if (ucontrol
->value
.integer
.value
[0] & 0x40)
2770 val
= ucontrol
->value
.integer
.value
[0] & 0x3f;
2772 val
= (0x3f - (ucontrol
->value
.integer
.value
[0] & 0x3f)) | 0x40;
2773 spin_lock_irq(&trident
->reg_lock
);
2774 change
= val
!= mix
->pan
;
2776 if (mix
->voice
!= NULL
)
2777 snd_trident_write_pan_reg(trident
, mix
->voice
, val
);
2778 spin_unlock_irq(&trident
->reg_lock
);
2782 static struct snd_kcontrol_new snd_trident_pcm_pan_control __devinitdata
=
2784 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2785 .name
= "PCM Pan Playback Control",
2786 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2788 .info
= snd_trident_pcm_pan_control_info
,
2789 .get
= snd_trident_pcm_pan_control_get
,
2790 .put
= snd_trident_pcm_pan_control_put
,
2793 /*---------------------------------------------------------------------------
2794 snd_trident_pcm_rvol_control
2796 Description: PCM reverb volume control
2797 ---------------------------------------------------------------------------*/
2799 static int snd_trident_pcm_rvol_control_info(struct snd_kcontrol
*kcontrol
,
2800 struct snd_ctl_elem_info
*uinfo
)
2802 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2804 uinfo
->value
.integer
.min
= 0;
2805 uinfo
->value
.integer
.max
= 127;
2809 static int snd_trident_pcm_rvol_control_get(struct snd_kcontrol
*kcontrol
,
2810 struct snd_ctl_elem_value
*ucontrol
)
2812 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2813 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2815 ucontrol
->value
.integer
.value
[0] = 127 - mix
->rvol
;
2819 static int snd_trident_pcm_rvol_control_put(struct snd_kcontrol
*kcontrol
,
2820 struct snd_ctl_elem_value
*ucontrol
)
2822 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2823 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2827 val
= 0x7f - (ucontrol
->value
.integer
.value
[0] & 0x7f);
2828 spin_lock_irq(&trident
->reg_lock
);
2829 change
= val
!= mix
->rvol
;
2831 if (mix
->voice
!= NULL
)
2832 snd_trident_write_rvol_reg(trident
, mix
->voice
, val
);
2833 spin_unlock_irq(&trident
->reg_lock
);
2837 static const DECLARE_TLV_DB_SCALE(db_scale_crvol
, -3175, 25, 1);
2839 static struct snd_kcontrol_new snd_trident_pcm_rvol_control __devinitdata
=
2841 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2842 .name
= "PCM Reverb Playback Volume",
2843 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2845 .info
= snd_trident_pcm_rvol_control_info
,
2846 .get
= snd_trident_pcm_rvol_control_get
,
2847 .put
= snd_trident_pcm_rvol_control_put
,
2848 .tlv
= { .p
= db_scale_crvol
},
2851 /*---------------------------------------------------------------------------
2852 snd_trident_pcm_cvol_control
2854 Description: PCM chorus volume control
2855 ---------------------------------------------------------------------------*/
2857 static int snd_trident_pcm_cvol_control_info(struct snd_kcontrol
*kcontrol
,
2858 struct snd_ctl_elem_info
*uinfo
)
2860 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2862 uinfo
->value
.integer
.min
= 0;
2863 uinfo
->value
.integer
.max
= 127;
2867 static int snd_trident_pcm_cvol_control_get(struct snd_kcontrol
*kcontrol
,
2868 struct snd_ctl_elem_value
*ucontrol
)
2870 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2871 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2873 ucontrol
->value
.integer
.value
[0] = 127 - mix
->cvol
;
2877 static int snd_trident_pcm_cvol_control_put(struct snd_kcontrol
*kcontrol
,
2878 struct snd_ctl_elem_value
*ucontrol
)
2880 struct snd_trident
*trident
= snd_kcontrol_chip(kcontrol
);
2881 struct snd_trident_pcm_mixer
*mix
= &trident
->pcm_mixer
[snd_ctl_get_ioffnum(kcontrol
, &ucontrol
->id
)];
2885 val
= 0x7f - (ucontrol
->value
.integer
.value
[0] & 0x7f);
2886 spin_lock_irq(&trident
->reg_lock
);
2887 change
= val
!= mix
->cvol
;
2889 if (mix
->voice
!= NULL
)
2890 snd_trident_write_cvol_reg(trident
, mix
->voice
, val
);
2891 spin_unlock_irq(&trident
->reg_lock
);
2895 static struct snd_kcontrol_new snd_trident_pcm_cvol_control __devinitdata
=
2897 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2898 .name
= "PCM Chorus Playback Volume",
2899 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2901 .info
= snd_trident_pcm_cvol_control_info
,
2902 .get
= snd_trident_pcm_cvol_control_get
,
2903 .put
= snd_trident_pcm_cvol_control_put
,
2904 .tlv
= { .p
= db_scale_crvol
},
2907 static void snd_trident_notify_pcm_change1(struct snd_card
*card
,
2908 struct snd_kcontrol
*kctl
,
2909 int num
, int activate
)
2911 struct snd_ctl_elem_id id
;
2916 kctl
->vd
[num
].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
2918 kctl
->vd
[num
].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
2919 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
|
2920 SNDRV_CTL_EVENT_MASK_INFO
,
2921 snd_ctl_build_ioff(&id
, kctl
, num
));
2924 static void snd_trident_notify_pcm_change(struct snd_trident
*trident
,
2925 struct snd_trident_pcm_mixer
*tmix
,
2926 int num
, int activate
)
2928 snd_trident_notify_pcm_change1(trident
->card
, trident
->ctl_vol
, num
, activate
);
2929 snd_trident_notify_pcm_change1(trident
->card
, trident
->ctl_pan
, num
, activate
);
2930 snd_trident_notify_pcm_change1(trident
->card
, trident
->ctl_rvol
, num
, activate
);
2931 snd_trident_notify_pcm_change1(trident
->card
, trident
->ctl_cvol
, num
, activate
);
2934 static int snd_trident_pcm_mixer_build(struct snd_trident
*trident
,
2935 struct snd_trident_voice
*voice
,
2936 struct snd_pcm_substream
*substream
)
2938 struct snd_trident_pcm_mixer
*tmix
;
2940 if (snd_BUG_ON(!trident
|| !voice
|| !substream
))
2942 tmix
= &trident
->pcm_mixer
[substream
->number
];
2943 tmix
->voice
= voice
;
2944 tmix
->vol
= T4D_DEFAULT_PCM_VOL
;
2945 tmix
->pan
= T4D_DEFAULT_PCM_PAN
;
2946 tmix
->rvol
= T4D_DEFAULT_PCM_RVOL
;
2947 tmix
->cvol
= T4D_DEFAULT_PCM_CVOL
;
2948 snd_trident_notify_pcm_change(trident
, tmix
, substream
->number
, 1);
2952 static int snd_trident_pcm_mixer_free(struct snd_trident
*trident
, struct snd_trident_voice
*voice
, struct snd_pcm_substream
*substream
)
2954 struct snd_trident_pcm_mixer
*tmix
;
2956 if (snd_BUG_ON(!trident
|| !substream
))
2958 tmix
= &trident
->pcm_mixer
[substream
->number
];
2960 snd_trident_notify_pcm_change(trident
, tmix
, substream
->number
, 0);
2964 /*---------------------------------------------------------------------------
2967 Description: This routine registers the 4DWave device for mixer support.
2969 Parameters: trident - pointer to target device class for 4DWave.
2973 ---------------------------------------------------------------------------*/
2975 static int __devinit
snd_trident_mixer(struct snd_trident
* trident
, int pcm_spdif_device
)
2977 struct snd_ac97_template _ac97
;
2978 struct snd_card
*card
= trident
->card
;
2979 struct snd_kcontrol
*kctl
;
2980 struct snd_ctl_elem_value
*uctl
;
2981 int idx
, err
, retries
= 2;
2982 static struct snd_ac97_bus_ops ops
= {
2983 .write
= snd_trident_codec_write
,
2984 .read
= snd_trident_codec_read
,
2987 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
2991 if ((err
= snd_ac97_bus(trident
->card
, 0, &ops
, NULL
, &trident
->ac97_bus
)) < 0)
2994 memset(&_ac97
, 0, sizeof(_ac97
));
2995 _ac97
.private_data
= trident
;
2996 trident
->ac97_detect
= 1;
2999 if ((err
= snd_ac97_mixer(trident
->ac97_bus
, &_ac97
, &trident
->ac97
)) < 0) {
3000 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
3001 if ((err
= snd_trident_sis_reset(trident
)) < 0)
3010 /* secondary codec? */
3011 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
&&
3012 (inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)) & SI_AC97_PRIMARY_READY
) != 0) {
3014 err
= snd_ac97_mixer(trident
->ac97_bus
, &_ac97
, &trident
->ac97_sec
);
3016 snd_printk(KERN_ERR
"SI7018: the secondary codec - invalid access\n");
3017 #if 0 // only for my testing purpose --jk
3019 struct snd_ac97
*mc97
;
3020 err
= snd_ac97_modem(trident
->card
, &_ac97
, &mc97
);
3022 snd_printk(KERN_ERR
"snd_ac97_modem returned error %i\n", err
);
3027 trident
->ac97_detect
= 0;
3029 if (trident
->device
!= TRIDENT_DEVICE_ID_SI7018
) {
3030 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_trident_vol_wave_control
, trident
))) < 0)
3032 kctl
->put(kctl
, uctl
);
3033 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_trident_vol_music_control
, trident
))) < 0)
3035 kctl
->put(kctl
, uctl
);
3036 outl(trident
->musicvol_wavevol
= 0x00000000, TRID_REG(trident
, T4D_MUSICVOL_WAVEVOL
));
3038 outl(trident
->musicvol_wavevol
= 0xffff0000, TRID_REG(trident
, T4D_MUSICVOL_WAVEVOL
));
3041 for (idx
= 0; idx
< 32; idx
++) {
3042 struct snd_trident_pcm_mixer
*tmix
;
3044 tmix
= &trident
->pcm_mixer
[idx
];
3047 if ((trident
->ctl_vol
= snd_ctl_new1(&snd_trident_pcm_vol_control
, trident
)) == NULL
)
3049 if ((err
= snd_ctl_add(card
, trident
->ctl_vol
)))
3052 if ((trident
->ctl_pan
= snd_ctl_new1(&snd_trident_pcm_pan_control
, trident
)) == NULL
)
3054 if ((err
= snd_ctl_add(card
, trident
->ctl_pan
)))
3057 if ((trident
->ctl_rvol
= snd_ctl_new1(&snd_trident_pcm_rvol_control
, trident
)) == NULL
)
3059 if ((err
= snd_ctl_add(card
, trident
->ctl_rvol
)))
3062 if ((trident
->ctl_cvol
= snd_ctl_new1(&snd_trident_pcm_cvol_control
, trident
)) == NULL
)
3064 if ((err
= snd_ctl_add(card
, trident
->ctl_cvol
)))
3067 if (trident
->device
== TRIDENT_DEVICE_ID_NX
) {
3068 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_trident_ac97_rear_control
, trident
))) < 0)
3070 kctl
->put(kctl
, uctl
);
3072 if (trident
->device
== TRIDENT_DEVICE_ID_NX
|| trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
3074 kctl
= snd_ctl_new1(&snd_trident_spdif_control
, trident
);
3079 if (trident
->ac97
->ext_id
& AC97_EI_SPDIF
)
3081 if (trident
->ac97_sec
&& (trident
->ac97_sec
->ext_id
& AC97_EI_SPDIF
))
3083 idx
= kctl
->id
.index
;
3084 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
3086 kctl
->put(kctl
, uctl
);
3088 kctl
= snd_ctl_new1(&snd_trident_spdif_default
, trident
);
3093 kctl
->id
.index
= idx
;
3094 kctl
->id
.device
= pcm_spdif_device
;
3095 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
3098 kctl
= snd_ctl_new1(&snd_trident_spdif_mask
, trident
);
3103 kctl
->id
.index
= idx
;
3104 kctl
->id
.device
= pcm_spdif_device
;
3105 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
3108 kctl
= snd_ctl_new1(&snd_trident_spdif_stream
, trident
);
3113 kctl
->id
.index
= idx
;
3114 kctl
->id
.device
= pcm_spdif_device
;
3115 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
3117 trident
->spdif_pcm_ctl
= kctl
;
3133 * gameport interface
3136 #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
3138 static unsigned char snd_trident_gameport_read(struct gameport
*gameport
)
3140 struct snd_trident
*chip
= gameport_get_port_data(gameport
);
3142 if (snd_BUG_ON(!chip
))
3144 return inb(TRID_REG(chip
, GAMEPORT_LEGACY
));
3147 static void snd_trident_gameport_trigger(struct gameport
*gameport
)
3149 struct snd_trident
*chip
= gameport_get_port_data(gameport
);
3151 if (snd_BUG_ON(!chip
))
3153 outb(0xff, TRID_REG(chip
, GAMEPORT_LEGACY
));
3156 static int snd_trident_gameport_cooked_read(struct gameport
*gameport
, int *axes
, int *buttons
)
3158 struct snd_trident
*chip
= gameport_get_port_data(gameport
);
3161 if (snd_BUG_ON(!chip
))
3164 *buttons
= (~inb(TRID_REG(chip
, GAMEPORT_LEGACY
)) >> 4) & 0xf;
3166 for (i
= 0; i
< 4; i
++) {
3167 axes
[i
] = inw(TRID_REG(chip
, GAMEPORT_AXES
+ i
* 2));
3168 if (axes
[i
] == 0xffff) axes
[i
] = -1;
3174 static int snd_trident_gameport_open(struct gameport
*gameport
, int mode
)
3176 struct snd_trident
*chip
= gameport_get_port_data(gameport
);
3178 if (snd_BUG_ON(!chip
))
3182 case GAMEPORT_MODE_COOKED
:
3183 outb(GAMEPORT_MODE_ADC
, TRID_REG(chip
, GAMEPORT_GCR
));
3186 case GAMEPORT_MODE_RAW
:
3187 outb(0, TRID_REG(chip
, GAMEPORT_GCR
));
3194 int __devinit
snd_trident_create_gameport(struct snd_trident
*chip
)
3196 struct gameport
*gp
;
3198 chip
->gameport
= gp
= gameport_allocate_port();
3200 printk(KERN_ERR
"trident: cannot allocate memory for gameport\n");
3204 gameport_set_name(gp
, "Trident 4DWave");
3205 gameport_set_phys(gp
, "pci%s/gameport0", pci_name(chip
->pci
));
3206 gameport_set_dev_parent(gp
, &chip
->pci
->dev
);
3208 gameport_set_port_data(gp
, chip
);
3210 gp
->read
= snd_trident_gameport_read
;
3211 gp
->trigger
= snd_trident_gameport_trigger
;
3212 gp
->cooked_read
= snd_trident_gameport_cooked_read
;
3213 gp
->open
= snd_trident_gameport_open
;
3215 gameport_register_port(gp
);
3220 static inline void snd_trident_free_gameport(struct snd_trident
*chip
)
3222 if (chip
->gameport
) {
3223 gameport_unregister_port(chip
->gameport
);
3224 chip
->gameport
= NULL
;
3228 int __devinit
snd_trident_create_gameport(struct snd_trident
*chip
) { return -ENOSYS
; }
3229 static inline void snd_trident_free_gameport(struct snd_trident
*chip
) { }
3230 #endif /* CONFIG_GAMEPORT */
3235 static inline void do_delay(struct snd_trident
*chip
)
3237 schedule_timeout_uninterruptible(1);
3244 static int snd_trident_sis_reset(struct snd_trident
*trident
)
3246 unsigned long end_time
;
3250 r
= trident
->in_suspend
? 0 : 2; /* count of retries */
3252 pci_write_config_byte(trident
->pci
, 0x46, 0x04); /* SOFTWARE RESET */
3254 pci_write_config_byte(trident
->pci
, 0x46, 0x00);
3256 /* disable AC97 GPIO interrupt */
3257 outb(0x00, TRID_REG(trident
, SI_AC97_GPIO
));
3258 /* initialize serial interface, force cold reset */
3259 i
= PCMOUT
|SURROUT
|CENTEROUT
|LFEOUT
|SECONDARY_ID
|COLD_RESET
;
3260 outl(i
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
3262 /* remove cold reset */
3264 outl(i
, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
3266 /* wait, until the codec is ready */
3267 end_time
= (jiffies
+ (HZ
* 3) / 4) + 1;
3269 if ((inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)) & SI_AC97_PRIMARY_READY
) != 0)
3272 } while (time_after_eq(end_time
, jiffies
));
3273 snd_printk(KERN_ERR
"AC'97 codec ready error [0x%x]\n", inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)));
3275 end_time
= jiffies
+ HZ
;
3278 } while (time_after_eq(end_time
, jiffies
));
3279 goto __si7018_retry
;
3282 /* wait for the second codec */
3284 if ((inl(TRID_REG(trident
, SI_SERIAL_INTF_CTRL
)) & SI_AC97_SECONDARY_READY
) != 0)
3287 } while (time_after_eq(end_time
, jiffies
));
3288 /* enable 64 channel mode */
3289 outl(BANK_B_EN
, TRID_REG(trident
, T4D_LFO_GC_CIR
));
3297 static void snd_trident_proc_read(struct snd_info_entry
*entry
,
3298 struct snd_info_buffer
*buffer
)
3300 struct snd_trident
*trident
= entry
->private_data
;
3303 switch (trident
->device
) {
3304 case TRIDENT_DEVICE_ID_SI7018
:
3305 s
= "SiS 7018 Audio";
3307 case TRIDENT_DEVICE_ID_DX
:
3308 s
= "Trident 4DWave PCI DX";
3310 case TRIDENT_DEVICE_ID_NX
:
3311 s
= "Trident 4DWave PCI NX";
3316 snd_iprintf(buffer
, "%s\n\n", s
);
3317 snd_iprintf(buffer
, "Spurious IRQs : %d\n", trident
->spurious_irq_count
);
3318 snd_iprintf(buffer
, "Spurious IRQ dlta: %d\n", trident
->spurious_irq_max_delta
);
3319 if (trident
->device
== TRIDENT_DEVICE_ID_NX
|| trident
->device
== TRIDENT_DEVICE_ID_SI7018
)
3320 snd_iprintf(buffer
, "IEC958 Mixer Out : %s\n", trident
->spdif_ctrl
== 0x28 ? "on" : "off");
3321 if (trident
->device
== TRIDENT_DEVICE_ID_NX
) {
3322 snd_iprintf(buffer
, "Rear Speakers : %s\n", trident
->ac97_ctrl
& 0x00000010 ? "on" : "off");
3323 if (trident
->tlb
.entries
) {
3324 snd_iprintf(buffer
,"\nVirtual Memory\n");
3325 snd_iprintf(buffer
, "Memory Maximum : %d\n", trident
->tlb
.memhdr
->size
);
3326 snd_iprintf(buffer
, "Memory Used : %d\n", trident
->tlb
.memhdr
->used
);
3327 snd_iprintf(buffer
, "Memory Free : %d\n", snd_util_mem_avail(trident
->tlb
.memhdr
));
3332 static void __devinit
snd_trident_proc_init(struct snd_trident
* trident
)
3334 struct snd_info_entry
*entry
;
3335 const char *s
= "trident";
3337 if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
)
3339 if (! snd_card_proc_new(trident
->card
, s
, &entry
))
3340 snd_info_set_text_ops(entry
, trident
, snd_trident_proc_read
);
3343 static int snd_trident_dev_free(struct snd_device
*device
)
3345 struct snd_trident
*trident
= device
->device_data
;
3346 return snd_trident_free(trident
);
3349 /*---------------------------------------------------------------------------
3350 snd_trident_tlb_alloc
3352 Description: Allocate and set up the TLB page table on 4D NX.
3353 Each entry has 4 bytes (physical PCI address).
3355 Parameters: trident - pointer to target device class for 4DWave.
3357 Returns: 0 or negative error code
3359 ---------------------------------------------------------------------------*/
3361 static int __devinit
snd_trident_tlb_alloc(struct snd_trident
*trident
)
3365 /* TLB array must be aligned to 16kB !!! so we allocate
3366 32kB region and correct offset when necessary */
3368 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(trident
->pci
),
3369 2 * SNDRV_TRIDENT_MAX_PAGES
* 4, &trident
->tlb
.buffer
) < 0) {
3370 snd_printk(KERN_ERR
"trident: unable to allocate TLB buffer\n");
3373 trident
->tlb
.entries
= (unsigned int*)ALIGN((unsigned long)trident
->tlb
.buffer
.area
, SNDRV_TRIDENT_MAX_PAGES
* 4);
3374 trident
->tlb
.entries_dmaaddr
= ALIGN(trident
->tlb
.buffer
.addr
, SNDRV_TRIDENT_MAX_PAGES
* 4);
3375 /* allocate shadow TLB page table (virtual addresses) */
3376 trident
->tlb
.shadow_entries
= vmalloc(SNDRV_TRIDENT_MAX_PAGES
*sizeof(unsigned long));
3377 if (trident
->tlb
.shadow_entries
== NULL
) {
3378 snd_printk(KERN_ERR
"trident: unable to allocate shadow TLB entries\n");
3381 /* allocate and setup silent page and initialise TLB entries */
3382 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(trident
->pci
),
3383 SNDRV_TRIDENT_PAGE_SIZE
, &trident
->tlb
.silent_page
) < 0) {
3384 snd_printk(KERN_ERR
"trident: unable to allocate silent page\n");
3387 memset(trident
->tlb
.silent_page
.area
, 0, SNDRV_TRIDENT_PAGE_SIZE
);
3388 for (i
= 0; i
< SNDRV_TRIDENT_MAX_PAGES
; i
++) {
3389 trident
->tlb
.entries
[i
] = cpu_to_le32(trident
->tlb
.silent_page
.addr
& ~(SNDRV_TRIDENT_PAGE_SIZE
-1));
3390 trident
->tlb
.shadow_entries
[i
] = (unsigned long)trident
->tlb
.silent_page
.area
;
3393 /* use emu memory block manager code to manage tlb page allocation */
3394 trident
->tlb
.memhdr
= snd_util_memhdr_new(SNDRV_TRIDENT_PAGE_SIZE
* SNDRV_TRIDENT_MAX_PAGES
);
3395 if (trident
->tlb
.memhdr
== NULL
)
3398 trident
->tlb
.memhdr
->block_extra_size
= sizeof(struct snd_trident_memblk_arg
);
3403 * initialize 4D DX chip
3406 static void snd_trident_stop_all_voices(struct snd_trident
*trident
)
3408 outl(0xffffffff, TRID_REG(trident
, T4D_STOP_A
));
3409 outl(0xffffffff, TRID_REG(trident
, T4D_STOP_B
));
3410 outl(0, TRID_REG(trident
, T4D_AINTEN_A
));
3411 outl(0, TRID_REG(trident
, T4D_AINTEN_B
));
3414 static int snd_trident_4d_dx_init(struct snd_trident
*trident
)
3416 struct pci_dev
*pci
= trident
->pci
;
3417 unsigned long end_time
;
3419 /* reset the legacy configuration and whole audio/wavetable block */
3420 pci_write_config_dword(pci
, 0x40, 0); /* DDMA */
3421 pci_write_config_byte(pci
, 0x44, 0); /* ports */
3422 pci_write_config_byte(pci
, 0x45, 0); /* Legacy DMA */
3423 pci_write_config_byte(pci
, 0x46, 4); /* reset */
3425 pci_write_config_byte(pci
, 0x46, 0); /* release reset */
3428 /* warm reset of the AC'97 codec */
3429 outl(0x00000001, TRID_REG(trident
, DX_ACR2_AC97_COM_STAT
));
3431 outl(0x00000000, TRID_REG(trident
, DX_ACR2_AC97_COM_STAT
));
3432 /* DAC on, disable SB IRQ and try to force ADC valid signal */
3433 trident
->ac97_ctrl
= 0x0000004a;
3434 outl(trident
->ac97_ctrl
, TRID_REG(trident
, DX_ACR2_AC97_COM_STAT
));
3435 /* wait, until the codec is ready */
3436 end_time
= (jiffies
+ (HZ
* 3) / 4) + 1;
3438 if ((inl(TRID_REG(trident
, DX_ACR2_AC97_COM_STAT
)) & 0x0010) != 0)
3441 } while (time_after_eq(end_time
, jiffies
));
3442 snd_printk(KERN_ERR
"AC'97 codec ready error\n");
3446 snd_trident_stop_all_voices(trident
);
3452 * initialize 4D NX chip
3454 static int snd_trident_4d_nx_init(struct snd_trident
*trident
)
3456 struct pci_dev
*pci
= trident
->pci
;
3457 unsigned long end_time
;
3459 /* reset the legacy configuration and whole audio/wavetable block */
3460 pci_write_config_dword(pci
, 0x40, 0); /* DDMA */
3461 pci_write_config_byte(pci
, 0x44, 0); /* ports */
3462 pci_write_config_byte(pci
, 0x45, 0); /* Legacy DMA */
3464 pci_write_config_byte(pci
, 0x46, 1); /* reset */
3466 pci_write_config_byte(pci
, 0x46, 0); /* release reset */
3469 /* warm reset of the AC'97 codec */
3470 outl(0x00000001, TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
3472 outl(0x00000000, TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
3473 /* wait, until the codec is ready */
3474 end_time
= (jiffies
+ (HZ
* 3) / 4) + 1;
3476 if ((inl(TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
)) & 0x0008) != 0)
3479 } while (time_after_eq(end_time
, jiffies
));
3480 snd_printk(KERN_ERR
"AC'97 codec ready error [0x%x]\n", inl(TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
)));
3485 trident
->ac97_ctrl
= 0x00000002;
3486 outl(trident
->ac97_ctrl
, TRID_REG(trident
, NX_ACR0_AC97_COM_STAT
));
3487 /* disable SB IRQ */
3488 outl(NX_SB_IRQ_DISABLE
, TRID_REG(trident
, T4D_MISCINT
));
3490 snd_trident_stop_all_voices(trident
);
3492 if (trident
->tlb
.entries
!= NULL
) {
3494 /* enable virtual addressing via TLB */
3495 i
= trident
->tlb
.entries_dmaaddr
;
3497 outl(i
, TRID_REG(trident
, NX_TLBC
));
3499 outl(0, TRID_REG(trident
, NX_TLBC
));
3501 /* initialize S/PDIF */
3502 outl(trident
->spdif_bits
, TRID_REG(trident
, NX_SPCSTATUS
));
3503 outb(trident
->spdif_ctrl
, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
3509 * initialize sis7018 chip
3511 static int snd_trident_sis_init(struct snd_trident
*trident
)
3515 if ((err
= snd_trident_sis_reset(trident
)) < 0)
3518 snd_trident_stop_all_voices(trident
);
3520 /* initialize S/PDIF */
3521 outl(trident
->spdif_bits
, TRID_REG(trident
, SI_SPDIF_CS
));
3526 /*---------------------------------------------------------------------------
3529 Description: This routine will create the device specific class for
3530 the 4DWave card. It will also perform basic initialization.
3532 Parameters: card - which card to create
3533 pci - interface to PCI bus resource info
3534 dma1ptr - playback dma buffer
3535 dma2ptr - capture dma buffer
3536 irqptr - interrupt resource info
3538 Returns: 4DWave device class private data
3540 ---------------------------------------------------------------------------*/
3542 int __devinit
snd_trident_create(struct snd_card
*card
,
3543 struct pci_dev
*pci
,
3545 int pcm_spdif_device
,
3546 int max_wavetable_size
,
3547 struct snd_trident
** rtrident
)
3549 struct snd_trident
*trident
;
3551 struct snd_trident_voice
*voice
;
3552 struct snd_trident_pcm_mixer
*tmix
;
3553 static struct snd_device_ops ops
= {
3554 .dev_free
= snd_trident_dev_free
,
3559 /* enable PCI device */
3560 if ((err
= pci_enable_device(pci
)) < 0)
3562 /* check, if we can restrict PCI DMA transfers to 30 bits */
3563 if (pci_set_dma_mask(pci
, DMA_BIT_MASK(30)) < 0 ||
3564 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(30)) < 0) {
3565 snd_printk(KERN_ERR
"architecture does not support 30bit PCI busmaster DMA\n");
3566 pci_disable_device(pci
);
3570 trident
= kzalloc(sizeof(*trident
), GFP_KERNEL
);
3571 if (trident
== NULL
) {
3572 pci_disable_device(pci
);
3575 trident
->device
= (pci
->vendor
<< 16) | pci
->device
;
3576 trident
->card
= card
;
3578 spin_lock_init(&trident
->reg_lock
);
3579 spin_lock_init(&trident
->event_lock
);
3580 spin_lock_init(&trident
->voice_alloc
);
3581 if (pcm_streams
< 1)
3583 if (pcm_streams
> 32)
3585 trident
->ChanPCM
= pcm_streams
;
3586 if (max_wavetable_size
< 0 )
3587 max_wavetable_size
= 0;
3588 trident
->synth
.max_size
= max_wavetable_size
* 1024;
3591 trident
->midi_port
= TRID_REG(trident
, T4D_MPU401_BASE
);
3592 pci_set_master(pci
);
3594 if ((err
= pci_request_regions(pci
, "Trident Audio")) < 0) {
3596 pci_disable_device(pci
);
3599 trident
->port
= pci_resource_start(pci
, 0);
3601 if (request_irq(pci
->irq
, snd_trident_interrupt
, IRQF_SHARED
,
3602 KBUILD_MODNAME
, trident
)) {
3603 snd_printk(KERN_ERR
"unable to grab IRQ %d\n", pci
->irq
);
3604 snd_trident_free(trident
);
3607 trident
->irq
= pci
->irq
;
3609 /* allocate 16k-aligned TLB for NX cards */
3610 trident
->tlb
.entries
= NULL
;
3611 trident
->tlb
.buffer
.area
= NULL
;
3612 if (trident
->device
== TRIDENT_DEVICE_ID_NX
) {
3613 if ((err
= snd_trident_tlb_alloc(trident
)) < 0) {
3614 snd_trident_free(trident
);
3619 trident
->spdif_bits
= trident
->spdif_pcm_bits
= SNDRV_PCM_DEFAULT_CON_SPDIF
;
3621 /* initialize chip */
3622 switch (trident
->device
) {
3623 case TRIDENT_DEVICE_ID_DX
:
3624 err
= snd_trident_4d_dx_init(trident
);
3626 case TRIDENT_DEVICE_ID_NX
:
3627 err
= snd_trident_4d_nx_init(trident
);
3629 case TRIDENT_DEVICE_ID_SI7018
:
3630 err
= snd_trident_sis_init(trident
);
3637 snd_trident_free(trident
);
3641 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, trident
, &ops
)) < 0) {
3642 snd_trident_free(trident
);
3646 if ((err
= snd_trident_mixer(trident
, pcm_spdif_device
)) < 0)
3649 /* initialise synth voices */
3650 for (i
= 0; i
< 64; i
++) {
3651 voice
= &trident
->synth
.voices
[i
];
3653 voice
->trident
= trident
;
3655 /* initialize pcm mixer entries */
3656 for (i
= 0; i
< 32; i
++) {
3657 tmix
= &trident
->pcm_mixer
[i
];
3658 tmix
->vol
= T4D_DEFAULT_PCM_VOL
;
3659 tmix
->pan
= T4D_DEFAULT_PCM_PAN
;
3660 tmix
->rvol
= T4D_DEFAULT_PCM_RVOL
;
3661 tmix
->cvol
= T4D_DEFAULT_PCM_CVOL
;
3664 snd_trident_enable_eso(trident
);
3666 snd_trident_proc_init(trident
);
3667 snd_card_set_dev(card
, &pci
->dev
);
3668 *rtrident
= trident
;
3672 /*---------------------------------------------------------------------------
3675 Description: This routine will free the device specific class for
3678 Parameters: trident - device specific private data for 4DWave card
3682 ---------------------------------------------------------------------------*/
3684 static int snd_trident_free(struct snd_trident
*trident
)
3686 snd_trident_free_gameport(trident
);
3687 snd_trident_disable_eso(trident
);
3688 // Disable S/PDIF out
3689 if (trident
->device
== TRIDENT_DEVICE_ID_NX
)
3690 outb(0x00, TRID_REG(trident
, NX_SPCTRL_SPCSO
+ 3));
3691 else if (trident
->device
== TRIDENT_DEVICE_ID_SI7018
) {
3692 outl(0, TRID_REG(trident
, SI_SERIAL_INTF_CTRL
));
3694 if (trident
->irq
>= 0)
3695 free_irq(trident
->irq
, trident
);
3696 if (trident
->tlb
.buffer
.area
) {
3697 outl(0, TRID_REG(trident
, NX_TLBC
));
3698 if (trident
->tlb
.memhdr
)
3699 snd_util_memhdr_free(trident
->tlb
.memhdr
);
3700 if (trident
->tlb
.silent_page
.area
)
3701 snd_dma_free_pages(&trident
->tlb
.silent_page
);
3702 vfree(trident
->tlb
.shadow_entries
);
3703 snd_dma_free_pages(&trident
->tlb
.buffer
);
3705 pci_release_regions(trident
->pci
);
3706 pci_disable_device(trident
->pci
);
3711 /*---------------------------------------------------------------------------
3712 snd_trident_interrupt
3714 Description: ISR for Trident 4DWave device
3716 Parameters: trident - device specific private data for 4DWave card
3718 Problems: It seems that Trident chips generates interrupts more than
3719 one time in special cases. The spurious interrupts are
3720 detected via sample timer (T4D_STIMER) and computing
3721 corresponding delta value. The limits are detected with
3722 the method try & fail so it is possible that it won't
3723 work on all computers. [jaroslav]
3727 ---------------------------------------------------------------------------*/
3729 static irqreturn_t
snd_trident_interrupt(int irq
, void *dev_id
)
3731 struct snd_trident
*trident
= dev_id
;
3732 unsigned int audio_int
, chn_int
, stimer
, channel
, mask
, tmp
;
3734 struct snd_trident_voice
*voice
;
3736 audio_int
= inl(TRID_REG(trident
, T4D_MISCINT
));
3737 if ((audio_int
& (ADDRESS_IRQ
|MPU401_IRQ
)) == 0)
3739 if (audio_int
& ADDRESS_IRQ
) {
3740 // get interrupt status for all channels
3741 spin_lock(&trident
->reg_lock
);
3742 stimer
= inl(TRID_REG(trident
, T4D_STIMER
)) & 0x00ffffff;
3743 chn_int
= inl(TRID_REG(trident
, T4D_AINT_A
));
3746 outl(chn_int
, TRID_REG(trident
, T4D_AINT_A
)); /* ack */
3748 chn_int
= inl(TRID_REG(trident
, T4D_AINT_B
));
3751 for (channel
= 63; channel
>= 32; channel
--) {
3752 mask
= 1 << (channel
&0x1f);
3753 if ((chn_int
& mask
) == 0)
3755 voice
= &trident
->synth
.voices
[channel
];
3756 if (!voice
->pcm
|| voice
->substream
== NULL
) {
3757 outl(mask
, TRID_REG(trident
, T4D_STOP_B
));
3760 delta
= (int)stimer
- (int)voice
->stimer
;
3763 if ((unsigned int)delta
< voice
->spurious_threshold
) {
3764 /* do some statistics here */
3765 trident
->spurious_irq_count
++;
3766 if (trident
->spurious_irq_max_delta
< (unsigned int)delta
)
3767 trident
->spurious_irq_max_delta
= delta
;
3770 voice
->stimer
= stimer
;
3772 if (!voice
->isync3
) {
3773 tmp
= inw(TRID_REG(trident
, T4D_SBBL_SBCL
));
3774 if (trident
->bDMAStart
& 0x40)
3777 tmp
= voice
->isync_max
- tmp
;
3779 tmp
= inl(TRID_REG(trident
, NX_SPCTRL_SPCSO
)) & 0x00ffffff;
3781 if (tmp
< voice
->isync_mark
) {
3783 tmp
= voice
->isync_ESO
- 7;
3785 tmp
= voice
->isync_ESO
+ 2;
3786 /* update ESO for IRQ voice to preserve sync */
3787 snd_trident_stop_voice(trident
, voice
->number
);
3788 snd_trident_write_eso_reg(trident
, voice
, tmp
);
3789 snd_trident_start_voice(trident
, voice
->number
);
3791 } else if (voice
->isync2
) {
3793 /* write original ESO and update CSO for IRQ voice to preserve sync */
3794 snd_trident_stop_voice(trident
, voice
->number
);
3795 snd_trident_write_cso_reg(trident
, voice
, voice
->isync_mark
);
3796 snd_trident_write_eso_reg(trident
, voice
, voice
->ESO
);
3797 snd_trident_start_voice(trident
, voice
->number
);
3801 /* update CSO for extra voice to preserve sync */
3802 snd_trident_stop_voice(trident
, voice
->extra
->number
);
3803 snd_trident_write_cso_reg(trident
, voice
->extra
, 0);
3804 snd_trident_start_voice(trident
, voice
->extra
->number
);
3807 spin_unlock(&trident
->reg_lock
);
3808 snd_pcm_period_elapsed(voice
->substream
);
3809 spin_lock(&trident
->reg_lock
);
3811 outl(chn_int
, TRID_REG(trident
, T4D_AINT_B
)); /* ack */
3813 spin_unlock(&trident
->reg_lock
);
3815 if (audio_int
& MPU401_IRQ
) {
3816 if (trident
->rmidi
) {
3817 snd_mpu401_uart_interrupt(irq
, trident
->rmidi
->private_data
);
3819 inb(TRID_REG(trident
, T4D_MPUR0
));
3822 // outl((ST_TARGET_REACHED | MIXER_OVERFLOW | MIXER_UNDERFLOW), TRID_REG(trident, T4D_MISCINT));
3826 struct snd_trident_voice
*snd_trident_alloc_voice(struct snd_trident
* trident
, int type
, int client
, int port
)
3828 struct snd_trident_voice
*pvoice
;
3829 unsigned long flags
;
3832 spin_lock_irqsave(&trident
->voice_alloc
, flags
);
3833 if (type
== SNDRV_TRIDENT_VOICE_TYPE_PCM
) {
3834 idx
= snd_trident_allocate_pcm_channel(trident
);
3836 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3839 pvoice
= &trident
->synth
.voices
[idx
];
3842 pvoice
->capture
= 0;
3844 pvoice
->memblk
= NULL
;
3845 pvoice
->substream
= NULL
;
3846 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3849 if (type
== SNDRV_TRIDENT_VOICE_TYPE_SYNTH
) {
3850 idx
= snd_trident_allocate_synth_channel(trident
);
3852 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3855 pvoice
= &trident
->synth
.voices
[idx
];
3858 pvoice
->client
= client
;
3859 pvoice
->port
= port
;
3860 pvoice
->memblk
= NULL
;
3861 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3864 if (type
== SNDRV_TRIDENT_VOICE_TYPE_MIDI
) {
3866 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3870 EXPORT_SYMBOL(snd_trident_alloc_voice
);
3872 void snd_trident_free_voice(struct snd_trident
* trident
, struct snd_trident_voice
*voice
)
3874 unsigned long flags
;
3875 void (*private_free
)(struct snd_trident_voice
*);
3878 if (voice
== NULL
|| !voice
->use
)
3880 snd_trident_clear_voices(trident
, voice
->number
, voice
->number
);
3881 spin_lock_irqsave(&trident
->voice_alloc
, flags
);
3882 private_free
= voice
->private_free
;
3883 private_data
= voice
->private_data
;
3884 voice
->private_free
= NULL
;
3885 voice
->private_data
= NULL
;
3887 snd_trident_free_pcm_channel(trident
, voice
->number
);
3889 snd_trident_free_synth_channel(trident
, voice
->number
);
3890 voice
->use
= voice
->pcm
= voice
->synth
= voice
->midi
= 0;
3891 voice
->capture
= voice
->spdif
= 0;
3892 voice
->sample_ops
= NULL
;
3893 voice
->substream
= NULL
;
3894 voice
->extra
= NULL
;
3895 spin_unlock_irqrestore(&trident
->voice_alloc
, flags
);
3897 private_free(voice
);
3900 EXPORT_SYMBOL(snd_trident_free_voice
);
3902 static void snd_trident_clear_voices(struct snd_trident
* trident
, unsigned short v_min
, unsigned short v_max
)
3904 unsigned int i
, val
, mask
[2] = { 0, 0 };
3906 if (snd_BUG_ON(v_min
> 63 || v_max
> 63))
3908 for (i
= v_min
; i
<= v_max
; i
++)
3909 mask
[i
>> 5] |= 1 << (i
& 0x1f);
3911 outl(mask
[0], TRID_REG(trident
, T4D_STOP_A
));
3912 val
= inl(TRID_REG(trident
, T4D_AINTEN_A
));
3913 outl(val
& ~mask
[0], TRID_REG(trident
, T4D_AINTEN_A
));
3916 outl(mask
[1], TRID_REG(trident
, T4D_STOP_B
));
3917 val
= inl(TRID_REG(trident
, T4D_AINTEN_B
));
3918 outl(val
& ~mask
[1], TRID_REG(trident
, T4D_AINTEN_B
));
3923 int snd_trident_suspend(struct pci_dev
*pci
, pm_message_t state
)
3925 struct snd_card
*card
= pci_get_drvdata(pci
);
3926 struct snd_trident
*trident
= card
->private_data
;
3928 trident
->in_suspend
= 1;
3929 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
3930 snd_pcm_suspend_all(trident
->pcm
);
3931 snd_pcm_suspend_all(trident
->foldback
);
3932 snd_pcm_suspend_all(trident
->spdif
);
3934 snd_ac97_suspend(trident
->ac97
);
3935 snd_ac97_suspend(trident
->ac97_sec
);
3937 pci_disable_device(pci
);
3938 pci_save_state(pci
);
3939 pci_set_power_state(pci
, pci_choose_state(pci
, state
));
3943 int snd_trident_resume(struct pci_dev
*pci
)
3945 struct snd_card
*card
= pci_get_drvdata(pci
);
3946 struct snd_trident
*trident
= card
->private_data
;
3948 pci_set_power_state(pci
, PCI_D0
);
3949 pci_restore_state(pci
);
3950 if (pci_enable_device(pci
) < 0) {
3951 printk(KERN_ERR
"trident: pci_enable_device failed, "
3952 "disabling device\n");
3953 snd_card_disconnect(card
);
3956 pci_set_master(pci
);
3958 switch (trident
->device
) {
3959 case TRIDENT_DEVICE_ID_DX
:
3960 snd_trident_4d_dx_init(trident
);
3962 case TRIDENT_DEVICE_ID_NX
:
3963 snd_trident_4d_nx_init(trident
);
3965 case TRIDENT_DEVICE_ID_SI7018
:
3966 snd_trident_sis_init(trident
);
3970 snd_ac97_resume(trident
->ac97
);
3971 snd_ac97_resume(trident
->ac97_sec
);
3973 /* restore some registers */
3974 outl(trident
->musicvol_wavevol
, TRID_REG(trident
, T4D_MUSICVOL_WAVEVOL
));
3976 snd_trident_enable_eso(trident
);
3978 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
3979 trident
->in_suspend
= 0;
3982 #endif /* CONFIG_PM */