2 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
4 * Routines for control of EMU10K1 chips / PCM routines
5 * Multichannel PCM support Copyright (c) Lee Revell <rlrevell@joe-job.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <sound/driver.h>
30 #include <linux/pci.h>
31 #include <linux/delay.h>
32 #include <linux/slab.h>
33 #include <linux/time.h>
34 #include <linux/init.h>
35 #include <sound/core.h>
36 #include <sound/emu10k1.h>
38 static void snd_emu10k1_pcm_interrupt(struct snd_emu10k1
*emu
,
39 struct snd_emu10k1_voice
*voice
)
41 struct snd_emu10k1_pcm
*epcm
;
43 if ((epcm
= voice
->epcm
) == NULL
)
45 if (epcm
->substream
== NULL
)
48 printk("IRQ: position = 0x%x, period = 0x%x, size = 0x%x\n",
49 epcm
->substream
->runtime
->hw
->pointer(emu
, epcm
->substream
),
50 snd_pcm_lib_period_bytes(epcm
->substream
),
51 snd_pcm_lib_buffer_bytes(epcm
->substream
));
53 snd_pcm_period_elapsed(epcm
->substream
);
56 static void snd_emu10k1_pcm_ac97adc_interrupt(struct snd_emu10k1
*emu
,
60 if (status
& IPR_ADCBUFHALFFULL
) {
61 if (emu
->pcm_capture_substream
->runtime
->mode
== SNDRV_PCM_MODE_FRAME
)
65 snd_pcm_period_elapsed(emu
->pcm_capture_substream
);
68 static void snd_emu10k1_pcm_ac97mic_interrupt(struct snd_emu10k1
*emu
,
72 if (status
& IPR_MICBUFHALFFULL
) {
73 if (emu
->pcm_capture_mic_substream
->runtime
->mode
== SNDRV_PCM_MODE_FRAME
)
77 snd_pcm_period_elapsed(emu
->pcm_capture_mic_substream
);
80 static void snd_emu10k1_pcm_efx_interrupt(struct snd_emu10k1
*emu
,
84 if (status
& IPR_EFXBUFHALFFULL
) {
85 if (emu
->pcm_capture_efx_substream
->runtime
->mode
== SNDRV_PCM_MODE_FRAME
)
89 snd_pcm_period_elapsed(emu
->pcm_capture_efx_substream
);
92 static snd_pcm_uframes_t
snd_emu10k1_efx_playback_pointer(struct snd_pcm_substream
*substream
)
94 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
95 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
96 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
101 ptr
= snd_emu10k1_ptr_read(emu
, CCCA
, epcm
->voices
[0]->number
) & 0x00ffffff;
102 ptr
+= runtime
->buffer_size
;
103 ptr
-= epcm
->ccca_start_addr
;
104 ptr
%= runtime
->buffer_size
;
109 static int snd_emu10k1_pcm_channel_alloc(struct snd_emu10k1_pcm
* epcm
, int voices
)
113 if (epcm
->voices
[1] != NULL
&& voices
< 2) {
114 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[1]);
115 epcm
->voices
[1] = NULL
;
117 for (i
= 0; i
< voices
; i
++) {
118 if (epcm
->voices
[i
] == NULL
)
122 return 0; /* already allocated */
124 for (i
= 0; i
< ARRAY_SIZE(epcm
->voices
); i
++) {
125 if (epcm
->voices
[i
]) {
126 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[i
]);
127 epcm
->voices
[i
] = NULL
;
130 err
= snd_emu10k1_voice_alloc(epcm
->emu
,
131 epcm
->type
== PLAYBACK_EMUVOICE
? EMU10K1_PCM
: EMU10K1_EFX
,
137 epcm
->voices
[0]->epcm
= epcm
;
139 for (i
= 1; i
< voices
; i
++) {
140 epcm
->voices
[i
] = &epcm
->emu
->voices
[epcm
->voices
[0]->number
+ i
];
141 epcm
->voices
[i
]->epcm
= epcm
;
144 if (epcm
->extra
== NULL
) {
145 err
= snd_emu10k1_voice_alloc(epcm
->emu
,
146 epcm
->type
== PLAYBACK_EMUVOICE
? EMU10K1_PCM
: EMU10K1_EFX
,
150 /* printk("pcm_channel_alloc: failed extra: voices=%d, frame=%d\n", voices, frame); */
151 for (i
= 0; i
< voices
; i
++) {
152 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[i
]);
153 epcm
->voices
[i
] = NULL
;
157 epcm
->extra
->epcm
= epcm
;
158 epcm
->extra
->interrupt
= snd_emu10k1_pcm_interrupt
;
163 static unsigned int capture_period_sizes
[31] = {
165 384*2, 448*2, 512*2, 640*2,
166 384*4, 448*4, 512*4, 640*4,
167 384*8, 448*8, 512*8, 640*8,
168 384*16, 448*16, 512*16, 640*16,
169 384*32, 448*32, 512*32, 640*32,
170 384*64, 448*64, 512*64, 640*64,
171 384*128,448*128,512*128
174 static struct snd_pcm_hw_constraint_list hw_constraints_capture_period_sizes
= {
176 .list
= capture_period_sizes
,
180 static unsigned int capture_rates
[8] = {
181 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000
184 static struct snd_pcm_hw_constraint_list hw_constraints_capture_rates
= {
186 .list
= capture_rates
,
190 static unsigned int snd_emu10k1_capture_rate_reg(unsigned int rate
)
193 case 8000: return ADCCR_SAMPLERATE_8
;
194 case 11025: return ADCCR_SAMPLERATE_11
;
195 case 16000: return ADCCR_SAMPLERATE_16
;
196 case 22050: return ADCCR_SAMPLERATE_22
;
197 case 24000: return ADCCR_SAMPLERATE_24
;
198 case 32000: return ADCCR_SAMPLERATE_32
;
199 case 44100: return ADCCR_SAMPLERATE_44
;
200 case 48000: return ADCCR_SAMPLERATE_48
;
203 return ADCCR_SAMPLERATE_8
;
207 static unsigned int snd_emu10k1_audigy_capture_rate_reg(unsigned int rate
)
210 case 8000: return A_ADCCR_SAMPLERATE_8
;
211 case 11025: return A_ADCCR_SAMPLERATE_11
;
212 case 12000: return A_ADCCR_SAMPLERATE_12
; /* really supported? */
213 case 16000: return ADCCR_SAMPLERATE_16
;
214 case 22050: return ADCCR_SAMPLERATE_22
;
215 case 24000: return ADCCR_SAMPLERATE_24
;
216 case 32000: return ADCCR_SAMPLERATE_32
;
217 case 44100: return ADCCR_SAMPLERATE_44
;
218 case 48000: return ADCCR_SAMPLERATE_48
;
221 return A_ADCCR_SAMPLERATE_8
;
225 static unsigned int emu10k1_calc_pitch_target(unsigned int rate
)
227 unsigned int pitch_target
;
229 pitch_target
= (rate
<< 8) / 375;
230 pitch_target
= (pitch_target
>> 1) + (pitch_target
& 1);
234 #define PITCH_48000 0x00004000
235 #define PITCH_96000 0x00008000
236 #define PITCH_85000 0x00007155
237 #define PITCH_80726 0x00006ba2
238 #define PITCH_67882 0x00005a82
239 #define PITCH_57081 0x00004c1c
241 static unsigned int emu10k1_select_interprom(unsigned int pitch_target
)
243 if (pitch_target
== PITCH_48000
)
244 return CCCA_INTERPROM_0
;
245 else if (pitch_target
< PITCH_48000
)
246 return CCCA_INTERPROM_1
;
247 else if (pitch_target
>= PITCH_96000
)
248 return CCCA_INTERPROM_0
;
249 else if (pitch_target
>= PITCH_85000
)
250 return CCCA_INTERPROM_6
;
251 else if (pitch_target
>= PITCH_80726
)
252 return CCCA_INTERPROM_5
;
253 else if (pitch_target
>= PITCH_67882
)
254 return CCCA_INTERPROM_4
;
255 else if (pitch_target
>= PITCH_57081
)
256 return CCCA_INTERPROM_3
;
258 return CCCA_INTERPROM_2
;
262 * calculate cache invalidate size
264 * stereo: channel is stereo
265 * w_16: using 16bit samples
267 * returns: cache invalidate size in samples
269 static inline int emu10k1_ccis(int stereo
, int w_16
)
272 return stereo
? 24 : 26;
274 return stereo
? 24*2 : 26*2;
278 static void snd_emu10k1_pcm_init_voice(struct snd_emu10k1
*emu
,
279 int master
, int extra
,
280 struct snd_emu10k1_voice
*evoice
,
281 unsigned int start_addr
,
282 unsigned int end_addr
,
283 struct snd_emu10k1_pcm_mixer
*mix
)
285 struct snd_pcm_substream
*substream
= evoice
->epcm
->substream
;
286 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
287 unsigned int silent_page
, tmp
;
288 int voice
, stereo
, w_16
;
289 unsigned char attn
, send_amount
[8];
290 unsigned char send_routing
[8];
292 unsigned int pitch_target
;
295 voice
= evoice
->number
;
296 stereo
= runtime
->channels
== 2;
297 w_16
= snd_pcm_format_width(runtime
->format
) == 16;
299 if (!extra
&& stereo
) {
308 spin_lock_irqsave(&emu
->reg_lock
, flags
);
310 /* volume parameters */
313 memset(send_routing
, 0, sizeof(send_routing
));
318 memset(send_amount
, 0, sizeof(send_amount
));
320 /* mono, left, right (master voice = left) */
321 tmp
= stereo
? (master
? 1 : 2) : 0;
322 memcpy(send_routing
, &mix
->send_routing
[tmp
][0], 8);
323 memcpy(send_amount
, &mix
->send_volume
[tmp
][0], 8);
326 ccis
= emu10k1_ccis(stereo
, w_16
);
329 evoice
->epcm
->ccca_start_addr
= start_addr
+ ccis
;
334 if (stereo
&& !extra
) {
335 snd_emu10k1_ptr_write(emu
, CPF
, voice
, CPF_STEREO_MASK
);
336 snd_emu10k1_ptr_write(emu
, CPF
, (voice
+ 1), CPF_STEREO_MASK
);
338 snd_emu10k1_ptr_write(emu
, CPF
, voice
, 0);
344 snd_emu10k1_ptr_write(emu
, A_FXRT1
, voice
,
345 snd_emu10k1_compose_audigy_fxrt1(send_routing
));
346 snd_emu10k1_ptr_write(emu
, A_FXRT2
, voice
,
347 snd_emu10k1_compose_audigy_fxrt2(send_routing
));
348 snd_emu10k1_ptr_write(emu
, A_SENDAMOUNTS
, voice
,
349 ((unsigned int)send_amount
[4] << 24) |
350 ((unsigned int)send_amount
[5] << 16) |
351 ((unsigned int)send_amount
[6] << 8) |
352 (unsigned int)send_amount
[7]);
354 snd_emu10k1_ptr_write(emu
, FXRT
, voice
,
355 snd_emu10k1_compose_send_routing(send_routing
));
357 /* Assumption that PT is already 0 so no harm overwriting */
358 snd_emu10k1_ptr_write(emu
, PTRX
, voice
, (send_amount
[0] << 8) | send_amount
[1]);
359 snd_emu10k1_ptr_write(emu
, DSL
, voice
, end_addr
| (send_amount
[3] << 24));
360 snd_emu10k1_ptr_write(emu
, PSST
, voice
, start_addr
| (send_amount
[2] << 24));
361 if (emu
->card_capabilities
->emu1010
)
362 pitch_target
= PITCH_48000
; /* Disable interpolators on emu1010 card */
364 pitch_target
= emu10k1_calc_pitch_target(runtime
->rate
);
366 snd_emu10k1_ptr_write(emu
, CCCA
, voice
, start_addr
|
367 emu10k1_select_interprom(pitch_target
) |
368 (w_16
? 0 : CCCA_8BITSELECT
));
370 snd_emu10k1_ptr_write(emu
, CCCA
, voice
, (start_addr
+ ccis
) |
371 emu10k1_select_interprom(pitch_target
) |
372 (w_16
? 0 : CCCA_8BITSELECT
));
373 /* Clear filter delay memory */
374 snd_emu10k1_ptr_write(emu
, Z1
, voice
, 0);
375 snd_emu10k1_ptr_write(emu
, Z2
, voice
, 0);
376 /* invalidate maps */
377 silent_page
= ((unsigned int)emu
->silent_page
.addr
<< 1) | MAP_PTI_MASK
;
378 snd_emu10k1_ptr_write(emu
, MAPA
, voice
, silent_page
);
379 snd_emu10k1_ptr_write(emu
, MAPB
, voice
, silent_page
);
380 /* modulation envelope */
381 snd_emu10k1_ptr_write(emu
, CVCF
, voice
, 0xffff);
382 snd_emu10k1_ptr_write(emu
, VTFT
, voice
, 0xffff);
383 snd_emu10k1_ptr_write(emu
, ATKHLDM
, voice
, 0);
384 snd_emu10k1_ptr_write(emu
, DCYSUSM
, voice
, 0x007f);
385 snd_emu10k1_ptr_write(emu
, LFOVAL1
, voice
, 0x8000);
386 snd_emu10k1_ptr_write(emu
, LFOVAL2
, voice
, 0x8000);
387 snd_emu10k1_ptr_write(emu
, FMMOD
, voice
, 0);
388 snd_emu10k1_ptr_write(emu
, TREMFRQ
, voice
, 0);
389 snd_emu10k1_ptr_write(emu
, FM2FRQ2
, voice
, 0);
390 snd_emu10k1_ptr_write(emu
, ENVVAL
, voice
, 0x8000);
391 /* volume envelope */
392 snd_emu10k1_ptr_write(emu
, ATKHLDV
, voice
, 0x7f7f);
393 snd_emu10k1_ptr_write(emu
, ENVVOL
, voice
, 0x0000);
394 /* filter envelope */
395 snd_emu10k1_ptr_write(emu
, PEFE_FILTERAMOUNT
, voice
, 0x7f);
397 snd_emu10k1_ptr_write(emu
, PEFE_PITCHAMOUNT
, voice
, 0);
399 spin_unlock_irqrestore(&emu
->reg_lock
, flags
);
402 static int snd_emu10k1_playback_hw_params(struct snd_pcm_substream
*substream
,
403 struct snd_pcm_hw_params
*hw_params
)
405 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
406 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
407 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
410 if ((err
= snd_emu10k1_pcm_channel_alloc(epcm
, params_channels(hw_params
))) < 0)
412 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
414 if (err
> 0) { /* change */
416 if (epcm
->memblk
!= NULL
)
417 snd_emu10k1_free_pages(emu
, epcm
->memblk
);
418 epcm
->memblk
= snd_emu10k1_alloc_pages(emu
, substream
);
419 epcm
->start_addr
= 0;
422 mapped
= ((struct snd_emu10k1_memblk
*)epcm
->memblk
)->mapped_page
;
425 epcm
->start_addr
= mapped
<< PAGE_SHIFT
;
430 static int snd_emu10k1_playback_hw_free(struct snd_pcm_substream
*substream
)
432 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
433 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
434 struct snd_emu10k1_pcm
*epcm
;
436 if (runtime
->private_data
== NULL
)
438 epcm
= runtime
->private_data
;
440 snd_emu10k1_voice_free(epcm
->emu
, epcm
->extra
);
443 if (epcm
->voices
[1]) {
444 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[1]);
445 epcm
->voices
[1] = NULL
;
447 if (epcm
->voices
[0]) {
448 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[0]);
449 epcm
->voices
[0] = NULL
;
452 snd_emu10k1_free_pages(emu
, epcm
->memblk
);
454 epcm
->start_addr
= 0;
456 snd_pcm_lib_free_pages(substream
);
460 static int snd_emu10k1_efx_playback_hw_free(struct snd_pcm_substream
*substream
)
462 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
463 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
464 struct snd_emu10k1_pcm
*epcm
;
467 if (runtime
->private_data
== NULL
)
469 epcm
= runtime
->private_data
;
471 snd_emu10k1_voice_free(epcm
->emu
, epcm
->extra
);
474 for (i
= 0; i
< NUM_EFX_PLAYBACK
; i
++) {
475 if (epcm
->voices
[i
]) {
476 snd_emu10k1_voice_free(epcm
->emu
, epcm
->voices
[i
]);
477 epcm
->voices
[i
] = NULL
;
481 snd_emu10k1_free_pages(emu
, epcm
->memblk
);
483 epcm
->start_addr
= 0;
485 snd_pcm_lib_free_pages(substream
);
489 static int snd_emu10k1_playback_prepare(struct snd_pcm_substream
*substream
)
491 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
492 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
493 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
494 unsigned int start_addr
, end_addr
;
496 start_addr
= epcm
->start_addr
;
497 end_addr
= snd_pcm_lib_period_bytes(substream
);
498 if (runtime
->channels
== 2) {
502 end_addr
+= start_addr
;
503 snd_emu10k1_pcm_init_voice(emu
, 1, 1, epcm
->extra
,
504 start_addr
, end_addr
, NULL
);
505 start_addr
= epcm
->start_addr
;
506 end_addr
= epcm
->start_addr
+ snd_pcm_lib_buffer_bytes(substream
);
507 snd_emu10k1_pcm_init_voice(emu
, 1, 0, epcm
->voices
[0],
508 start_addr
, end_addr
,
509 &emu
->pcm_mixer
[substream
->number
]);
511 snd_emu10k1_pcm_init_voice(emu
, 0, 0, epcm
->voices
[1],
512 start_addr
, end_addr
,
513 &emu
->pcm_mixer
[substream
->number
]);
517 static int snd_emu10k1_efx_playback_prepare(struct snd_pcm_substream
*substream
)
519 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
520 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
521 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
522 unsigned int start_addr
, end_addr
;
523 unsigned int channel_size
;
526 start_addr
= epcm
->start_addr
;
527 end_addr
= epcm
->start_addr
+ snd_pcm_lib_buffer_bytes(substream
);
530 * the kX driver leaves some space between voices
532 channel_size
= ( end_addr
- start_addr
) / NUM_EFX_PLAYBACK
;
534 snd_emu10k1_pcm_init_voice(emu
, 1, 1, epcm
->extra
,
535 start_addr
, start_addr
+ (channel_size
/ 2), NULL
);
537 /* only difference with the master voice is we use it for the pointer */
538 snd_emu10k1_pcm_init_voice(emu
, 1, 0, epcm
->voices
[0],
539 start_addr
, start_addr
+ channel_size
,
540 &emu
->efx_pcm_mixer
[0]);
542 start_addr
+= channel_size
;
543 for (i
= 1; i
< NUM_EFX_PLAYBACK
; i
++) {
544 snd_emu10k1_pcm_init_voice(emu
, 0, 0, epcm
->voices
[i
],
545 start_addr
, start_addr
+ channel_size
,
546 &emu
->efx_pcm_mixer
[i
]);
547 start_addr
+= channel_size
;
553 static struct snd_pcm_hardware snd_emu10k1_efx_playback
=
555 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_NONINTERLEAVED
|
556 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
557 SNDRV_PCM_INFO_RESUME
|
558 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_PAUSE
),
559 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
560 .rates
= SNDRV_PCM_RATE_48000
,
563 .channels_min
= NUM_EFX_PLAYBACK
,
564 .channels_max
= NUM_EFX_PLAYBACK
,
565 .buffer_bytes_max
= (64*1024),
566 .period_bytes_min
= 64,
567 .period_bytes_max
= (64*1024),
573 static int snd_emu10k1_capture_hw_params(struct snd_pcm_substream
*substream
,
574 struct snd_pcm_hw_params
*hw_params
)
576 return snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
));
579 static int snd_emu10k1_capture_hw_free(struct snd_pcm_substream
*substream
)
581 return snd_pcm_lib_free_pages(substream
);
584 static int snd_emu10k1_capture_prepare(struct snd_pcm_substream
*substream
)
586 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
587 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
588 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
591 /* zeroing the buffer size will stop capture */
592 snd_emu10k1_ptr_write(emu
, epcm
->capture_bs_reg
, 0, 0);
593 switch (epcm
->type
) {
594 case CAPTURE_AC97ADC
:
595 snd_emu10k1_ptr_write(emu
, ADCCR
, 0, 0);
599 snd_emu10k1_ptr_write(emu
, A_FXWC1
, 0, 0);
600 snd_emu10k1_ptr_write(emu
, A_FXWC2
, 0, 0);
602 snd_emu10k1_ptr_write(emu
, FXWC
, 0, 0);
607 snd_emu10k1_ptr_write(emu
, epcm
->capture_ba_reg
, 0, runtime
->dma_addr
);
608 epcm
->capture_bufsize
= snd_pcm_lib_buffer_bytes(substream
);
609 epcm
->capture_bs_val
= 0;
610 for (idx
= 0; idx
< 31; idx
++) {
611 if (capture_period_sizes
[idx
] == epcm
->capture_bufsize
) {
612 epcm
->capture_bs_val
= idx
+ 1;
616 if (epcm
->capture_bs_val
== 0) {
618 epcm
->capture_bs_val
++;
620 if (epcm
->type
== CAPTURE_AC97ADC
) {
621 epcm
->capture_cr_val
= emu
->audigy
? A_ADCCR_LCHANENABLE
: ADCCR_LCHANENABLE
;
622 if (runtime
->channels
> 1)
623 epcm
->capture_cr_val
|= emu
->audigy
? A_ADCCR_RCHANENABLE
: ADCCR_RCHANENABLE
;
624 epcm
->capture_cr_val
|= emu
->audigy
?
625 snd_emu10k1_audigy_capture_rate_reg(runtime
->rate
) :
626 snd_emu10k1_capture_rate_reg(runtime
->rate
);
631 static void snd_emu10k1_playback_invalidate_cache(struct snd_emu10k1
*emu
, int extra
, struct snd_emu10k1_voice
*evoice
)
633 struct snd_pcm_runtime
*runtime
;
634 unsigned int voice
, stereo
, i
, ccis
, cra
= 64, cs
, sample
;
638 runtime
= evoice
->epcm
->substream
->runtime
;
639 voice
= evoice
->number
;
640 stereo
= (!extra
&& runtime
->channels
== 2);
641 sample
= snd_pcm_format_width(runtime
->format
) == 16 ? 0 : 0x80808080;
642 ccis
= emu10k1_ccis(stereo
, sample
== 0);
643 /* set cs to 2 * number of cache registers beside the invalidated */
644 cs
= (sample
== 0) ? (32-ccis
) : (64-ccis
+1) >> 1;
645 if (cs
> 16) cs
= 16;
646 for (i
= 0; i
< cs
; i
++) {
647 snd_emu10k1_ptr_write(emu
, CD0
+ i
, voice
, sample
);
649 snd_emu10k1_ptr_write(emu
, CD0
+ i
, voice
+ 1, sample
);
653 snd_emu10k1_ptr_write(emu
, CCR_CACHEINVALIDSIZE
, voice
, 0);
654 snd_emu10k1_ptr_write(emu
, CCR_READADDRESS
, voice
, cra
);
656 snd_emu10k1_ptr_write(emu
, CCR_CACHEINVALIDSIZE
, voice
+ 1, 0);
657 snd_emu10k1_ptr_write(emu
, CCR_READADDRESS
, voice
+ 1, cra
);
660 snd_emu10k1_ptr_write(emu
, CCR_CACHEINVALIDSIZE
, voice
, ccis
);
662 snd_emu10k1_ptr_write(emu
, CCR_CACHEINVALIDSIZE
, voice
+1, ccis
);
666 static void snd_emu10k1_playback_prepare_voice(struct snd_emu10k1
*emu
, struct snd_emu10k1_voice
*evoice
,
667 int master
, int extra
,
668 struct snd_emu10k1_pcm_mixer
*mix
)
670 struct snd_pcm_substream
*substream
;
671 struct snd_pcm_runtime
*runtime
;
672 unsigned int attn
, vattn
;
673 unsigned int voice
, tmp
;
675 if (evoice
== NULL
) /* skip second voice for mono */
677 substream
= evoice
->epcm
->substream
;
678 runtime
= substream
->runtime
;
679 voice
= evoice
->number
;
681 attn
= extra
? 0 : 0x00ff;
682 tmp
= runtime
->channels
== 2 ? (master
? 1 : 2) : 0;
683 vattn
= mix
!= NULL
? (mix
->attn
[tmp
] << 16) : 0;
684 snd_emu10k1_ptr_write(emu
, IFATN
, voice
, attn
);
685 snd_emu10k1_ptr_write(emu
, VTFT
, voice
, vattn
| 0xffff);
686 snd_emu10k1_ptr_write(emu
, CVCF
, voice
, vattn
| 0xffff);
687 snd_emu10k1_ptr_write(emu
, DCYSUSV
, voice
, 0x7f7f);
688 snd_emu10k1_voice_clear_loop_stop(emu
, voice
);
691 static void snd_emu10k1_playback_trigger_voice(struct snd_emu10k1
*emu
, struct snd_emu10k1_voice
*evoice
, int master
, int extra
)
693 struct snd_pcm_substream
*substream
;
694 struct snd_pcm_runtime
*runtime
;
695 unsigned int voice
, pitch
, pitch_target
;
697 if (evoice
== NULL
) /* skip second voice for mono */
699 substream
= evoice
->epcm
->substream
;
700 runtime
= substream
->runtime
;
701 voice
= evoice
->number
;
703 pitch
= snd_emu10k1_rate_to_pitch(runtime
->rate
) >> 8;
704 if (emu
->card_capabilities
->emu1010
)
705 pitch_target
= PITCH_48000
; /* Disable interpolators on emu1010 card */
707 pitch_target
= emu10k1_calc_pitch_target(runtime
->rate
);
708 snd_emu10k1_ptr_write(emu
, PTRX_PITCHTARGET
, voice
, pitch_target
);
709 if (master
|| evoice
->epcm
->type
== PLAYBACK_EFX
)
710 snd_emu10k1_ptr_write(emu
, CPF_CURRENTPITCH
, voice
, pitch_target
);
711 snd_emu10k1_ptr_write(emu
, IP
, voice
, pitch
);
713 snd_emu10k1_voice_intr_enable(emu
, voice
);
716 static void snd_emu10k1_playback_stop_voice(struct snd_emu10k1
*emu
, struct snd_emu10k1_voice
*evoice
)
722 voice
= evoice
->number
;
723 snd_emu10k1_voice_intr_disable(emu
, voice
);
724 snd_emu10k1_ptr_write(emu
, PTRX_PITCHTARGET
, voice
, 0);
725 snd_emu10k1_ptr_write(emu
, CPF_CURRENTPITCH
, voice
, 0);
726 snd_emu10k1_ptr_write(emu
, IFATN
, voice
, 0xffff);
727 snd_emu10k1_ptr_write(emu
, VTFT
, voice
, 0xffff);
728 snd_emu10k1_ptr_write(emu
, CVCF
, voice
, 0xffff);
729 snd_emu10k1_ptr_write(emu
, IP
, voice
, 0);
732 static int snd_emu10k1_playback_trigger(struct snd_pcm_substream
*substream
,
735 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
736 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
737 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
738 struct snd_emu10k1_pcm_mixer
*mix
;
741 /* printk("trigger - emu10k1 = 0x%x, cmd = %i, pointer = %i\n", (int)emu, cmd, substream->ops->pointer(substream)); */
742 spin_lock(&emu
->reg_lock
);
744 case SNDRV_PCM_TRIGGER_START
:
745 snd_emu10k1_playback_invalidate_cache(emu
, 1, epcm
->extra
); /* do we need this? */
746 snd_emu10k1_playback_invalidate_cache(emu
, 0, epcm
->voices
[0]);
748 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
749 case SNDRV_PCM_TRIGGER_RESUME
:
750 mix
= &emu
->pcm_mixer
[substream
->number
];
751 snd_emu10k1_playback_prepare_voice(emu
, epcm
->voices
[0], 1, 0, mix
);
752 snd_emu10k1_playback_prepare_voice(emu
, epcm
->voices
[1], 0, 0, mix
);
753 snd_emu10k1_playback_prepare_voice(emu
, epcm
->extra
, 1, 1, NULL
);
754 snd_emu10k1_playback_trigger_voice(emu
, epcm
->voices
[0], 1, 0);
755 snd_emu10k1_playback_trigger_voice(emu
, epcm
->voices
[1], 0, 0);
756 snd_emu10k1_playback_trigger_voice(emu
, epcm
->extra
, 1, 1);
759 case SNDRV_PCM_TRIGGER_STOP
:
760 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
761 case SNDRV_PCM_TRIGGER_SUSPEND
:
763 snd_emu10k1_playback_stop_voice(emu
, epcm
->voices
[0]);
764 snd_emu10k1_playback_stop_voice(emu
, epcm
->voices
[1]);
765 snd_emu10k1_playback_stop_voice(emu
, epcm
->extra
);
771 spin_unlock(&emu
->reg_lock
);
775 static int snd_emu10k1_capture_trigger(struct snd_pcm_substream
*substream
,
778 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
779 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
780 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
783 spin_lock(&emu
->reg_lock
);
785 case SNDRV_PCM_TRIGGER_START
:
786 case SNDRV_PCM_TRIGGER_RESUME
:
787 /* hmm this should cause full and half full interrupt to be raised? */
788 outl(epcm
->capture_ipr
, emu
->port
+ IPR
);
789 snd_emu10k1_intr_enable(emu
, epcm
->capture_inte
);
790 /* printk("adccr = 0x%x, adcbs = 0x%x\n", epcm->adccr, epcm->adcbs); */
791 switch (epcm
->type
) {
792 case CAPTURE_AC97ADC
:
793 snd_emu10k1_ptr_write(emu
, ADCCR
, 0, epcm
->capture_cr_val
);
797 snd_emu10k1_ptr_write(emu
, A_FXWC1
, 0, epcm
->capture_cr_val
);
798 snd_emu10k1_ptr_write(emu
, A_FXWC2
, 0, epcm
->capture_cr_val2
);
799 snd_printdd("cr_val=0x%x, cr_val2=0x%x\n", epcm
->capture_cr_val
, epcm
->capture_cr_val2
);
801 snd_emu10k1_ptr_write(emu
, FXWC
, 0, epcm
->capture_cr_val
);
806 snd_emu10k1_ptr_write(emu
, epcm
->capture_bs_reg
, 0, epcm
->capture_bs_val
);
810 case SNDRV_PCM_TRIGGER_STOP
:
811 case SNDRV_PCM_TRIGGER_SUSPEND
:
813 snd_emu10k1_intr_disable(emu
, epcm
->capture_inte
);
814 outl(epcm
->capture_ipr
, emu
->port
+ IPR
);
815 snd_emu10k1_ptr_write(emu
, epcm
->capture_bs_reg
, 0, 0);
816 switch (epcm
->type
) {
817 case CAPTURE_AC97ADC
:
818 snd_emu10k1_ptr_write(emu
, ADCCR
, 0, 0);
822 snd_emu10k1_ptr_write(emu
, A_FXWC1
, 0, 0);
823 snd_emu10k1_ptr_write(emu
, A_FXWC2
, 0, 0);
825 snd_emu10k1_ptr_write(emu
, FXWC
, 0, 0);
834 spin_unlock(&emu
->reg_lock
);
838 static snd_pcm_uframes_t
snd_emu10k1_playback_pointer(struct snd_pcm_substream
*substream
)
840 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
841 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
842 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
847 ptr
= snd_emu10k1_ptr_read(emu
, CCCA
, epcm
->voices
[0]->number
) & 0x00ffffff;
848 #if 0 /* Perex's code */
849 ptr
+= runtime
->buffer_size
;
850 ptr
-= epcm
->ccca_start_addr
;
851 ptr
%= runtime
->buffer_size
;
852 #else /* EMU10K1 Open Source code from Creative */
853 if (ptr
< epcm
->ccca_start_addr
)
854 ptr
+= runtime
->buffer_size
- epcm
->ccca_start_addr
;
856 ptr
-= epcm
->ccca_start_addr
;
857 if (ptr
>= runtime
->buffer_size
)
858 ptr
-= runtime
->buffer_size
;
861 /* printk("ptr = 0x%x, buffer_size = 0x%x, period_size = 0x%x\n", ptr, runtime->buffer_size, runtime->period_size); */
866 static int snd_emu10k1_efx_playback_trigger(struct snd_pcm_substream
*substream
,
869 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
870 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
871 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
875 spin_lock(&emu
->reg_lock
);
877 case SNDRV_PCM_TRIGGER_START
:
879 for (i
= 0; i
< NUM_EFX_PLAYBACK
; i
++) {
880 snd_emu10k1_playback_invalidate_cache(emu
, 0, epcm
->voices
[i
]);
882 snd_emu10k1_playback_invalidate_cache(emu
, 1, epcm
->extra
);
885 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
886 case SNDRV_PCM_TRIGGER_RESUME
:
887 snd_emu10k1_playback_prepare_voice(emu
, epcm
->extra
, 1, 1, NULL
);
888 snd_emu10k1_playback_prepare_voice(emu
, epcm
->voices
[0], 0, 0,
889 &emu
->efx_pcm_mixer
[0]);
890 for (i
= 1; i
< NUM_EFX_PLAYBACK
; i
++)
891 snd_emu10k1_playback_prepare_voice(emu
, epcm
->voices
[i
], 0, 0,
892 &emu
->efx_pcm_mixer
[i
]);
893 snd_emu10k1_playback_trigger_voice(emu
, epcm
->voices
[0], 0, 0);
894 snd_emu10k1_playback_trigger_voice(emu
, epcm
->extra
, 1, 1);
895 for (i
= 1; i
< NUM_EFX_PLAYBACK
; i
++)
896 snd_emu10k1_playback_trigger_voice(emu
, epcm
->voices
[i
], 0, 0);
899 case SNDRV_PCM_TRIGGER_SUSPEND
:
900 case SNDRV_PCM_TRIGGER_STOP
:
901 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
903 for (i
= 0; i
< NUM_EFX_PLAYBACK
; i
++) {
904 snd_emu10k1_playback_stop_voice(emu
, epcm
->voices
[i
]);
906 snd_emu10k1_playback_stop_voice(emu
, epcm
->extra
);
912 spin_unlock(&emu
->reg_lock
);
917 static snd_pcm_uframes_t
snd_emu10k1_capture_pointer(struct snd_pcm_substream
*substream
)
919 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
920 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
921 struct snd_emu10k1_pcm
*epcm
= runtime
->private_data
;
926 if (epcm
->first_ptr
) {
927 udelay(50); /* hack, it takes awhile until capture is started */
930 ptr
= snd_emu10k1_ptr_read(emu
, epcm
->capture_idx_reg
, 0) & 0x0000ffff;
931 return bytes_to_frames(runtime
, ptr
);
935 * Playback support device description
938 static struct snd_pcm_hardware snd_emu10k1_playback
=
940 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
941 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
942 SNDRV_PCM_INFO_RESUME
|
943 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_PAUSE
),
944 .formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
,
945 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_96000
,
950 .buffer_bytes_max
= (128*1024),
951 .period_bytes_min
= 64,
952 .period_bytes_max
= (128*1024),
959 * Capture support device description
962 static struct snd_pcm_hardware snd_emu10k1_capture
=
964 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
965 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
966 SNDRV_PCM_INFO_RESUME
|
967 SNDRV_PCM_INFO_MMAP_VALID
),
968 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
969 .rates
= SNDRV_PCM_RATE_8000_48000
,
974 .buffer_bytes_max
= (64*1024),
975 .period_bytes_min
= 384,
976 .period_bytes_max
= (64*1024),
982 static struct snd_pcm_hardware snd_emu10k1_capture_efx
=
984 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
985 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
986 SNDRV_PCM_INFO_RESUME
|
987 SNDRV_PCM_INFO_MMAP_VALID
),
988 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
989 .rates
= SNDRV_PCM_RATE_44100
| SNDRV_PCM_RATE_48000
|
990 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
991 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
,
996 .buffer_bytes_max
= (64*1024),
997 .period_bytes_min
= 384,
998 .period_bytes_max
= (64*1024),
1008 static void snd_emu10k1_pcm_mixer_notify1(struct snd_emu10k1
*emu
, struct snd_kcontrol
*kctl
, int idx
, int activate
)
1010 struct snd_ctl_elem_id id
;
1015 kctl
->vd
[idx
].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1017 kctl
->vd
[idx
].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1018 snd_ctl_notify(emu
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
1019 SNDRV_CTL_EVENT_MASK_INFO
,
1020 snd_ctl_build_ioff(&id
, kctl
, idx
));
1023 static void snd_emu10k1_pcm_mixer_notify(struct snd_emu10k1
*emu
, int idx
, int activate
)
1025 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_send_routing
, idx
, activate
);
1026 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_send_volume
, idx
, activate
);
1027 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_attn
, idx
, activate
);
1030 static void snd_emu10k1_pcm_efx_mixer_notify(struct snd_emu10k1
*emu
, int idx
, int activate
)
1032 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_efx_send_routing
, idx
, activate
);
1033 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_efx_send_volume
, idx
, activate
);
1034 snd_emu10k1_pcm_mixer_notify1(emu
, emu
->ctl_efx_attn
, idx
, activate
);
1037 static void snd_emu10k1_pcm_free_substream(struct snd_pcm_runtime
*runtime
)
1039 kfree(runtime
->private_data
);
1042 static int snd_emu10k1_efx_playback_close(struct snd_pcm_substream
*substream
)
1044 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1045 struct snd_emu10k1_pcm_mixer
*mix
;
1048 for (i
= 0; i
< NUM_EFX_PLAYBACK
; i
++) {
1049 mix
= &emu
->efx_pcm_mixer
[i
];
1051 snd_emu10k1_pcm_efx_mixer_notify(emu
, i
, 0);
1056 static int snd_emu10k1_efx_playback_open(struct snd_pcm_substream
*substream
)
1058 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1059 struct snd_emu10k1_pcm
*epcm
;
1060 struct snd_emu10k1_pcm_mixer
*mix
;
1061 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1064 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
1068 epcm
->type
= PLAYBACK_EFX
;
1069 epcm
->substream
= substream
;
1071 emu
->pcm_playback_efx_substream
= substream
;
1073 runtime
->private_data
= epcm
;
1074 runtime
->private_free
= snd_emu10k1_pcm_free_substream
;
1075 runtime
->hw
= snd_emu10k1_efx_playback
;
1077 for (i
= 0; i
< NUM_EFX_PLAYBACK
; i
++) {
1078 mix
= &emu
->efx_pcm_mixer
[i
];
1079 mix
->send_routing
[0][0] = i
;
1080 memset(&mix
->send_volume
, 0, sizeof(mix
->send_volume
));
1081 mix
->send_volume
[0][0] = 255;
1082 mix
->attn
[0] = 0xffff;
1084 snd_emu10k1_pcm_efx_mixer_notify(emu
, i
, 1);
1089 static int snd_emu10k1_playback_open(struct snd_pcm_substream
*substream
)
1091 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1092 struct snd_emu10k1_pcm
*epcm
;
1093 struct snd_emu10k1_pcm_mixer
*mix
;
1094 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1097 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
1101 epcm
->type
= PLAYBACK_EMUVOICE
;
1102 epcm
->substream
= substream
;
1103 runtime
->private_data
= epcm
;
1104 runtime
->private_free
= snd_emu10k1_pcm_free_substream
;
1105 runtime
->hw
= snd_emu10k1_playback
;
1106 if ((err
= snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
)) < 0) {
1110 if ((err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 256, UINT_MAX
)) < 0) {
1114 mix
= &emu
->pcm_mixer
[substream
->number
];
1115 for (i
= 0; i
< 4; i
++)
1116 mix
->send_routing
[0][i
] = mix
->send_routing
[1][i
] = mix
->send_routing
[2][i
] = i
;
1117 memset(&mix
->send_volume
, 0, sizeof(mix
->send_volume
));
1118 mix
->send_volume
[0][0] = mix
->send_volume
[0][1] =
1119 mix
->send_volume
[1][0] = mix
->send_volume
[2][1] = 255;
1120 mix
->attn
[0] = mix
->attn
[1] = mix
->attn
[2] = 0xffff;
1122 snd_emu10k1_pcm_mixer_notify(emu
, substream
->number
, 1);
1126 static int snd_emu10k1_playback_close(struct snd_pcm_substream
*substream
)
1128 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1129 struct snd_emu10k1_pcm_mixer
*mix
= &emu
->pcm_mixer
[substream
->number
];
1132 snd_emu10k1_pcm_mixer_notify(emu
, substream
->number
, 0);
1136 static int snd_emu10k1_capture_open(struct snd_pcm_substream
*substream
)
1138 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1139 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1140 struct snd_emu10k1_pcm
*epcm
;
1142 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
1146 epcm
->type
= CAPTURE_AC97ADC
;
1147 epcm
->substream
= substream
;
1148 epcm
->capture_ipr
= IPR_ADCBUFFULL
|IPR_ADCBUFHALFFULL
;
1149 epcm
->capture_inte
= INTE_ADCBUFENABLE
;
1150 epcm
->capture_ba_reg
= ADCBA
;
1151 epcm
->capture_bs_reg
= ADCBS
;
1152 epcm
->capture_idx_reg
= emu
->audigy
? A_ADCIDX
: ADCIDX
;
1153 runtime
->private_data
= epcm
;
1154 runtime
->private_free
= snd_emu10k1_pcm_free_substream
;
1155 runtime
->hw
= snd_emu10k1_capture
;
1156 emu
->capture_interrupt
= snd_emu10k1_pcm_ac97adc_interrupt
;
1157 emu
->pcm_capture_substream
= substream
;
1158 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, &hw_constraints_capture_period_sizes
);
1159 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hw_constraints_capture_rates
);
1163 static int snd_emu10k1_capture_close(struct snd_pcm_substream
*substream
)
1165 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1167 emu
->capture_interrupt
= NULL
;
1168 emu
->pcm_capture_substream
= NULL
;
1172 static int snd_emu10k1_capture_mic_open(struct snd_pcm_substream
*substream
)
1174 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1175 struct snd_emu10k1_pcm
*epcm
;
1176 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1178 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
1182 epcm
->type
= CAPTURE_AC97MIC
;
1183 epcm
->substream
= substream
;
1184 epcm
->capture_ipr
= IPR_MICBUFFULL
|IPR_MICBUFHALFFULL
;
1185 epcm
->capture_inte
= INTE_MICBUFENABLE
;
1186 epcm
->capture_ba_reg
= MICBA
;
1187 epcm
->capture_bs_reg
= MICBS
;
1188 epcm
->capture_idx_reg
= emu
->audigy
? A_MICIDX
: MICIDX
;
1189 substream
->runtime
->private_data
= epcm
;
1190 substream
->runtime
->private_free
= snd_emu10k1_pcm_free_substream
;
1191 runtime
->hw
= snd_emu10k1_capture
;
1192 runtime
->hw
.rates
= SNDRV_PCM_RATE_8000
;
1193 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 8000;
1194 runtime
->hw
.channels_min
= 1;
1195 emu
->capture_mic_interrupt
= snd_emu10k1_pcm_ac97mic_interrupt
;
1196 emu
->pcm_capture_mic_substream
= substream
;
1197 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, &hw_constraints_capture_period_sizes
);
1201 static int snd_emu10k1_capture_mic_close(struct snd_pcm_substream
*substream
)
1203 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1205 emu
->capture_interrupt
= NULL
;
1206 emu
->pcm_capture_mic_substream
= NULL
;
1210 static int snd_emu10k1_capture_efx_open(struct snd_pcm_substream
*substream
)
1212 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1213 struct snd_emu10k1_pcm
*epcm
;
1214 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1215 int nefx
= emu
->audigy
? 64 : 32;
1218 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
1222 epcm
->type
= CAPTURE_EFX
;
1223 epcm
->substream
= substream
;
1224 epcm
->capture_ipr
= IPR_EFXBUFFULL
|IPR_EFXBUFHALFFULL
;
1225 epcm
->capture_inte
= INTE_EFXBUFENABLE
;
1226 epcm
->capture_ba_reg
= FXBA
;
1227 epcm
->capture_bs_reg
= FXBS
;
1228 epcm
->capture_idx_reg
= FXIDX
;
1229 substream
->runtime
->private_data
= epcm
;
1230 substream
->runtime
->private_free
= snd_emu10k1_pcm_free_substream
;
1231 runtime
->hw
= snd_emu10k1_capture_efx
;
1232 runtime
->hw
.rates
= SNDRV_PCM_RATE_48000
;
1233 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 48000;
1234 spin_lock_irq(&emu
->reg_lock
);
1235 if (emu
->card_capabilities
->emu1010
) {
1237 * SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE
1238 * SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
1239 * SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
1240 * SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000
1242 * rate_max = 192000,
1245 * Need to add mixer control to fix sample rate
1247 * There are 16 mono channels of 16bits each.
1248 * 24bit Audio uses 2x channels over 16bit
1249 * 96kHz uses 2x channels over 48kHz
1250 * 192kHz uses 4x channels over 48kHz
1251 * So, for 48kHz 24bit, one has 8 channels
1252 * for 96kHz 24bit, one has 4 channels
1253 * for 192kHz 24bit, one has 2 channels
1256 switch (emu
->emu1010
.internal_clock
) {
1259 runtime
->hw
.rates
= SNDRV_PCM_RATE_44100
;
1260 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 44100;
1261 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= 8;
1265 runtime
->hw
.rates
= SNDRV_PCM_RATE_48000
;
1266 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 48000;
1267 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= 8;
1273 runtime
->hw
.rates
= SNDRV_PCM_RATE_96000
;
1274 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 96000;
1275 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= 4;
1279 runtime
->hw
.rates
= SNDRV_PCM_RATE_192000
;
1280 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= 192000;
1281 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= 2;
1283 runtime
->hw
.formats
= SNDRV_PCM_FMTBIT_S32_LE
;
1284 /* efx_voices_mask[0] is expected to be zero
1285 * efx_voices_mask[1] is expected to have 16bits set
1288 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= 0;
1289 for (idx
= 0; idx
< nefx
; idx
++) {
1290 if (emu
->efx_voices_mask
[idx
/32] & (1 << (idx
%32))) {
1291 runtime
->hw
.channels_min
++;
1292 runtime
->hw
.channels_max
++;
1296 epcm
->capture_cr_val
= emu
->efx_voices_mask
[0];
1297 epcm
->capture_cr_val2
= emu
->efx_voices_mask
[1];
1298 spin_unlock_irq(&emu
->reg_lock
);
1299 emu
->capture_efx_interrupt
= snd_emu10k1_pcm_efx_interrupt
;
1300 emu
->pcm_capture_efx_substream
= substream
;
1301 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, &hw_constraints_capture_period_sizes
);
1305 static int snd_emu10k1_capture_efx_close(struct snd_pcm_substream
*substream
)
1307 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1309 emu
->capture_interrupt
= NULL
;
1310 emu
->pcm_capture_efx_substream
= NULL
;
1314 static struct snd_pcm_ops snd_emu10k1_playback_ops
= {
1315 .open
= snd_emu10k1_playback_open
,
1316 .close
= snd_emu10k1_playback_close
,
1317 .ioctl
= snd_pcm_lib_ioctl
,
1318 .hw_params
= snd_emu10k1_playback_hw_params
,
1319 .hw_free
= snd_emu10k1_playback_hw_free
,
1320 .prepare
= snd_emu10k1_playback_prepare
,
1321 .trigger
= snd_emu10k1_playback_trigger
,
1322 .pointer
= snd_emu10k1_playback_pointer
,
1323 .page
= snd_pcm_sgbuf_ops_page
,
1326 static struct snd_pcm_ops snd_emu10k1_capture_ops
= {
1327 .open
= snd_emu10k1_capture_open
,
1328 .close
= snd_emu10k1_capture_close
,
1329 .ioctl
= snd_pcm_lib_ioctl
,
1330 .hw_params
= snd_emu10k1_capture_hw_params
,
1331 .hw_free
= snd_emu10k1_capture_hw_free
,
1332 .prepare
= snd_emu10k1_capture_prepare
,
1333 .trigger
= snd_emu10k1_capture_trigger
,
1334 .pointer
= snd_emu10k1_capture_pointer
,
1338 static struct snd_pcm_ops snd_emu10k1_efx_playback_ops
= {
1339 .open
= snd_emu10k1_efx_playback_open
,
1340 .close
= snd_emu10k1_efx_playback_close
,
1341 .ioctl
= snd_pcm_lib_ioctl
,
1342 .hw_params
= snd_emu10k1_playback_hw_params
,
1343 .hw_free
= snd_emu10k1_efx_playback_hw_free
,
1344 .prepare
= snd_emu10k1_efx_playback_prepare
,
1345 .trigger
= snd_emu10k1_efx_playback_trigger
,
1346 .pointer
= snd_emu10k1_efx_playback_pointer
,
1347 .page
= snd_pcm_sgbuf_ops_page
,
1350 int __devinit
snd_emu10k1_pcm(struct snd_emu10k1
* emu
, int device
, struct snd_pcm
** rpcm
)
1352 struct snd_pcm
*pcm
;
1353 struct snd_pcm_substream
*substream
;
1359 if ((err
= snd_pcm_new(emu
->card
, "emu10k1", device
, 32, 1, &pcm
)) < 0)
1362 pcm
->private_data
= emu
;
1364 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_emu10k1_playback_ops
);
1365 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_emu10k1_capture_ops
);
1367 pcm
->info_flags
= 0;
1368 pcm
->dev_subclass
= SNDRV_PCM_SUBCLASS_GENERIC_MIX
;
1369 strcpy(pcm
->name
, "ADC Capture/Standard PCM Playback");
1372 for (substream
= pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
; substream
; substream
= substream
->next
)
1373 if ((err
= snd_pcm_lib_preallocate_pages(substream
, SNDRV_DMA_TYPE_DEV_SG
, snd_dma_pci_data(emu
->pci
), 64*1024, 64*1024)) < 0)
1376 for (substream
= pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
; substream
; substream
= substream
->next
)
1377 snd_pcm_lib_preallocate_pages(substream
, SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(emu
->pci
), 64*1024, 64*1024);
1385 int __devinit
snd_emu10k1_pcm_multi(struct snd_emu10k1
* emu
, int device
, struct snd_pcm
** rpcm
)
1387 struct snd_pcm
*pcm
;
1388 struct snd_pcm_substream
*substream
;
1394 if ((err
= snd_pcm_new(emu
->card
, "emu10k1", device
, 1, 0, &pcm
)) < 0)
1397 pcm
->private_data
= emu
;
1399 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_emu10k1_efx_playback_ops
);
1401 pcm
->info_flags
= 0;
1402 pcm
->dev_subclass
= SNDRV_PCM_SUBCLASS_GENERIC_MIX
;
1403 strcpy(pcm
->name
, "Multichannel Playback");
1404 emu
->pcm_multi
= pcm
;
1406 for (substream
= pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
; substream
; substream
= substream
->next
)
1407 if ((err
= snd_pcm_lib_preallocate_pages(substream
, SNDRV_DMA_TYPE_DEV_SG
, snd_dma_pci_data(emu
->pci
), 64*1024, 64*1024)) < 0)
1417 static struct snd_pcm_ops snd_emu10k1_capture_mic_ops
= {
1418 .open
= snd_emu10k1_capture_mic_open
,
1419 .close
= snd_emu10k1_capture_mic_close
,
1420 .ioctl
= snd_pcm_lib_ioctl
,
1421 .hw_params
= snd_emu10k1_capture_hw_params
,
1422 .hw_free
= snd_emu10k1_capture_hw_free
,
1423 .prepare
= snd_emu10k1_capture_prepare
,
1424 .trigger
= snd_emu10k1_capture_trigger
,
1425 .pointer
= snd_emu10k1_capture_pointer
,
1428 int __devinit
snd_emu10k1_pcm_mic(struct snd_emu10k1
* emu
, int device
, struct snd_pcm
** rpcm
)
1430 struct snd_pcm
*pcm
;
1436 if ((err
= snd_pcm_new(emu
->card
, "emu10k1 mic", device
, 0, 1, &pcm
)) < 0)
1439 pcm
->private_data
= emu
;
1441 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_emu10k1_capture_mic_ops
);
1443 pcm
->info_flags
= 0;
1444 strcpy(pcm
->name
, "Mic Capture");
1447 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(emu
->pci
), 64*1024, 64*1024);
1454 static int snd_emu10k1_pcm_efx_voices_mask_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1456 struct snd_emu10k1
*emu
= snd_kcontrol_chip(kcontrol
);
1457 int nefx
= emu
->audigy
? 64 : 32;
1458 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1459 uinfo
->count
= nefx
;
1460 uinfo
->value
.integer
.min
= 0;
1461 uinfo
->value
.integer
.max
= 1;
1465 static int snd_emu10k1_pcm_efx_voices_mask_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1467 struct snd_emu10k1
*emu
= snd_kcontrol_chip(kcontrol
);
1468 int nefx
= emu
->audigy
? 64 : 32;
1471 spin_lock_irq(&emu
->reg_lock
);
1472 for (idx
= 0; idx
< nefx
; idx
++)
1473 ucontrol
->value
.integer
.value
[idx
] = (emu
->efx_voices_mask
[idx
/ 32] & (1 << (idx
% 32))) ? 1 : 0;
1474 spin_unlock_irq(&emu
->reg_lock
);
1478 static int snd_emu10k1_pcm_efx_voices_mask_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1480 struct snd_emu10k1
*emu
= snd_kcontrol_chip(kcontrol
);
1481 unsigned int nval
[2], bits
;
1482 int nefx
= emu
->audigy
? 64 : 32;
1483 int nefxb
= emu
->audigy
? 7 : 6;
1486 nval
[0] = nval
[1] = 0;
1487 for (idx
= 0, bits
= 0; idx
< nefx
; idx
++)
1488 if (ucontrol
->value
.integer
.value
[idx
]) {
1489 nval
[idx
/ 32] |= 1 << (idx
% 32);
1493 for (idx
= 0; idx
< nefxb
; idx
++)
1494 if (1 << idx
== bits
)
1500 spin_lock_irq(&emu
->reg_lock
);
1501 change
= (nval
[0] != emu
->efx_voices_mask
[0]) ||
1502 (nval
[1] != emu
->efx_voices_mask
[1]);
1503 emu
->efx_voices_mask
[0] = nval
[0];
1504 emu
->efx_voices_mask
[1] = nval
[1];
1505 spin_unlock_irq(&emu
->reg_lock
);
1509 static struct snd_kcontrol_new snd_emu10k1_pcm_efx_voices_mask
= {
1510 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1511 .name
= "Captured FX8010 Outputs",
1512 .info
= snd_emu10k1_pcm_efx_voices_mask_info
,
1513 .get
= snd_emu10k1_pcm_efx_voices_mask_get
,
1514 .put
= snd_emu10k1_pcm_efx_voices_mask_put
1517 static struct snd_pcm_ops snd_emu10k1_capture_efx_ops
= {
1518 .open
= snd_emu10k1_capture_efx_open
,
1519 .close
= snd_emu10k1_capture_efx_close
,
1520 .ioctl
= snd_pcm_lib_ioctl
,
1521 .hw_params
= snd_emu10k1_capture_hw_params
,
1522 .hw_free
= snd_emu10k1_capture_hw_free
,
1523 .prepare
= snd_emu10k1_capture_prepare
,
1524 .trigger
= snd_emu10k1_capture_trigger
,
1525 .pointer
= snd_emu10k1_capture_pointer
,
1531 #define INITIAL_TRAM_SHIFT 14
1532 #define INITIAL_TRAM_POS(size) ((((size) / 2) - INITIAL_TRAM_SHIFT) - 1)
1534 static void snd_emu10k1_fx8010_playback_irq(struct snd_emu10k1
*emu
, void *private_data
)
1536 struct snd_pcm_substream
*substream
= private_data
;
1537 snd_pcm_period_elapsed(substream
);
1540 static void snd_emu10k1_fx8010_playback_tram_poke1(unsigned short *dst_left
,
1541 unsigned short *dst_right
,
1542 unsigned short *src
,
1544 unsigned int tram_shift
)
1546 /* printk("tram_poke1: dst_left = 0x%p, dst_right = 0x%p, src = 0x%p, count = 0x%x\n", dst_left, dst_right, src, count); */
1547 if ((tram_shift
& 1) == 0) {
1549 *dst_left
-- = *src
++;
1550 *dst_right
-- = *src
++;
1554 *dst_right
-- = *src
++;
1555 *dst_left
-- = *src
++;
1560 static void fx8010_pb_trans_copy(struct snd_pcm_substream
*substream
,
1561 struct snd_pcm_indirect
*rec
, size_t bytes
)
1563 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1564 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1565 unsigned int tram_size
= pcm
->buffer_size
;
1566 unsigned short *src
= (unsigned short *)(substream
->runtime
->dma_area
+ rec
->sw_data
);
1567 unsigned int frames
= bytes
>> 2, count
;
1568 unsigned int tram_pos
= pcm
->tram_pos
;
1569 unsigned int tram_shift
= pcm
->tram_shift
;
1571 while (frames
> tram_pos
) {
1572 count
= tram_pos
+ 1;
1573 snd_emu10k1_fx8010_playback_tram_poke1((unsigned short *)emu
->fx8010
.etram_pages
.area
+ tram_pos
,
1574 (unsigned short *)emu
->fx8010
.etram_pages
.area
+ tram_pos
+ tram_size
/ 2,
1575 src
, count
, tram_shift
);
1578 tram_pos
= (tram_size
/ 2) - 1;
1581 snd_emu10k1_fx8010_playback_tram_poke1((unsigned short *)emu
->fx8010
.etram_pages
.area
+ tram_pos
,
1582 (unsigned short *)emu
->fx8010
.etram_pages
.area
+ tram_pos
+ tram_size
/ 2,
1583 src
, frames
, tram_shift
);
1585 pcm
->tram_pos
= tram_pos
;
1586 pcm
->tram_shift
= tram_shift
;
1589 static int snd_emu10k1_fx8010_playback_transfer(struct snd_pcm_substream
*substream
)
1591 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1592 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1594 snd_pcm_indirect_playback_transfer(substream
, &pcm
->pcm_rec
, fx8010_pb_trans_copy
);
1598 static int snd_emu10k1_fx8010_playback_hw_params(struct snd_pcm_substream
*substream
,
1599 struct snd_pcm_hw_params
*hw_params
)
1601 return snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
));
1604 static int snd_emu10k1_fx8010_playback_hw_free(struct snd_pcm_substream
*substream
)
1606 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1607 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1610 for (i
= 0; i
< pcm
->channels
; i
++)
1611 snd_emu10k1_ptr_write(emu
, TANKMEMADDRREGBASE
+ 0x80 + pcm
->etram
[i
], 0, 0);
1612 snd_pcm_lib_free_pages(substream
);
1616 static int snd_emu10k1_fx8010_playback_prepare(struct snd_pcm_substream
*substream
)
1618 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1619 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1620 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1623 /* printk("prepare: etram_pages = 0x%p, dma_area = 0x%x, buffer_size = 0x%x (0x%x)\n", emu->fx8010.etram_pages, runtime->dma_area, runtime->buffer_size, runtime->buffer_size << 2); */
1624 memset(&pcm
->pcm_rec
, 0, sizeof(pcm
->pcm_rec
));
1625 pcm
->pcm_rec
.hw_buffer_size
= pcm
->buffer_size
* 2; /* byte size */
1626 pcm
->pcm_rec
.sw_buffer_size
= snd_pcm_lib_buffer_bytes(substream
);
1627 pcm
->tram_pos
= INITIAL_TRAM_POS(pcm
->buffer_size
);
1628 pcm
->tram_shift
= 0;
1629 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_running
, 0, 0); /* reset */
1630 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_trigger
, 0, 0); /* reset */
1631 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_size
, 0, runtime
->buffer_size
);
1632 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_ptr
, 0, 0); /* reset ptr number */
1633 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_count
, 0, runtime
->period_size
);
1634 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_tmpcount
, 0, runtime
->period_size
);
1635 for (i
= 0; i
< pcm
->channels
; i
++)
1636 snd_emu10k1_ptr_write(emu
, TANKMEMADDRREGBASE
+ 0x80 + pcm
->etram
[i
], 0, (TANKMEMADDRREG_READ
|TANKMEMADDRREG_ALIGN
) + i
* (runtime
->buffer_size
/ pcm
->channels
));
1640 static int snd_emu10k1_fx8010_playback_trigger(struct snd_pcm_substream
*substream
, int cmd
)
1642 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1643 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1646 spin_lock(&emu
->reg_lock
);
1648 case SNDRV_PCM_TRIGGER_START
:
1650 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1651 case SNDRV_PCM_TRIGGER_RESUME
:
1652 #ifdef EMU10K1_SET_AC3_IEC958
1655 for (i
= 0; i
< 3; i
++) {
1657 bits
= SPCS_CLKACCY_1000PPM
| SPCS_SAMPLERATE_48
|
1658 SPCS_CHANNELNUM_LEFT
| SPCS_SOURCENUM_UNSPEC
| SPCS_GENERATIONSTATUS
|
1659 0x00001200 | SPCS_EMPHASIS_NONE
| SPCS_COPYRIGHT
| SPCS_NOTAUDIODATA
;
1660 snd_emu10k1_ptr_write(emu
, SPCS0
+ i
, 0, bits
);
1664 result
= snd_emu10k1_fx8010_register_irq_handler(emu
, snd_emu10k1_fx8010_playback_irq
, pcm
->gpr_running
, substream
, &pcm
->irq
);
1667 snd_emu10k1_fx8010_playback_transfer(substream
); /* roll the ball */
1668 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_trigger
, 0, 1);
1670 case SNDRV_PCM_TRIGGER_STOP
:
1671 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1672 case SNDRV_PCM_TRIGGER_SUSPEND
:
1673 snd_emu10k1_fx8010_unregister_irq_handler(emu
, pcm
->irq
); pcm
->irq
= NULL
;
1674 snd_emu10k1_ptr_write(emu
, emu
->gpr_base
+ pcm
->gpr_trigger
, 0, 0);
1675 pcm
->tram_pos
= INITIAL_TRAM_POS(pcm
->buffer_size
);
1676 pcm
->tram_shift
= 0;
1683 spin_unlock(&emu
->reg_lock
);
1687 static snd_pcm_uframes_t
snd_emu10k1_fx8010_playback_pointer(struct snd_pcm_substream
*substream
)
1689 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1690 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1691 size_t ptr
; /* byte pointer */
1693 if (!snd_emu10k1_ptr_read(emu
, emu
->gpr_base
+ pcm
->gpr_trigger
, 0))
1695 ptr
= snd_emu10k1_ptr_read(emu
, emu
->gpr_base
+ pcm
->gpr_ptr
, 0) << 2;
1696 return snd_pcm_indirect_playback_pointer(substream
, &pcm
->pcm_rec
, ptr
);
1699 static struct snd_pcm_hardware snd_emu10k1_fx8010_playback
=
1701 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1702 SNDRV_PCM_INFO_RESUME
|
1703 /* SNDRV_PCM_INFO_MMAP_VALID | */ SNDRV_PCM_INFO_PAUSE
),
1704 .formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
,
1705 .rates
= SNDRV_PCM_RATE_48000
,
1710 .buffer_bytes_max
= (128*1024),
1711 .period_bytes_min
= 1024,
1712 .period_bytes_max
= (128*1024),
1714 .periods_max
= 1024,
1718 static int snd_emu10k1_fx8010_playback_open(struct snd_pcm_substream
*substream
)
1720 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1721 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1722 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1724 runtime
->hw
= snd_emu10k1_fx8010_playback
;
1725 runtime
->hw
.channels_min
= runtime
->hw
.channels_max
= pcm
->channels
;
1726 runtime
->hw
.period_bytes_max
= (pcm
->buffer_size
* 2) / 2;
1727 spin_lock_irq(&emu
->reg_lock
);
1728 if (pcm
->valid
== 0) {
1729 spin_unlock_irq(&emu
->reg_lock
);
1733 spin_unlock_irq(&emu
->reg_lock
);
1737 static int snd_emu10k1_fx8010_playback_close(struct snd_pcm_substream
*substream
)
1739 struct snd_emu10k1
*emu
= snd_pcm_substream_chip(substream
);
1740 struct snd_emu10k1_fx8010_pcm
*pcm
= &emu
->fx8010
.pcm
[substream
->number
];
1742 spin_lock_irq(&emu
->reg_lock
);
1744 spin_unlock_irq(&emu
->reg_lock
);
1748 static struct snd_pcm_ops snd_emu10k1_fx8010_playback_ops
= {
1749 .open
= snd_emu10k1_fx8010_playback_open
,
1750 .close
= snd_emu10k1_fx8010_playback_close
,
1751 .ioctl
= snd_pcm_lib_ioctl
,
1752 .hw_params
= snd_emu10k1_fx8010_playback_hw_params
,
1753 .hw_free
= snd_emu10k1_fx8010_playback_hw_free
,
1754 .prepare
= snd_emu10k1_fx8010_playback_prepare
,
1755 .trigger
= snd_emu10k1_fx8010_playback_trigger
,
1756 .pointer
= snd_emu10k1_fx8010_playback_pointer
,
1757 .ack
= snd_emu10k1_fx8010_playback_transfer
,
1760 int __devinit
snd_emu10k1_pcm_efx(struct snd_emu10k1
* emu
, int device
, struct snd_pcm
** rpcm
)
1762 struct snd_pcm
*pcm
;
1763 struct snd_kcontrol
*kctl
;
1769 if ((err
= snd_pcm_new(emu
->card
, "emu10k1 efx", device
, 8, 1, &pcm
)) < 0)
1772 pcm
->private_data
= emu
;
1774 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_emu10k1_fx8010_playback_ops
);
1775 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_emu10k1_capture_efx_ops
);
1777 pcm
->info_flags
= 0;
1778 strcpy(pcm
->name
, "Multichannel Capture/PT Playback");
1783 /* EFX capture - record the "FXBUS2" channels, by default we connect the EXTINs
1787 /* emu->efx_voices_mask[0] = FXWC_DEFAULTROUTE_C | FXWC_DEFAULTROUTE_A; */
1789 emu
->efx_voices_mask
[0] = 0;
1790 emu
->efx_voices_mask
[1] = 0xffff;
1792 emu
->efx_voices_mask
[0] = 0xffff0000;
1793 emu
->efx_voices_mask
[1] = 0;
1795 kctl
= snd_ctl_new1(&snd_emu10k1_pcm_efx_voices_mask
, emu
);
1798 kctl
->id
.device
= device
;
1799 snd_ctl_add(emu
->card
, kctl
);
1801 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(emu
->pci
), 64*1024, 64*1024);