2 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
3 * Routines for control of YMF724/740/744/754 chips
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/delay.h>
22 #include <linux/firmware.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/pci.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
28 #include <linux/mutex.h>
29 #include <linux/module.h>
31 #include <sound/core.h>
32 #include <sound/control.h>
33 #include <sound/info.h>
34 #include <sound/tlv.h>
36 #include <sound/asoundef.h>
37 #include <sound/mpu401.h>
40 #include <asm/byteorder.h>
46 static void snd_ymfpci_irq_wait(struct snd_ymfpci
*chip
);
48 static inline u8
snd_ymfpci_readb(struct snd_ymfpci
*chip
, u32 offset
)
50 return readb(chip
->reg_area_virt
+ offset
);
53 static inline void snd_ymfpci_writeb(struct snd_ymfpci
*chip
, u32 offset
, u8 val
)
55 writeb(val
, chip
->reg_area_virt
+ offset
);
58 static inline u16
snd_ymfpci_readw(struct snd_ymfpci
*chip
, u32 offset
)
60 return readw(chip
->reg_area_virt
+ offset
);
63 static inline void snd_ymfpci_writew(struct snd_ymfpci
*chip
, u32 offset
, u16 val
)
65 writew(val
, chip
->reg_area_virt
+ offset
);
68 static inline u32
snd_ymfpci_readl(struct snd_ymfpci
*chip
, u32 offset
)
70 return readl(chip
->reg_area_virt
+ offset
);
73 static inline void snd_ymfpci_writel(struct snd_ymfpci
*chip
, u32 offset
, u32 val
)
75 writel(val
, chip
->reg_area_virt
+ offset
);
78 static int snd_ymfpci_codec_ready(struct snd_ymfpci
*chip
, int secondary
)
80 unsigned long end_time
;
81 u32 reg
= secondary
? YDSXGR_SECSTATUSADR
: YDSXGR_PRISTATUSADR
;
83 end_time
= jiffies
+ msecs_to_jiffies(750);
85 if ((snd_ymfpci_readw(chip
, reg
) & 0x8000) == 0)
87 schedule_timeout_uninterruptible(1);
88 } while (time_before(jiffies
, end_time
));
89 dev_err(chip
->card
->dev
,
90 "codec_ready: codec %i is not ready [0x%x]\n",
91 secondary
, snd_ymfpci_readw(chip
, reg
));
95 static void snd_ymfpci_codec_write(struct snd_ac97
*ac97
, u16 reg
, u16 val
)
97 struct snd_ymfpci
*chip
= ac97
->private_data
;
100 snd_ymfpci_codec_ready(chip
, 0);
101 cmd
= ((YDSXG_AC97WRITECMD
| reg
) << 16) | val
;
102 snd_ymfpci_writel(chip
, YDSXGR_AC97CMDDATA
, cmd
);
105 static u16
snd_ymfpci_codec_read(struct snd_ac97
*ac97
, u16 reg
)
107 struct snd_ymfpci
*chip
= ac97
->private_data
;
109 if (snd_ymfpci_codec_ready(chip
, 0))
111 snd_ymfpci_writew(chip
, YDSXGR_AC97CMDADR
, YDSXG_AC97READCMD
| reg
);
112 if (snd_ymfpci_codec_ready(chip
, 0))
114 if (chip
->device_id
== PCI_DEVICE_ID_YAMAHA_744
&& chip
->rev
< 2) {
116 for (i
= 0; i
< 600; i
++)
117 snd_ymfpci_readw(chip
, YDSXGR_PRISTATUSDATA
);
119 return snd_ymfpci_readw(chip
, YDSXGR_PRISTATUSDATA
);
126 static u32
snd_ymfpci_calc_delta(u32 rate
)
129 case 8000: return 0x02aaab00;
130 case 11025: return 0x03accd00;
131 case 16000: return 0x05555500;
132 case 22050: return 0x07599a00;
133 case 32000: return 0x0aaaab00;
134 case 44100: return 0x0eb33300;
135 default: return ((rate
<< 16) / 375) << 5;
139 static u32 def_rate
[8] = {
140 100, 2000, 8000, 11025, 16000, 22050, 32000, 48000
143 static u32
snd_ymfpci_calc_lpfK(u32 rate
)
146 static u32 val
[8] = {
147 0x00570000, 0x06AA0000, 0x18B20000, 0x20930000,
148 0x2B9A0000, 0x35A10000, 0x3EAA0000, 0x40000000
152 return 0x40000000; /* FIXME: What's the right value? */
153 for (i
= 0; i
< 8; i
++)
154 if (rate
<= def_rate
[i
])
159 static u32
snd_ymfpci_calc_lpfQ(u32 rate
)
162 static u32 val
[8] = {
163 0x35280000, 0x34A70000, 0x32020000, 0x31770000,
164 0x31390000, 0x31C90000, 0x33D00000, 0x40000000
169 for (i
= 0; i
< 8; i
++)
170 if (rate
<= def_rate
[i
])
176 * Hardware start management
179 static void snd_ymfpci_hw_start(struct snd_ymfpci
*chip
)
183 spin_lock_irqsave(&chip
->reg_lock
, flags
);
184 if (chip
->start_count
++ > 0)
186 snd_ymfpci_writel(chip
, YDSXGR_MODE
,
187 snd_ymfpci_readl(chip
, YDSXGR_MODE
) | 3);
188 chip
->active_bank
= snd_ymfpci_readl(chip
, YDSXGR_CTRLSELECT
) & 1;
190 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
193 static void snd_ymfpci_hw_stop(struct snd_ymfpci
*chip
)
198 spin_lock_irqsave(&chip
->reg_lock
, flags
);
199 if (--chip
->start_count
> 0)
201 snd_ymfpci_writel(chip
, YDSXGR_MODE
,
202 snd_ymfpci_readl(chip
, YDSXGR_MODE
) & ~3);
203 while (timeout
-- > 0) {
204 if ((snd_ymfpci_readl(chip
, YDSXGR_STATUS
) & 2) == 0)
207 if (atomic_read(&chip
->interrupt_sleep_count
)) {
208 atomic_set(&chip
->interrupt_sleep_count
, 0);
209 wake_up(&chip
->interrupt_sleep
);
212 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
216 * Playback voice management
219 static int voice_alloc(struct snd_ymfpci
*chip
,
220 enum snd_ymfpci_voice_type type
, int pair
,
221 struct snd_ymfpci_voice
**rvoice
)
223 struct snd_ymfpci_voice
*voice
, *voice2
;
227 for (idx
= 0; idx
< YDSXG_PLAYBACK_VOICES
; idx
+= pair
? 2 : 1) {
228 voice
= &chip
->voices
[idx
];
229 voice2
= pair
? &chip
->voices
[idx
+1] : NULL
;
230 if (voice
->use
|| (voice2
&& voice2
->use
))
248 snd_ymfpci_hw_start(chip
);
250 snd_ymfpci_hw_start(chip
);
257 static int snd_ymfpci_voice_alloc(struct snd_ymfpci
*chip
,
258 enum snd_ymfpci_voice_type type
, int pair
,
259 struct snd_ymfpci_voice
**rvoice
)
264 if (snd_BUG_ON(!rvoice
))
266 if (snd_BUG_ON(pair
&& type
!= YMFPCI_PCM
))
269 spin_lock_irqsave(&chip
->voice_lock
, flags
);
271 result
= voice_alloc(chip
, type
, pair
, rvoice
);
272 if (result
== 0 || type
!= YMFPCI_PCM
)
274 /* TODO: synth/midi voice deallocation */
277 spin_unlock_irqrestore(&chip
->voice_lock
, flags
);
281 static int snd_ymfpci_voice_free(struct snd_ymfpci
*chip
, struct snd_ymfpci_voice
*pvoice
)
285 if (snd_BUG_ON(!pvoice
))
287 snd_ymfpci_hw_stop(chip
);
288 spin_lock_irqsave(&chip
->voice_lock
, flags
);
289 if (pvoice
->number
== chip
->src441_used
) {
290 chip
->src441_used
= -1;
291 pvoice
->ypcm
->use_441_slot
= 0;
293 pvoice
->use
= pvoice
->pcm
= pvoice
->synth
= pvoice
->midi
= 0;
295 pvoice
->interrupt
= NULL
;
296 spin_unlock_irqrestore(&chip
->voice_lock
, flags
);
304 static void snd_ymfpci_pcm_interrupt(struct snd_ymfpci
*chip
, struct snd_ymfpci_voice
*voice
)
306 struct snd_ymfpci_pcm
*ypcm
;
309 if ((ypcm
= voice
->ypcm
) == NULL
)
311 if (ypcm
->substream
== NULL
)
313 spin_lock(&chip
->reg_lock
);
315 pos
= le32_to_cpu(voice
->bank
[chip
->active_bank
].start
);
316 if (pos
< ypcm
->last_pos
)
317 delta
= pos
+ (ypcm
->buffer_size
- ypcm
->last_pos
);
319 delta
= pos
- ypcm
->last_pos
;
320 ypcm
->period_pos
+= delta
;
321 ypcm
->last_pos
= pos
;
322 if (ypcm
->period_pos
>= ypcm
->period_size
) {
324 dev_dbg(chip->card->dev,
325 "done - active_bank = 0x%x, start = 0x%x\n",
327 voice->bank[chip->active_bank].start);
329 ypcm
->period_pos
%= ypcm
->period_size
;
330 spin_unlock(&chip
->reg_lock
);
331 snd_pcm_period_elapsed(ypcm
->substream
);
332 spin_lock(&chip
->reg_lock
);
335 if (unlikely(ypcm
->update_pcm_vol
)) {
336 unsigned int subs
= ypcm
->substream
->number
;
337 unsigned int next_bank
= 1 - chip
->active_bank
;
338 struct snd_ymfpci_playback_bank
*bank
;
341 bank
= &voice
->bank
[next_bank
];
342 volume
= cpu_to_le32(chip
->pcm_mixer
[subs
].left
<< 15);
343 bank
->left_gain_end
= volume
;
344 if (ypcm
->output_rear
)
345 bank
->eff2_gain_end
= volume
;
347 bank
= &ypcm
->voices
[1]->bank
[next_bank
];
348 volume
= cpu_to_le32(chip
->pcm_mixer
[subs
].right
<< 15);
349 bank
->right_gain_end
= volume
;
350 if (ypcm
->output_rear
)
351 bank
->eff3_gain_end
= volume
;
352 ypcm
->update_pcm_vol
--;
355 spin_unlock(&chip
->reg_lock
);
358 static void snd_ymfpci_pcm_capture_interrupt(struct snd_pcm_substream
*substream
)
360 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
361 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
362 struct snd_ymfpci
*chip
= ypcm
->chip
;
365 spin_lock(&chip
->reg_lock
);
367 pos
= le32_to_cpu(chip
->bank_capture
[ypcm
->capture_bank_number
][chip
->active_bank
]->start
) >> ypcm
->shift
;
368 if (pos
< ypcm
->last_pos
)
369 delta
= pos
+ (ypcm
->buffer_size
- ypcm
->last_pos
);
371 delta
= pos
- ypcm
->last_pos
;
372 ypcm
->period_pos
+= delta
;
373 ypcm
->last_pos
= pos
;
374 if (ypcm
->period_pos
>= ypcm
->period_size
) {
375 ypcm
->period_pos
%= ypcm
->period_size
;
377 dev_dbg(chip->card->dev,
378 "done - active_bank = 0x%x, start = 0x%x\n",
380 voice->bank[chip->active_bank].start);
382 spin_unlock(&chip
->reg_lock
);
383 snd_pcm_period_elapsed(substream
);
384 spin_lock(&chip
->reg_lock
);
387 spin_unlock(&chip
->reg_lock
);
390 static int snd_ymfpci_playback_trigger(struct snd_pcm_substream
*substream
,
393 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
394 struct snd_ymfpci_pcm
*ypcm
= substream
->runtime
->private_data
;
395 struct snd_kcontrol
*kctl
= NULL
;
398 spin_lock(&chip
->reg_lock
);
399 if (ypcm
->voices
[0] == NULL
) {
404 case SNDRV_PCM_TRIGGER_START
:
405 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
406 case SNDRV_PCM_TRIGGER_RESUME
:
407 chip
->ctrl_playback
[ypcm
->voices
[0]->number
+ 1] = cpu_to_le32(ypcm
->voices
[0]->bank_addr
);
408 if (ypcm
->voices
[1] != NULL
&& !ypcm
->use_441_slot
)
409 chip
->ctrl_playback
[ypcm
->voices
[1]->number
+ 1] = cpu_to_le32(ypcm
->voices
[1]->bank_addr
);
412 case SNDRV_PCM_TRIGGER_STOP
:
413 if (substream
->pcm
== chip
->pcm
&& !ypcm
->use_441_slot
) {
414 kctl
= chip
->pcm_mixer
[substream
->number
].ctl
;
415 kctl
->vd
[0].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
418 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
419 case SNDRV_PCM_TRIGGER_SUSPEND
:
420 chip
->ctrl_playback
[ypcm
->voices
[0]->number
+ 1] = 0;
421 if (ypcm
->voices
[1] != NULL
&& !ypcm
->use_441_slot
)
422 chip
->ctrl_playback
[ypcm
->voices
[1]->number
+ 1] = 0;
430 spin_unlock(&chip
->reg_lock
);
432 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_INFO
, &kctl
->id
);
435 static int snd_ymfpci_capture_trigger(struct snd_pcm_substream
*substream
,
438 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
439 struct snd_ymfpci_pcm
*ypcm
= substream
->runtime
->private_data
;
443 spin_lock(&chip
->reg_lock
);
445 case SNDRV_PCM_TRIGGER_START
:
446 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
447 case SNDRV_PCM_TRIGGER_RESUME
:
448 tmp
= snd_ymfpci_readl(chip
, YDSXGR_MAPOFREC
) | (1 << ypcm
->capture_bank_number
);
449 snd_ymfpci_writel(chip
, YDSXGR_MAPOFREC
, tmp
);
452 case SNDRV_PCM_TRIGGER_STOP
:
453 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
454 case SNDRV_PCM_TRIGGER_SUSPEND
:
455 tmp
= snd_ymfpci_readl(chip
, YDSXGR_MAPOFREC
) & ~(1 << ypcm
->capture_bank_number
);
456 snd_ymfpci_writel(chip
, YDSXGR_MAPOFREC
, tmp
);
463 spin_unlock(&chip
->reg_lock
);
467 static int snd_ymfpci_pcm_voice_alloc(struct snd_ymfpci_pcm
*ypcm
, int voices
)
471 if (ypcm
->voices
[1] != NULL
&& voices
< 2) {
472 snd_ymfpci_voice_free(ypcm
->chip
, ypcm
->voices
[1]);
473 ypcm
->voices
[1] = NULL
;
475 if (voices
== 1 && ypcm
->voices
[0] != NULL
)
476 return 0; /* already allocated */
477 if (voices
== 2 && ypcm
->voices
[0] != NULL
&& ypcm
->voices
[1] != NULL
)
478 return 0; /* already allocated */
480 if (ypcm
->voices
[0] != NULL
&& ypcm
->voices
[1] == NULL
) {
481 snd_ymfpci_voice_free(ypcm
->chip
, ypcm
->voices
[0]);
482 ypcm
->voices
[0] = NULL
;
485 err
= snd_ymfpci_voice_alloc(ypcm
->chip
, YMFPCI_PCM
, voices
> 1, &ypcm
->voices
[0]);
488 ypcm
->voices
[0]->ypcm
= ypcm
;
489 ypcm
->voices
[0]->interrupt
= snd_ymfpci_pcm_interrupt
;
491 ypcm
->voices
[1] = &ypcm
->chip
->voices
[ypcm
->voices
[0]->number
+ 1];
492 ypcm
->voices
[1]->ypcm
= ypcm
;
497 static void snd_ymfpci_pcm_init_voice(struct snd_ymfpci_pcm
*ypcm
, unsigned int voiceidx
,
498 struct snd_pcm_runtime
*runtime
,
501 struct snd_ymfpci_voice
*voice
= ypcm
->voices
[voiceidx
];
503 u32 delta
= snd_ymfpci_calc_delta(runtime
->rate
);
504 u32 lpfQ
= snd_ymfpci_calc_lpfQ(runtime
->rate
);
505 u32 lpfK
= snd_ymfpci_calc_lpfK(runtime
->rate
);
506 struct snd_ymfpci_playback_bank
*bank
;
508 u32 vol_left
, vol_right
;
509 u8 use_left
, use_right
;
512 if (snd_BUG_ON(!voice
))
514 if (runtime
->channels
== 1) {
518 use_left
= (voiceidx
& 1) == 0;
519 use_right
= !use_left
;
521 if (has_pcm_volume
) {
522 vol_left
= cpu_to_le32(ypcm
->chip
->pcm_mixer
523 [ypcm
->substream
->number
].left
<< 15);
524 vol_right
= cpu_to_le32(ypcm
->chip
->pcm_mixer
525 [ypcm
->substream
->number
].right
<< 15);
527 vol_left
= cpu_to_le32(0x40000000);
528 vol_right
= cpu_to_le32(0x40000000);
530 spin_lock_irqsave(&ypcm
->chip
->voice_lock
, flags
);
531 format
= runtime
->channels
== 2 ? 0x00010000 : 0;
532 if (snd_pcm_format_width(runtime
->format
) == 8)
533 format
|= 0x80000000;
534 else if (ypcm
->chip
->device_id
== PCI_DEVICE_ID_YAMAHA_754
&&
535 runtime
->rate
== 44100 && runtime
->channels
== 2 &&
536 voiceidx
== 0 && (ypcm
->chip
->src441_used
== -1 ||
537 ypcm
->chip
->src441_used
== voice
->number
)) {
538 ypcm
->chip
->src441_used
= voice
->number
;
539 ypcm
->use_441_slot
= 1;
540 format
|= 0x10000000;
542 if (ypcm
->chip
->src441_used
== voice
->number
&&
543 (format
& 0x10000000) == 0) {
544 ypcm
->chip
->src441_used
= -1;
545 ypcm
->use_441_slot
= 0;
547 if (runtime
->channels
== 2 && (voiceidx
& 1) != 0)
549 spin_unlock_irqrestore(&ypcm
->chip
->voice_lock
, flags
);
550 for (nbank
= 0; nbank
< 2; nbank
++) {
551 bank
= &voice
->bank
[nbank
];
552 memset(bank
, 0, sizeof(*bank
));
553 bank
->format
= cpu_to_le32(format
);
554 bank
->base
= cpu_to_le32(runtime
->dma_addr
);
555 bank
->loop_end
= cpu_to_le32(ypcm
->buffer_size
);
556 bank
->lpfQ
= cpu_to_le32(lpfQ
);
558 bank
->delta_end
= cpu_to_le32(delta
);
560 bank
->lpfK_end
= cpu_to_le32(lpfK
);
562 bank
->eg_gain_end
= cpu_to_le32(0x40000000);
564 if (ypcm
->output_front
) {
567 bank
->left_gain_end
= vol_left
;
571 bank
->right_gain_end
= vol_right
;
574 if (ypcm
->output_rear
) {
575 if (!ypcm
->swap_rear
) {
578 bank
->eff2_gain_end
= vol_left
;
582 bank
->eff3_gain_end
= vol_right
;
585 /* The SPDIF out channels seem to be swapped, so we have
586 * to swap them here, too. The rear analog out channels
587 * will be wrong, but otherwise AC3 would not work.
591 bank
->eff3_gain_end
= vol_left
;
595 bank
->eff2_gain_end
= vol_right
;
602 static int snd_ymfpci_ac3_init(struct snd_ymfpci
*chip
)
604 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(chip
->pci
),
605 4096, &chip
->ac3_tmp_base
) < 0)
608 chip
->bank_effect
[3][0]->base
=
609 chip
->bank_effect
[3][1]->base
= cpu_to_le32(chip
->ac3_tmp_base
.addr
);
610 chip
->bank_effect
[3][0]->loop_end
=
611 chip
->bank_effect
[3][1]->loop_end
= cpu_to_le32(1024);
612 chip
->bank_effect
[4][0]->base
=
613 chip
->bank_effect
[4][1]->base
= cpu_to_le32(chip
->ac3_tmp_base
.addr
+ 2048);
614 chip
->bank_effect
[4][0]->loop_end
=
615 chip
->bank_effect
[4][1]->loop_end
= cpu_to_le32(1024);
617 spin_lock_irq(&chip
->reg_lock
);
618 snd_ymfpci_writel(chip
, YDSXGR_MAPOFEFFECT
,
619 snd_ymfpci_readl(chip
, YDSXGR_MAPOFEFFECT
) | 3 << 3);
620 spin_unlock_irq(&chip
->reg_lock
);
624 static int snd_ymfpci_ac3_done(struct snd_ymfpci
*chip
)
626 spin_lock_irq(&chip
->reg_lock
);
627 snd_ymfpci_writel(chip
, YDSXGR_MAPOFEFFECT
,
628 snd_ymfpci_readl(chip
, YDSXGR_MAPOFEFFECT
) & ~(3 << 3));
629 spin_unlock_irq(&chip
->reg_lock
);
630 // snd_ymfpci_irq_wait(chip);
631 if (chip
->ac3_tmp_base
.area
) {
632 snd_dma_free_pages(&chip
->ac3_tmp_base
);
633 chip
->ac3_tmp_base
.area
= NULL
;
638 static int snd_ymfpci_playback_hw_params(struct snd_pcm_substream
*substream
,
639 struct snd_pcm_hw_params
*hw_params
)
641 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
642 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
645 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
647 if ((err
= snd_ymfpci_pcm_voice_alloc(ypcm
, params_channels(hw_params
))) < 0)
652 static int snd_ymfpci_playback_hw_free(struct snd_pcm_substream
*substream
)
654 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
655 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
656 struct snd_ymfpci_pcm
*ypcm
;
658 if (runtime
->private_data
== NULL
)
660 ypcm
= runtime
->private_data
;
662 /* wait, until the PCI operations are not finished */
663 snd_ymfpci_irq_wait(chip
);
664 snd_pcm_lib_free_pages(substream
);
665 if (ypcm
->voices
[1]) {
666 snd_ymfpci_voice_free(chip
, ypcm
->voices
[1]);
667 ypcm
->voices
[1] = NULL
;
669 if (ypcm
->voices
[0]) {
670 snd_ymfpci_voice_free(chip
, ypcm
->voices
[0]);
671 ypcm
->voices
[0] = NULL
;
676 static int snd_ymfpci_playback_prepare(struct snd_pcm_substream
*substream
)
678 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
679 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
680 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
681 struct snd_kcontrol
*kctl
;
684 ypcm
->period_size
= runtime
->period_size
;
685 ypcm
->buffer_size
= runtime
->buffer_size
;
686 ypcm
->period_pos
= 0;
688 for (nvoice
= 0; nvoice
< runtime
->channels
; nvoice
++)
689 snd_ymfpci_pcm_init_voice(ypcm
, nvoice
, runtime
,
690 substream
->pcm
== chip
->pcm
);
692 if (substream
->pcm
== chip
->pcm
&& !ypcm
->use_441_slot
) {
693 kctl
= chip
->pcm_mixer
[substream
->number
].ctl
;
694 kctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
695 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_INFO
, &kctl
->id
);
700 static int snd_ymfpci_capture_hw_params(struct snd_pcm_substream
*substream
,
701 struct snd_pcm_hw_params
*hw_params
)
703 return snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
));
706 static int snd_ymfpci_capture_hw_free(struct snd_pcm_substream
*substream
)
708 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
710 /* wait, until the PCI operations are not finished */
711 snd_ymfpci_irq_wait(chip
);
712 return snd_pcm_lib_free_pages(substream
);
715 static int snd_ymfpci_capture_prepare(struct snd_pcm_substream
*substream
)
717 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
718 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
719 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
720 struct snd_ymfpci_capture_bank
* bank
;
724 ypcm
->period_size
= runtime
->period_size
;
725 ypcm
->buffer_size
= runtime
->buffer_size
;
726 ypcm
->period_pos
= 0;
729 rate
= ((48000 * 4096) / runtime
->rate
) - 1;
731 if (runtime
->channels
== 2) {
735 if (snd_pcm_format_width(runtime
->format
) == 8)
739 switch (ypcm
->capture_bank_number
) {
741 snd_ymfpci_writel(chip
, YDSXGR_RECFORMAT
, format
);
742 snd_ymfpci_writel(chip
, YDSXGR_RECSLOTSR
, rate
);
745 snd_ymfpci_writel(chip
, YDSXGR_ADCFORMAT
, format
);
746 snd_ymfpci_writel(chip
, YDSXGR_ADCSLOTSR
, rate
);
749 for (nbank
= 0; nbank
< 2; nbank
++) {
750 bank
= chip
->bank_capture
[ypcm
->capture_bank_number
][nbank
];
751 bank
->base
= cpu_to_le32(runtime
->dma_addr
);
752 bank
->loop_end
= cpu_to_le32(ypcm
->buffer_size
<< ypcm
->shift
);
754 bank
->num_of_loops
= 0;
759 static snd_pcm_uframes_t
snd_ymfpci_playback_pointer(struct snd_pcm_substream
*substream
)
761 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
762 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
763 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
764 struct snd_ymfpci_voice
*voice
= ypcm
->voices
[0];
766 if (!(ypcm
->running
&& voice
))
768 return le32_to_cpu(voice
->bank
[chip
->active_bank
].start
);
771 static snd_pcm_uframes_t
snd_ymfpci_capture_pointer(struct snd_pcm_substream
*substream
)
773 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
774 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
775 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
779 return le32_to_cpu(chip
->bank_capture
[ypcm
->capture_bank_number
][chip
->active_bank
]->start
) >> ypcm
->shift
;
782 static void snd_ymfpci_irq_wait(struct snd_ymfpci
*chip
)
787 while (loops
-- > 0) {
788 if ((snd_ymfpci_readl(chip
, YDSXGR_MODE
) & 3) == 0)
790 init_waitqueue_entry(&wait
, current
);
791 add_wait_queue(&chip
->interrupt_sleep
, &wait
);
792 atomic_inc(&chip
->interrupt_sleep_count
);
793 schedule_timeout_uninterruptible(msecs_to_jiffies(50));
794 remove_wait_queue(&chip
->interrupt_sleep
, &wait
);
798 static irqreturn_t
snd_ymfpci_interrupt(int irq
, void *dev_id
)
800 struct snd_ymfpci
*chip
= dev_id
;
801 u32 status
, nvoice
, mode
;
802 struct snd_ymfpci_voice
*voice
;
804 status
= snd_ymfpci_readl(chip
, YDSXGR_STATUS
);
805 if (status
& 0x80000000) {
806 chip
->active_bank
= snd_ymfpci_readl(chip
, YDSXGR_CTRLSELECT
) & 1;
807 spin_lock(&chip
->voice_lock
);
808 for (nvoice
= 0; nvoice
< YDSXG_PLAYBACK_VOICES
; nvoice
++) {
809 voice
= &chip
->voices
[nvoice
];
810 if (voice
->interrupt
)
811 voice
->interrupt(chip
, voice
);
813 for (nvoice
= 0; nvoice
< YDSXG_CAPTURE_VOICES
; nvoice
++) {
814 if (chip
->capture_substream
[nvoice
])
815 snd_ymfpci_pcm_capture_interrupt(chip
->capture_substream
[nvoice
]);
818 for (nvoice
= 0; nvoice
< YDSXG_EFFECT_VOICES
; nvoice
++) {
819 if (chip
->effect_substream
[nvoice
])
820 snd_ymfpci_pcm_effect_interrupt(chip
->effect_substream
[nvoice
]);
823 spin_unlock(&chip
->voice_lock
);
824 spin_lock(&chip
->reg_lock
);
825 snd_ymfpci_writel(chip
, YDSXGR_STATUS
, 0x80000000);
826 mode
= snd_ymfpci_readl(chip
, YDSXGR_MODE
) | 2;
827 snd_ymfpci_writel(chip
, YDSXGR_MODE
, mode
);
828 spin_unlock(&chip
->reg_lock
);
830 if (atomic_read(&chip
->interrupt_sleep_count
)) {
831 atomic_set(&chip
->interrupt_sleep_count
, 0);
832 wake_up(&chip
->interrupt_sleep
);
836 status
= snd_ymfpci_readw(chip
, YDSXGR_INTFLAG
);
839 snd_timer_interrupt(chip
->timer
, chip
->timer_ticks
);
841 snd_ymfpci_writew(chip
, YDSXGR_INTFLAG
, status
);
844 snd_mpu401_uart_interrupt(irq
, chip
->rawmidi
->private_data
);
848 static struct snd_pcm_hardware snd_ymfpci_playback
=
850 .info
= (SNDRV_PCM_INFO_MMAP
|
851 SNDRV_PCM_INFO_MMAP_VALID
|
852 SNDRV_PCM_INFO_INTERLEAVED
|
853 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
854 SNDRV_PCM_INFO_PAUSE
|
855 SNDRV_PCM_INFO_RESUME
),
856 .formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
,
857 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
862 .buffer_bytes_max
= 256 * 1024, /* FIXME: enough? */
863 .period_bytes_min
= 64,
864 .period_bytes_max
= 256 * 1024, /* FIXME: enough? */
870 static struct snd_pcm_hardware snd_ymfpci_capture
=
872 .info
= (SNDRV_PCM_INFO_MMAP
|
873 SNDRV_PCM_INFO_MMAP_VALID
|
874 SNDRV_PCM_INFO_INTERLEAVED
|
875 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
876 SNDRV_PCM_INFO_PAUSE
|
877 SNDRV_PCM_INFO_RESUME
),
878 .formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
,
879 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
884 .buffer_bytes_max
= 256 * 1024, /* FIXME: enough? */
885 .period_bytes_min
= 64,
886 .period_bytes_max
= 256 * 1024, /* FIXME: enough? */
892 static void snd_ymfpci_pcm_free_substream(struct snd_pcm_runtime
*runtime
)
894 kfree(runtime
->private_data
);
897 static int snd_ymfpci_playback_open_1(struct snd_pcm_substream
*substream
)
899 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
900 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
901 struct snd_ymfpci_pcm
*ypcm
;
904 runtime
->hw
= snd_ymfpci_playback
;
905 /* FIXME? True value is 256/48 = 5.33333 ms */
906 err
= snd_pcm_hw_constraint_minmax(runtime
,
907 SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
911 err
= snd_pcm_hw_rule_noresample(runtime
, 48000);
915 ypcm
= kzalloc(sizeof(*ypcm
), GFP_KERNEL
);
919 ypcm
->type
= PLAYBACK_VOICE
;
920 ypcm
->substream
= substream
;
921 runtime
->private_data
= ypcm
;
922 runtime
->private_free
= snd_ymfpci_pcm_free_substream
;
926 /* call with spinlock held */
927 static void ymfpci_open_extension(struct snd_ymfpci
*chip
)
929 if (! chip
->rear_opened
) {
930 if (! chip
->spdif_opened
) /* set AC3 */
931 snd_ymfpci_writel(chip
, YDSXGR_MODE
,
932 snd_ymfpci_readl(chip
, YDSXGR_MODE
) | (1 << 30));
933 /* enable second codec (4CHEN) */
934 snd_ymfpci_writew(chip
, YDSXGR_SECCONFIG
,
935 (snd_ymfpci_readw(chip
, YDSXGR_SECCONFIG
) & ~0x0330) | 0x0010);
939 /* call with spinlock held */
940 static void ymfpci_close_extension(struct snd_ymfpci
*chip
)
942 if (! chip
->rear_opened
) {
943 if (! chip
->spdif_opened
)
944 snd_ymfpci_writel(chip
, YDSXGR_MODE
,
945 snd_ymfpci_readl(chip
, YDSXGR_MODE
) & ~(1 << 30));
946 snd_ymfpci_writew(chip
, YDSXGR_SECCONFIG
,
947 (snd_ymfpci_readw(chip
, YDSXGR_SECCONFIG
) & ~0x0330) & ~0x0010);
951 static int snd_ymfpci_playback_open(struct snd_pcm_substream
*substream
)
953 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
954 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
955 struct snd_ymfpci_pcm
*ypcm
;
958 if ((err
= snd_ymfpci_playback_open_1(substream
)) < 0)
960 ypcm
= runtime
->private_data
;
961 ypcm
->output_front
= 1;
962 ypcm
->output_rear
= chip
->mode_dup4ch
? 1 : 0;
964 spin_lock_irq(&chip
->reg_lock
);
965 if (ypcm
->output_rear
) {
966 ymfpci_open_extension(chip
);
969 spin_unlock_irq(&chip
->reg_lock
);
973 static int snd_ymfpci_playback_spdif_open(struct snd_pcm_substream
*substream
)
975 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
976 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
977 struct snd_ymfpci_pcm
*ypcm
;
980 if ((err
= snd_ymfpci_playback_open_1(substream
)) < 0)
982 ypcm
= runtime
->private_data
;
983 ypcm
->output_front
= 0;
984 ypcm
->output_rear
= 1;
986 spin_lock_irq(&chip
->reg_lock
);
987 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTCTRL
,
988 snd_ymfpci_readw(chip
, YDSXGR_SPDIFOUTCTRL
) | 2);
989 ymfpci_open_extension(chip
);
990 chip
->spdif_pcm_bits
= chip
->spdif_bits
;
991 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTSTATUS
, chip
->spdif_pcm_bits
);
992 chip
->spdif_opened
++;
993 spin_unlock_irq(&chip
->reg_lock
);
995 chip
->spdif_pcm_ctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
996 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
997 SNDRV_CTL_EVENT_MASK_INFO
, &chip
->spdif_pcm_ctl
->id
);
1001 static int snd_ymfpci_playback_4ch_open(struct snd_pcm_substream
*substream
)
1003 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1004 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1005 struct snd_ymfpci_pcm
*ypcm
;
1008 if ((err
= snd_ymfpci_playback_open_1(substream
)) < 0)
1010 ypcm
= runtime
->private_data
;
1011 ypcm
->output_front
= 0;
1012 ypcm
->output_rear
= 1;
1013 ypcm
->swap_rear
= 0;
1014 spin_lock_irq(&chip
->reg_lock
);
1015 ymfpci_open_extension(chip
);
1016 chip
->rear_opened
++;
1017 spin_unlock_irq(&chip
->reg_lock
);
1021 static int snd_ymfpci_capture_open(struct snd_pcm_substream
*substream
,
1022 u32 capture_bank_number
)
1024 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1025 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1026 struct snd_ymfpci_pcm
*ypcm
;
1029 runtime
->hw
= snd_ymfpci_capture
;
1030 /* FIXME? True value is 256/48 = 5.33333 ms */
1031 err
= snd_pcm_hw_constraint_minmax(runtime
,
1032 SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1036 err
= snd_pcm_hw_rule_noresample(runtime
, 48000);
1040 ypcm
= kzalloc(sizeof(*ypcm
), GFP_KERNEL
);
1044 ypcm
->type
= capture_bank_number
+ CAPTURE_REC
;
1045 ypcm
->substream
= substream
;
1046 ypcm
->capture_bank_number
= capture_bank_number
;
1047 chip
->capture_substream
[capture_bank_number
] = substream
;
1048 runtime
->private_data
= ypcm
;
1049 runtime
->private_free
= snd_ymfpci_pcm_free_substream
;
1050 snd_ymfpci_hw_start(chip
);
1054 static int snd_ymfpci_capture_rec_open(struct snd_pcm_substream
*substream
)
1056 return snd_ymfpci_capture_open(substream
, 0);
1059 static int snd_ymfpci_capture_ac97_open(struct snd_pcm_substream
*substream
)
1061 return snd_ymfpci_capture_open(substream
, 1);
1064 static int snd_ymfpci_playback_close_1(struct snd_pcm_substream
*substream
)
1069 static int snd_ymfpci_playback_close(struct snd_pcm_substream
*substream
)
1071 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1072 struct snd_ymfpci_pcm
*ypcm
= substream
->runtime
->private_data
;
1074 spin_lock_irq(&chip
->reg_lock
);
1075 if (ypcm
->output_rear
&& chip
->rear_opened
> 0) {
1076 chip
->rear_opened
--;
1077 ymfpci_close_extension(chip
);
1079 spin_unlock_irq(&chip
->reg_lock
);
1080 return snd_ymfpci_playback_close_1(substream
);
1083 static int snd_ymfpci_playback_spdif_close(struct snd_pcm_substream
*substream
)
1085 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1087 spin_lock_irq(&chip
->reg_lock
);
1088 chip
->spdif_opened
= 0;
1089 ymfpci_close_extension(chip
);
1090 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTCTRL
,
1091 snd_ymfpci_readw(chip
, YDSXGR_SPDIFOUTCTRL
) & ~2);
1092 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTSTATUS
, chip
->spdif_bits
);
1093 spin_unlock_irq(&chip
->reg_lock
);
1094 chip
->spdif_pcm_ctl
->vd
[0].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1095 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
1096 SNDRV_CTL_EVENT_MASK_INFO
, &chip
->spdif_pcm_ctl
->id
);
1097 return snd_ymfpci_playback_close_1(substream
);
1100 static int snd_ymfpci_playback_4ch_close(struct snd_pcm_substream
*substream
)
1102 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1104 spin_lock_irq(&chip
->reg_lock
);
1105 if (chip
->rear_opened
> 0) {
1106 chip
->rear_opened
--;
1107 ymfpci_close_extension(chip
);
1109 spin_unlock_irq(&chip
->reg_lock
);
1110 return snd_ymfpci_playback_close_1(substream
);
1113 static int snd_ymfpci_capture_close(struct snd_pcm_substream
*substream
)
1115 struct snd_ymfpci
*chip
= snd_pcm_substream_chip(substream
);
1116 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1117 struct snd_ymfpci_pcm
*ypcm
= runtime
->private_data
;
1120 chip
->capture_substream
[ypcm
->capture_bank_number
] = NULL
;
1121 snd_ymfpci_hw_stop(chip
);
1126 static struct snd_pcm_ops snd_ymfpci_playback_ops
= {
1127 .open
= snd_ymfpci_playback_open
,
1128 .close
= snd_ymfpci_playback_close
,
1129 .ioctl
= snd_pcm_lib_ioctl
,
1130 .hw_params
= snd_ymfpci_playback_hw_params
,
1131 .hw_free
= snd_ymfpci_playback_hw_free
,
1132 .prepare
= snd_ymfpci_playback_prepare
,
1133 .trigger
= snd_ymfpci_playback_trigger
,
1134 .pointer
= snd_ymfpci_playback_pointer
,
1137 static struct snd_pcm_ops snd_ymfpci_capture_rec_ops
= {
1138 .open
= snd_ymfpci_capture_rec_open
,
1139 .close
= snd_ymfpci_capture_close
,
1140 .ioctl
= snd_pcm_lib_ioctl
,
1141 .hw_params
= snd_ymfpci_capture_hw_params
,
1142 .hw_free
= snd_ymfpci_capture_hw_free
,
1143 .prepare
= snd_ymfpci_capture_prepare
,
1144 .trigger
= snd_ymfpci_capture_trigger
,
1145 .pointer
= snd_ymfpci_capture_pointer
,
1148 int snd_ymfpci_pcm(struct snd_ymfpci
*chip
, int device
, struct snd_pcm
**rpcm
)
1150 struct snd_pcm
*pcm
;
1155 if ((err
= snd_pcm_new(chip
->card
, "YMFPCI", device
, 32, 1, &pcm
)) < 0)
1157 pcm
->private_data
= chip
;
1159 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_ymfpci_playback_ops
);
1160 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_ymfpci_capture_rec_ops
);
1163 pcm
->info_flags
= 0;
1164 strcpy(pcm
->name
, "YMFPCI");
1167 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1168 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1170 err
= snd_pcm_add_chmap_ctls(pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
1171 snd_pcm_std_chmaps
, 2, 0, NULL
);
1180 static struct snd_pcm_ops snd_ymfpci_capture_ac97_ops
= {
1181 .open
= snd_ymfpci_capture_ac97_open
,
1182 .close
= snd_ymfpci_capture_close
,
1183 .ioctl
= snd_pcm_lib_ioctl
,
1184 .hw_params
= snd_ymfpci_capture_hw_params
,
1185 .hw_free
= snd_ymfpci_capture_hw_free
,
1186 .prepare
= snd_ymfpci_capture_prepare
,
1187 .trigger
= snd_ymfpci_capture_trigger
,
1188 .pointer
= snd_ymfpci_capture_pointer
,
1191 int snd_ymfpci_pcm2(struct snd_ymfpci
*chip
, int device
, struct snd_pcm
**rpcm
)
1193 struct snd_pcm
*pcm
;
1198 if ((err
= snd_pcm_new(chip
->card
, "YMFPCI - PCM2", device
, 0, 1, &pcm
)) < 0)
1200 pcm
->private_data
= chip
;
1202 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_ymfpci_capture_ac97_ops
);
1205 pcm
->info_flags
= 0;
1206 sprintf(pcm
->name
, "YMFPCI - %s",
1207 chip
->device_id
== PCI_DEVICE_ID_YAMAHA_754
? "Direct Recording" : "AC'97");
1210 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1211 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1218 static struct snd_pcm_ops snd_ymfpci_playback_spdif_ops
= {
1219 .open
= snd_ymfpci_playback_spdif_open
,
1220 .close
= snd_ymfpci_playback_spdif_close
,
1221 .ioctl
= snd_pcm_lib_ioctl
,
1222 .hw_params
= snd_ymfpci_playback_hw_params
,
1223 .hw_free
= snd_ymfpci_playback_hw_free
,
1224 .prepare
= snd_ymfpci_playback_prepare
,
1225 .trigger
= snd_ymfpci_playback_trigger
,
1226 .pointer
= snd_ymfpci_playback_pointer
,
1229 int snd_ymfpci_pcm_spdif(struct snd_ymfpci
*chip
, int device
,
1230 struct snd_pcm
**rpcm
)
1232 struct snd_pcm
*pcm
;
1237 if ((err
= snd_pcm_new(chip
->card
, "YMFPCI - IEC958", device
, 1, 0, &pcm
)) < 0)
1239 pcm
->private_data
= chip
;
1241 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_ymfpci_playback_spdif_ops
);
1244 pcm
->info_flags
= 0;
1245 strcpy(pcm
->name
, "YMFPCI - IEC958");
1246 chip
->pcm_spdif
= pcm
;
1248 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1249 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1256 static struct snd_pcm_ops snd_ymfpci_playback_4ch_ops
= {
1257 .open
= snd_ymfpci_playback_4ch_open
,
1258 .close
= snd_ymfpci_playback_4ch_close
,
1259 .ioctl
= snd_pcm_lib_ioctl
,
1260 .hw_params
= snd_ymfpci_playback_hw_params
,
1261 .hw_free
= snd_ymfpci_playback_hw_free
,
1262 .prepare
= snd_ymfpci_playback_prepare
,
1263 .trigger
= snd_ymfpci_playback_trigger
,
1264 .pointer
= snd_ymfpci_playback_pointer
,
1267 static const struct snd_pcm_chmap_elem surround_map
[] = {
1269 .map
= { SNDRV_CHMAP_MONO
} },
1271 .map
= { SNDRV_CHMAP_RL
, SNDRV_CHMAP_RR
} },
1275 int snd_ymfpci_pcm_4ch(struct snd_ymfpci
*chip
, int device
,
1276 struct snd_pcm
**rpcm
)
1278 struct snd_pcm
*pcm
;
1283 if ((err
= snd_pcm_new(chip
->card
, "YMFPCI - Rear", device
, 1, 0, &pcm
)) < 0)
1285 pcm
->private_data
= chip
;
1287 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_ymfpci_playback_4ch_ops
);
1290 pcm
->info_flags
= 0;
1291 strcpy(pcm
->name
, "YMFPCI - Rear PCM");
1292 chip
->pcm_4ch
= pcm
;
1294 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1295 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1297 err
= snd_pcm_add_chmap_ctls(pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
1298 surround_map
, 2, 0, NULL
);
1307 static int snd_ymfpci_spdif_default_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1309 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1314 static int snd_ymfpci_spdif_default_get(struct snd_kcontrol
*kcontrol
,
1315 struct snd_ctl_elem_value
*ucontrol
)
1317 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1319 spin_lock_irq(&chip
->reg_lock
);
1320 ucontrol
->value
.iec958
.status
[0] = (chip
->spdif_bits
>> 0) & 0xff;
1321 ucontrol
->value
.iec958
.status
[1] = (chip
->spdif_bits
>> 8) & 0xff;
1322 ucontrol
->value
.iec958
.status
[3] = IEC958_AES3_CON_FS_48000
;
1323 spin_unlock_irq(&chip
->reg_lock
);
1327 static int snd_ymfpci_spdif_default_put(struct snd_kcontrol
*kcontrol
,
1328 struct snd_ctl_elem_value
*ucontrol
)
1330 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1334 val
= ((ucontrol
->value
.iec958
.status
[0] & 0x3e) << 0) |
1335 (ucontrol
->value
.iec958
.status
[1] << 8);
1336 spin_lock_irq(&chip
->reg_lock
);
1337 change
= chip
->spdif_bits
!= val
;
1338 chip
->spdif_bits
= val
;
1339 if ((snd_ymfpci_readw(chip
, YDSXGR_SPDIFOUTCTRL
) & 1) && chip
->pcm_spdif
== NULL
)
1340 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTSTATUS
, chip
->spdif_bits
);
1341 spin_unlock_irq(&chip
->reg_lock
);
1345 static struct snd_kcontrol_new snd_ymfpci_spdif_default
=
1347 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1348 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
1349 .info
= snd_ymfpci_spdif_default_info
,
1350 .get
= snd_ymfpci_spdif_default_get
,
1351 .put
= snd_ymfpci_spdif_default_put
1354 static int snd_ymfpci_spdif_mask_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1356 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1361 static int snd_ymfpci_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
1362 struct snd_ctl_elem_value
*ucontrol
)
1364 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1366 spin_lock_irq(&chip
->reg_lock
);
1367 ucontrol
->value
.iec958
.status
[0] = 0x3e;
1368 ucontrol
->value
.iec958
.status
[1] = 0xff;
1369 spin_unlock_irq(&chip
->reg_lock
);
1373 static struct snd_kcontrol_new snd_ymfpci_spdif_mask
=
1375 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1376 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1377 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,CON_MASK
),
1378 .info
= snd_ymfpci_spdif_mask_info
,
1379 .get
= snd_ymfpci_spdif_mask_get
,
1382 static int snd_ymfpci_spdif_stream_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1384 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1389 static int snd_ymfpci_spdif_stream_get(struct snd_kcontrol
*kcontrol
,
1390 struct snd_ctl_elem_value
*ucontrol
)
1392 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1394 spin_lock_irq(&chip
->reg_lock
);
1395 ucontrol
->value
.iec958
.status
[0] = (chip
->spdif_pcm_bits
>> 0) & 0xff;
1396 ucontrol
->value
.iec958
.status
[1] = (chip
->spdif_pcm_bits
>> 8) & 0xff;
1397 ucontrol
->value
.iec958
.status
[3] = IEC958_AES3_CON_FS_48000
;
1398 spin_unlock_irq(&chip
->reg_lock
);
1402 static int snd_ymfpci_spdif_stream_put(struct snd_kcontrol
*kcontrol
,
1403 struct snd_ctl_elem_value
*ucontrol
)
1405 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1409 val
= ((ucontrol
->value
.iec958
.status
[0] & 0x3e) << 0) |
1410 (ucontrol
->value
.iec958
.status
[1] << 8);
1411 spin_lock_irq(&chip
->reg_lock
);
1412 change
= chip
->spdif_pcm_bits
!= val
;
1413 chip
->spdif_pcm_bits
= val
;
1414 if ((snd_ymfpci_readw(chip
, YDSXGR_SPDIFOUTCTRL
) & 2))
1415 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTSTATUS
, chip
->spdif_pcm_bits
);
1416 spin_unlock_irq(&chip
->reg_lock
);
1420 static struct snd_kcontrol_new snd_ymfpci_spdif_stream
=
1422 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
1423 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1424 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PCM_STREAM
),
1425 .info
= snd_ymfpci_spdif_stream_info
,
1426 .get
= snd_ymfpci_spdif_stream_get
,
1427 .put
= snd_ymfpci_spdif_stream_put
1430 static int snd_ymfpci_drec_source_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*info
)
1432 static const char *const texts
[3] = {"AC'97", "IEC958", "ZV Port"};
1434 return snd_ctl_enum_info(info
, 1, 3, texts
);
1437 static int snd_ymfpci_drec_source_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*value
)
1439 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1442 spin_lock_irq(&chip
->reg_lock
);
1443 reg
= snd_ymfpci_readw(chip
, YDSXGR_GLOBALCTRL
);
1444 spin_unlock_irq(&chip
->reg_lock
);
1446 value
->value
.enumerated
.item
[0] = 0;
1448 value
->value
.enumerated
.item
[0] = 1 + ((reg
& 0x200) != 0);
1452 static int snd_ymfpci_drec_source_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*value
)
1454 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1457 spin_lock_irq(&chip
->reg_lock
);
1458 old_reg
= snd_ymfpci_readw(chip
, YDSXGR_GLOBALCTRL
);
1459 if (value
->value
.enumerated
.item
[0] == 0)
1460 reg
= old_reg
& ~0x100;
1462 reg
= (old_reg
& ~0x300) | 0x100 | ((value
->value
.enumerated
.item
[0] == 2) << 9);
1463 snd_ymfpci_writew(chip
, YDSXGR_GLOBALCTRL
, reg
);
1464 spin_unlock_irq(&chip
->reg_lock
);
1465 return reg
!= old_reg
;
1468 static struct snd_kcontrol_new snd_ymfpci_drec_source
= {
1469 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
1470 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1471 .name
= "Direct Recording Source",
1472 .info
= snd_ymfpci_drec_source_info
,
1473 .get
= snd_ymfpci_drec_source_get
,
1474 .put
= snd_ymfpci_drec_source_put
1481 #define YMFPCI_SINGLE(xname, xindex, reg, shift) \
1482 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1483 .info = snd_ymfpci_info_single, \
1484 .get = snd_ymfpci_get_single, .put = snd_ymfpci_put_single, \
1485 .private_value = ((reg) | ((shift) << 16)) }
1487 #define snd_ymfpci_info_single snd_ctl_boolean_mono_info
1489 static int snd_ymfpci_get_single(struct snd_kcontrol
*kcontrol
,
1490 struct snd_ctl_elem_value
*ucontrol
)
1492 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1493 int reg
= kcontrol
->private_value
& 0xffff;
1494 unsigned int shift
= (kcontrol
->private_value
>> 16) & 0xff;
1495 unsigned int mask
= 1;
1498 case YDSXGR_SPDIFOUTCTRL
: break;
1499 case YDSXGR_SPDIFINCTRL
: break;
1500 default: return -EINVAL
;
1502 ucontrol
->value
.integer
.value
[0] =
1503 (snd_ymfpci_readl(chip
, reg
) >> shift
) & mask
;
1507 static int snd_ymfpci_put_single(struct snd_kcontrol
*kcontrol
,
1508 struct snd_ctl_elem_value
*ucontrol
)
1510 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1511 int reg
= kcontrol
->private_value
& 0xffff;
1512 unsigned int shift
= (kcontrol
->private_value
>> 16) & 0xff;
1513 unsigned int mask
= 1;
1515 unsigned int val
, oval
;
1518 case YDSXGR_SPDIFOUTCTRL
: break;
1519 case YDSXGR_SPDIFINCTRL
: break;
1520 default: return -EINVAL
;
1522 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1524 spin_lock_irq(&chip
->reg_lock
);
1525 oval
= snd_ymfpci_readl(chip
, reg
);
1526 val
= (oval
& ~(mask
<< shift
)) | val
;
1527 change
= val
!= oval
;
1528 snd_ymfpci_writel(chip
, reg
, val
);
1529 spin_unlock_irq(&chip
->reg_lock
);
1533 static const DECLARE_TLV_DB_LINEAR(db_scale_native
, TLV_DB_GAIN_MUTE
, 0);
1535 #define YMFPCI_DOUBLE(xname, xindex, reg) \
1536 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1537 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
1538 .info = snd_ymfpci_info_double, \
1539 .get = snd_ymfpci_get_double, .put = snd_ymfpci_put_double, \
1540 .private_value = reg, \
1541 .tlv = { .p = db_scale_native } }
1543 static int snd_ymfpci_info_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1545 unsigned int reg
= kcontrol
->private_value
;
1547 if (reg
< 0x80 || reg
>= 0xc0)
1549 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1551 uinfo
->value
.integer
.min
= 0;
1552 uinfo
->value
.integer
.max
= 16383;
1556 static int snd_ymfpci_get_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1558 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1559 unsigned int reg
= kcontrol
->private_value
;
1560 unsigned int shift_left
= 0, shift_right
= 16, mask
= 16383;
1563 if (reg
< 0x80 || reg
>= 0xc0)
1565 spin_lock_irq(&chip
->reg_lock
);
1566 val
= snd_ymfpci_readl(chip
, reg
);
1567 spin_unlock_irq(&chip
->reg_lock
);
1568 ucontrol
->value
.integer
.value
[0] = (val
>> shift_left
) & mask
;
1569 ucontrol
->value
.integer
.value
[1] = (val
>> shift_right
) & mask
;
1573 static int snd_ymfpci_put_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1575 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1576 unsigned int reg
= kcontrol
->private_value
;
1577 unsigned int shift_left
= 0, shift_right
= 16, mask
= 16383;
1579 unsigned int val1
, val2
, oval
;
1581 if (reg
< 0x80 || reg
>= 0xc0)
1583 val1
= ucontrol
->value
.integer
.value
[0] & mask
;
1584 val2
= ucontrol
->value
.integer
.value
[1] & mask
;
1585 val1
<<= shift_left
;
1586 val2
<<= shift_right
;
1587 spin_lock_irq(&chip
->reg_lock
);
1588 oval
= snd_ymfpci_readl(chip
, reg
);
1589 val1
= (oval
& ~((mask
<< shift_left
) | (mask
<< shift_right
))) | val1
| val2
;
1590 change
= val1
!= oval
;
1591 snd_ymfpci_writel(chip
, reg
, val1
);
1592 spin_unlock_irq(&chip
->reg_lock
);
1596 static int snd_ymfpci_put_nativedacvol(struct snd_kcontrol
*kcontrol
,
1597 struct snd_ctl_elem_value
*ucontrol
)
1599 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1600 unsigned int reg
= YDSXGR_NATIVEDACOUTVOL
;
1601 unsigned int reg2
= YDSXGR_BUF441OUTVOL
;
1603 unsigned int value
, oval
;
1605 value
= ucontrol
->value
.integer
.value
[0] & 0x3fff;
1606 value
|= (ucontrol
->value
.integer
.value
[1] & 0x3fff) << 16;
1607 spin_lock_irq(&chip
->reg_lock
);
1608 oval
= snd_ymfpci_readl(chip
, reg
);
1609 change
= value
!= oval
;
1610 snd_ymfpci_writel(chip
, reg
, value
);
1611 snd_ymfpci_writel(chip
, reg2
, value
);
1612 spin_unlock_irq(&chip
->reg_lock
);
1619 #define snd_ymfpci_info_dup4ch snd_ctl_boolean_mono_info
1621 static int snd_ymfpci_get_dup4ch(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1623 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1624 ucontrol
->value
.integer
.value
[0] = chip
->mode_dup4ch
;
1628 static int snd_ymfpci_put_dup4ch(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1630 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1632 change
= (ucontrol
->value
.integer
.value
[0] != chip
->mode_dup4ch
);
1634 chip
->mode_dup4ch
= !!ucontrol
->value
.integer
.value
[0];
1638 static struct snd_kcontrol_new snd_ymfpci_dup4ch
= {
1639 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1640 .name
= "4ch Duplication",
1641 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
1642 .info
= snd_ymfpci_info_dup4ch
,
1643 .get
= snd_ymfpci_get_dup4ch
,
1644 .put
= snd_ymfpci_put_dup4ch
,
1647 static struct snd_kcontrol_new snd_ymfpci_controls
[] = {
1649 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1650 .name
= "Wave Playback Volume",
1651 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
|
1652 SNDRV_CTL_ELEM_ACCESS_TLV_READ
,
1653 .info
= snd_ymfpci_info_double
,
1654 .get
= snd_ymfpci_get_double
,
1655 .put
= snd_ymfpci_put_nativedacvol
,
1656 .private_value
= YDSXGR_NATIVEDACOUTVOL
,
1657 .tlv
= { .p
= db_scale_native
},
1659 YMFPCI_DOUBLE("Wave Capture Volume", 0, YDSXGR_NATIVEDACLOOPVOL
),
1660 YMFPCI_DOUBLE("Digital Capture Volume", 0, YDSXGR_NATIVEDACINVOL
),
1661 YMFPCI_DOUBLE("Digital Capture Volume", 1, YDSXGR_NATIVEADCINVOL
),
1662 YMFPCI_DOUBLE("ADC Playback Volume", 0, YDSXGR_PRIADCOUTVOL
),
1663 YMFPCI_DOUBLE("ADC Capture Volume", 0, YDSXGR_PRIADCLOOPVOL
),
1664 YMFPCI_DOUBLE("ADC Playback Volume", 1, YDSXGR_SECADCOUTVOL
),
1665 YMFPCI_DOUBLE("ADC Capture Volume", 1, YDSXGR_SECADCLOOPVOL
),
1666 YMFPCI_DOUBLE("FM Legacy Playback Volume", 0, YDSXGR_LEGACYOUTVOL
),
1667 YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("AC97 ", PLAYBACK
,VOLUME
), 0, YDSXGR_ZVOUTVOL
),
1668 YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("", CAPTURE
,VOLUME
), 0, YDSXGR_ZVLOOPVOL
),
1669 YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("AC97 ",PLAYBACK
,VOLUME
), 1, YDSXGR_SPDIFOUTVOL
),
1670 YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("",CAPTURE
,VOLUME
), 1, YDSXGR_SPDIFLOOPVOL
),
1671 YMFPCI_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK
,SWITCH
), 0, YDSXGR_SPDIFOUTCTRL
, 0),
1672 YMFPCI_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE
,SWITCH
), 0, YDSXGR_SPDIFINCTRL
, 0),
1673 YMFPCI_SINGLE(SNDRV_CTL_NAME_IEC958("Loop",NONE
,NONE
), 0, YDSXGR_SPDIFINCTRL
, 4),
1681 static int snd_ymfpci_get_gpio_out(struct snd_ymfpci
*chip
, int pin
)
1684 unsigned long flags
;
1686 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1687 reg
= snd_ymfpci_readw(chip
, YDSXGR_GPIOFUNCENABLE
);
1688 reg
&= ~(1 << (pin
+ 8));
1690 snd_ymfpci_writew(chip
, YDSXGR_GPIOFUNCENABLE
, reg
);
1691 /* set the level mode for input line */
1692 mode
= snd_ymfpci_readw(chip
, YDSXGR_GPIOTYPECONFIG
);
1693 mode
&= ~(3 << (pin
* 2));
1694 snd_ymfpci_writew(chip
, YDSXGR_GPIOTYPECONFIG
, mode
);
1695 snd_ymfpci_writew(chip
, YDSXGR_GPIOFUNCENABLE
, reg
| (1 << (pin
+ 8)));
1696 mode
= snd_ymfpci_readw(chip
, YDSXGR_GPIOINSTATUS
);
1697 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1698 return (mode
>> pin
) & 1;
1701 static int snd_ymfpci_set_gpio_out(struct snd_ymfpci
*chip
, int pin
, int enable
)
1704 unsigned long flags
;
1706 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1707 reg
= snd_ymfpci_readw(chip
, YDSXGR_GPIOFUNCENABLE
);
1709 reg
&= ~(1 << (pin
+ 8));
1710 snd_ymfpci_writew(chip
, YDSXGR_GPIOFUNCENABLE
, reg
);
1711 snd_ymfpci_writew(chip
, YDSXGR_GPIOOUTCTRL
, enable
<< pin
);
1712 snd_ymfpci_writew(chip
, YDSXGR_GPIOFUNCENABLE
, reg
| (1 << (pin
+ 8)));
1713 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1718 #define snd_ymfpci_gpio_sw_info snd_ctl_boolean_mono_info
1720 static int snd_ymfpci_gpio_sw_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1722 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1723 int pin
= (int)kcontrol
->private_value
;
1724 ucontrol
->value
.integer
.value
[0] = snd_ymfpci_get_gpio_out(chip
, pin
);
1728 static int snd_ymfpci_gpio_sw_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1730 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1731 int pin
= (int)kcontrol
->private_value
;
1733 if (snd_ymfpci_get_gpio_out(chip
, pin
) != ucontrol
->value
.integer
.value
[0]) {
1734 snd_ymfpci_set_gpio_out(chip
, pin
, !!ucontrol
->value
.integer
.value
[0]);
1735 ucontrol
->value
.integer
.value
[0] = snd_ymfpci_get_gpio_out(chip
, pin
);
1741 static struct snd_kcontrol_new snd_ymfpci_rear_shared
= {
1742 .name
= "Shared Rear/Line-In Switch",
1743 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1744 .info
= snd_ymfpci_gpio_sw_info
,
1745 .get
= snd_ymfpci_gpio_sw_get
,
1746 .put
= snd_ymfpci_gpio_sw_put
,
1754 static int snd_ymfpci_pcm_vol_info(struct snd_kcontrol
*kcontrol
,
1755 struct snd_ctl_elem_info
*uinfo
)
1757 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1759 uinfo
->value
.integer
.min
= 0;
1760 uinfo
->value
.integer
.max
= 0x8000;
1764 static int snd_ymfpci_pcm_vol_get(struct snd_kcontrol
*kcontrol
,
1765 struct snd_ctl_elem_value
*ucontrol
)
1767 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1768 unsigned int subs
= kcontrol
->id
.subdevice
;
1770 ucontrol
->value
.integer
.value
[0] = chip
->pcm_mixer
[subs
].left
;
1771 ucontrol
->value
.integer
.value
[1] = chip
->pcm_mixer
[subs
].right
;
1775 static int snd_ymfpci_pcm_vol_put(struct snd_kcontrol
*kcontrol
,
1776 struct snd_ctl_elem_value
*ucontrol
)
1778 struct snd_ymfpci
*chip
= snd_kcontrol_chip(kcontrol
);
1779 unsigned int subs
= kcontrol
->id
.subdevice
;
1780 struct snd_pcm_substream
*substream
;
1781 unsigned long flags
;
1783 if (ucontrol
->value
.integer
.value
[0] != chip
->pcm_mixer
[subs
].left
||
1784 ucontrol
->value
.integer
.value
[1] != chip
->pcm_mixer
[subs
].right
) {
1785 chip
->pcm_mixer
[subs
].left
= ucontrol
->value
.integer
.value
[0];
1786 chip
->pcm_mixer
[subs
].right
= ucontrol
->value
.integer
.value
[1];
1787 if (chip
->pcm_mixer
[subs
].left
> 0x8000)
1788 chip
->pcm_mixer
[subs
].left
= 0x8000;
1789 if (chip
->pcm_mixer
[subs
].right
> 0x8000)
1790 chip
->pcm_mixer
[subs
].right
= 0x8000;
1792 substream
= (struct snd_pcm_substream
*)kcontrol
->private_value
;
1793 spin_lock_irqsave(&chip
->voice_lock
, flags
);
1794 if (substream
->runtime
&& substream
->runtime
->private_data
) {
1795 struct snd_ymfpci_pcm
*ypcm
= substream
->runtime
->private_data
;
1796 if (!ypcm
->use_441_slot
)
1797 ypcm
->update_pcm_vol
= 2;
1799 spin_unlock_irqrestore(&chip
->voice_lock
, flags
);
1805 static struct snd_kcontrol_new snd_ymfpci_pcm_volume
= {
1806 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1807 .name
= "PCM Playback Volume",
1808 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
|
1809 SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
1810 .info
= snd_ymfpci_pcm_vol_info
,
1811 .get
= snd_ymfpci_pcm_vol_get
,
1812 .put
= snd_ymfpci_pcm_vol_put
,
1820 static void snd_ymfpci_mixer_free_ac97_bus(struct snd_ac97_bus
*bus
)
1822 struct snd_ymfpci
*chip
= bus
->private_data
;
1823 chip
->ac97_bus
= NULL
;
1826 static void snd_ymfpci_mixer_free_ac97(struct snd_ac97
*ac97
)
1828 struct snd_ymfpci
*chip
= ac97
->private_data
;
1832 int snd_ymfpci_mixer(struct snd_ymfpci
*chip
, int rear_switch
)
1834 struct snd_ac97_template ac97
;
1835 struct snd_kcontrol
*kctl
;
1836 struct snd_pcm_substream
*substream
;
1839 static struct snd_ac97_bus_ops ops
= {
1840 .write
= snd_ymfpci_codec_write
,
1841 .read
= snd_ymfpci_codec_read
,
1844 if ((err
= snd_ac97_bus(chip
->card
, 0, &ops
, chip
, &chip
->ac97_bus
)) < 0)
1846 chip
->ac97_bus
->private_free
= snd_ymfpci_mixer_free_ac97_bus
;
1847 chip
->ac97_bus
->no_vra
= 1; /* YMFPCI doesn't need VRA */
1849 memset(&ac97
, 0, sizeof(ac97
));
1850 ac97
.private_data
= chip
;
1851 ac97
.private_free
= snd_ymfpci_mixer_free_ac97
;
1852 if ((err
= snd_ac97_mixer(chip
->ac97_bus
, &ac97
, &chip
->ac97
)) < 0)
1856 snd_ac97_update_bits(chip
->ac97
, AC97_EXTENDED_STATUS
,
1857 AC97_EA_VRA
|AC97_EA_VRM
, 0);
1859 for (idx
= 0; idx
< ARRAY_SIZE(snd_ymfpci_controls
); idx
++) {
1860 if ((err
= snd_ctl_add(chip
->card
, snd_ctl_new1(&snd_ymfpci_controls
[idx
], chip
))) < 0)
1863 if (chip
->ac97
->ext_id
& AC97_EI_SDAC
) {
1864 kctl
= snd_ctl_new1(&snd_ymfpci_dup4ch
, chip
);
1865 err
= snd_ctl_add(chip
->card
, kctl
);
1870 /* add S/PDIF control */
1871 if (snd_BUG_ON(!chip
->pcm_spdif
))
1873 if ((err
= snd_ctl_add(chip
->card
, kctl
= snd_ctl_new1(&snd_ymfpci_spdif_default
, chip
))) < 0)
1875 kctl
->id
.device
= chip
->pcm_spdif
->device
;
1876 if ((err
= snd_ctl_add(chip
->card
, kctl
= snd_ctl_new1(&snd_ymfpci_spdif_mask
, chip
))) < 0)
1878 kctl
->id
.device
= chip
->pcm_spdif
->device
;
1879 if ((err
= snd_ctl_add(chip
->card
, kctl
= snd_ctl_new1(&snd_ymfpci_spdif_stream
, chip
))) < 0)
1881 kctl
->id
.device
= chip
->pcm_spdif
->device
;
1882 chip
->spdif_pcm_ctl
= kctl
;
1884 /* direct recording source */
1885 if (chip
->device_id
== PCI_DEVICE_ID_YAMAHA_754
&&
1886 (err
= snd_ctl_add(chip
->card
, kctl
= snd_ctl_new1(&snd_ymfpci_drec_source
, chip
))) < 0)
1890 * shared rear/line-in
1893 if ((err
= snd_ctl_add(chip
->card
, snd_ctl_new1(&snd_ymfpci_rear_shared
, chip
))) < 0)
1897 /* per-voice volume */
1898 substream
= chip
->pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
;
1899 for (idx
= 0; idx
< 32; ++idx
) {
1900 kctl
= snd_ctl_new1(&snd_ymfpci_pcm_volume
, chip
);
1903 kctl
->id
.device
= chip
->pcm
->device
;
1904 kctl
->id
.subdevice
= idx
;
1905 kctl
->private_value
= (unsigned long)substream
;
1906 if ((err
= snd_ctl_add(chip
->card
, kctl
)) < 0)
1908 chip
->pcm_mixer
[idx
].left
= 0x8000;
1909 chip
->pcm_mixer
[idx
].right
= 0x8000;
1910 chip
->pcm_mixer
[idx
].ctl
= kctl
;
1911 substream
= substream
->next
;
1922 static int snd_ymfpci_timer_start(struct snd_timer
*timer
)
1924 struct snd_ymfpci
*chip
;
1925 unsigned long flags
;
1928 chip
= snd_timer_chip(timer
);
1929 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1930 if (timer
->sticks
> 1) {
1931 chip
->timer_ticks
= timer
->sticks
;
1932 count
= timer
->sticks
- 1;
1935 * Divisor 1 is not allowed; fake it by using divisor 2 and
1936 * counting two ticks for each interrupt.
1938 chip
->timer_ticks
= 2;
1941 snd_ymfpci_writew(chip
, YDSXGR_TIMERCOUNT
, count
);
1942 snd_ymfpci_writeb(chip
, YDSXGR_TIMERCTRL
, 0x03);
1943 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1947 static int snd_ymfpci_timer_stop(struct snd_timer
*timer
)
1949 struct snd_ymfpci
*chip
;
1950 unsigned long flags
;
1952 chip
= snd_timer_chip(timer
);
1953 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1954 snd_ymfpci_writeb(chip
, YDSXGR_TIMERCTRL
, 0x00);
1955 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1959 static int snd_ymfpci_timer_precise_resolution(struct snd_timer
*timer
,
1960 unsigned long *num
, unsigned long *den
)
1967 static struct snd_timer_hardware snd_ymfpci_timer_hw
= {
1968 .flags
= SNDRV_TIMER_HW_AUTO
,
1969 .resolution
= 10417, /* 1 / 96 kHz = 10.41666...us */
1971 .start
= snd_ymfpci_timer_start
,
1972 .stop
= snd_ymfpci_timer_stop
,
1973 .precise_resolution
= snd_ymfpci_timer_precise_resolution
,
1976 int snd_ymfpci_timer(struct snd_ymfpci
*chip
, int device
)
1978 struct snd_timer
*timer
= NULL
;
1979 struct snd_timer_id tid
;
1982 tid
.dev_class
= SNDRV_TIMER_CLASS_CARD
;
1983 tid
.dev_sclass
= SNDRV_TIMER_SCLASS_NONE
;
1984 tid
.card
= chip
->card
->number
;
1985 tid
.device
= device
;
1987 if ((err
= snd_timer_new(chip
->card
, "YMFPCI", &tid
, &timer
)) >= 0) {
1988 strcpy(timer
->name
, "YMFPCI timer");
1989 timer
->private_data
= chip
;
1990 timer
->hw
= snd_ymfpci_timer_hw
;
1992 chip
->timer
= timer
;
2001 static void snd_ymfpci_proc_read(struct snd_info_entry
*entry
,
2002 struct snd_info_buffer
*buffer
)
2004 struct snd_ymfpci
*chip
= entry
->private_data
;
2007 snd_iprintf(buffer
, "YMFPCI\n\n");
2008 for (i
= 0; i
<= YDSXGR_WORKBASE
; i
+= 4)
2009 snd_iprintf(buffer
, "%04x: %04x\n", i
, snd_ymfpci_readl(chip
, i
));
2012 static int snd_ymfpci_proc_init(struct snd_card
*card
, struct snd_ymfpci
*chip
)
2014 struct snd_info_entry
*entry
;
2016 if (! snd_card_proc_new(card
, "ymfpci", &entry
))
2017 snd_info_set_text_ops(entry
, chip
, snd_ymfpci_proc_read
);
2022 * initialization routines
2025 static void snd_ymfpci_aclink_reset(struct pci_dev
* pci
)
2029 pci_read_config_byte(pci
, PCIR_DSXG_CTRL
, &cmd
);
2030 #if 0 // force to reset
2033 pci_write_config_byte(pci
, PCIR_DSXG_CTRL
, cmd
& 0xfc);
2034 pci_write_config_byte(pci
, PCIR_DSXG_CTRL
, cmd
| 0x03);
2035 pci_write_config_byte(pci
, PCIR_DSXG_CTRL
, cmd
& 0xfc);
2036 pci_write_config_word(pci
, PCIR_DSXG_PWRCTRL1
, 0);
2037 pci_write_config_word(pci
, PCIR_DSXG_PWRCTRL2
, 0);
2043 static void snd_ymfpci_enable_dsp(struct snd_ymfpci
*chip
)
2045 snd_ymfpci_writel(chip
, YDSXGR_CONFIG
, 0x00000001);
2048 static void snd_ymfpci_disable_dsp(struct snd_ymfpci
*chip
)
2053 val
= snd_ymfpci_readl(chip
, YDSXGR_CONFIG
);
2055 snd_ymfpci_writel(chip
, YDSXGR_CONFIG
, 0x00000000);
2056 while (timeout
-- > 0) {
2057 val
= snd_ymfpci_readl(chip
, YDSXGR_STATUS
);
2058 if ((val
& 0x00000002) == 0)
2063 static int snd_ymfpci_request_firmware(struct snd_ymfpci
*chip
)
2068 err
= request_firmware(&chip
->dsp_microcode
, "yamaha/ds1_dsp.fw",
2071 if (chip
->dsp_microcode
->size
!= YDSXG_DSPLENGTH
) {
2072 dev_err(chip
->card
->dev
,
2073 "DSP microcode has wrong size\n");
2079 is_1e
= chip
->device_id
== PCI_DEVICE_ID_YAMAHA_724F
||
2080 chip
->device_id
== PCI_DEVICE_ID_YAMAHA_740C
||
2081 chip
->device_id
== PCI_DEVICE_ID_YAMAHA_744
||
2082 chip
->device_id
== PCI_DEVICE_ID_YAMAHA_754
;
2083 name
= is_1e
? "yamaha/ds1e_ctrl.fw" : "yamaha/ds1_ctrl.fw";
2084 err
= request_firmware(&chip
->controller_microcode
, name
,
2087 if (chip
->controller_microcode
->size
!= YDSXG_CTRLLENGTH
) {
2088 dev_err(chip
->card
->dev
,
2089 "controller microcode has wrong size\n");
2098 MODULE_FIRMWARE("yamaha/ds1_dsp.fw");
2099 MODULE_FIRMWARE("yamaha/ds1_ctrl.fw");
2100 MODULE_FIRMWARE("yamaha/ds1e_ctrl.fw");
2102 static void snd_ymfpci_download_image(struct snd_ymfpci
*chip
)
2108 snd_ymfpci_writel(chip
, YDSXGR_NATIVEDACOUTVOL
, 0x00000000);
2109 snd_ymfpci_disable_dsp(chip
);
2110 snd_ymfpci_writel(chip
, YDSXGR_MODE
, 0x00010000);
2111 snd_ymfpci_writel(chip
, YDSXGR_MODE
, 0x00000000);
2112 snd_ymfpci_writel(chip
, YDSXGR_MAPOFREC
, 0x00000000);
2113 snd_ymfpci_writel(chip
, YDSXGR_MAPOFEFFECT
, 0x00000000);
2114 snd_ymfpci_writel(chip
, YDSXGR_PLAYCTRLBASE
, 0x00000000);
2115 snd_ymfpci_writel(chip
, YDSXGR_RECCTRLBASE
, 0x00000000);
2116 snd_ymfpci_writel(chip
, YDSXGR_EFFCTRLBASE
, 0x00000000);
2117 ctrl
= snd_ymfpci_readw(chip
, YDSXGR_GLOBALCTRL
);
2118 snd_ymfpci_writew(chip
, YDSXGR_GLOBALCTRL
, ctrl
& ~0x0007);
2120 /* setup DSP instruction code */
2121 inst
= (const __le32
*)chip
->dsp_microcode
->data
;
2122 for (i
= 0; i
< YDSXG_DSPLENGTH
/ 4; i
++)
2123 snd_ymfpci_writel(chip
, YDSXGR_DSPINSTRAM
+ (i
<< 2),
2124 le32_to_cpu(inst
[i
]));
2126 /* setup control instruction code */
2127 inst
= (const __le32
*)chip
->controller_microcode
->data
;
2128 for (i
= 0; i
< YDSXG_CTRLLENGTH
/ 4; i
++)
2129 snd_ymfpci_writel(chip
, YDSXGR_CTRLINSTRAM
+ (i
<< 2),
2130 le32_to_cpu(inst
[i
]));
2132 snd_ymfpci_enable_dsp(chip
);
2135 static int snd_ymfpci_memalloc(struct snd_ymfpci
*chip
)
2137 long size
, playback_ctrl_size
;
2138 int voice
, bank
, reg
;
2140 dma_addr_t ptr_addr
;
2142 playback_ctrl_size
= 4 + 4 * YDSXG_PLAYBACK_VOICES
;
2143 chip
->bank_size_playback
= snd_ymfpci_readl(chip
, YDSXGR_PLAYCTRLSIZE
) << 2;
2144 chip
->bank_size_capture
= snd_ymfpci_readl(chip
, YDSXGR_RECCTRLSIZE
) << 2;
2145 chip
->bank_size_effect
= snd_ymfpci_readl(chip
, YDSXGR_EFFCTRLSIZE
) << 2;
2146 chip
->work_size
= YDSXG_DEFAULT_WORK_SIZE
;
2148 size
= ALIGN(playback_ctrl_size
, 0x100) +
2149 ALIGN(chip
->bank_size_playback
* 2 * YDSXG_PLAYBACK_VOICES
, 0x100) +
2150 ALIGN(chip
->bank_size_capture
* 2 * YDSXG_CAPTURE_VOICES
, 0x100) +
2151 ALIGN(chip
->bank_size_effect
* 2 * YDSXG_EFFECT_VOICES
, 0x100) +
2153 /* work_ptr must be aligned to 256 bytes, but it's already
2154 covered with the kernel page allocation mechanism */
2155 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(chip
->pci
),
2156 size
, &chip
->work_ptr
) < 0)
2158 ptr
= chip
->work_ptr
.area
;
2159 ptr_addr
= chip
->work_ptr
.addr
;
2160 memset(ptr
, 0, size
); /* for sure */
2162 chip
->bank_base_playback
= ptr
;
2163 chip
->bank_base_playback_addr
= ptr_addr
;
2164 chip
->ctrl_playback
= (u32
*)ptr
;
2165 chip
->ctrl_playback
[0] = cpu_to_le32(YDSXG_PLAYBACK_VOICES
);
2166 ptr
+= ALIGN(playback_ctrl_size
, 0x100);
2167 ptr_addr
+= ALIGN(playback_ctrl_size
, 0x100);
2168 for (voice
= 0; voice
< YDSXG_PLAYBACK_VOICES
; voice
++) {
2169 chip
->voices
[voice
].number
= voice
;
2170 chip
->voices
[voice
].bank
= (struct snd_ymfpci_playback_bank
*)ptr
;
2171 chip
->voices
[voice
].bank_addr
= ptr_addr
;
2172 for (bank
= 0; bank
< 2; bank
++) {
2173 chip
->bank_playback
[voice
][bank
] = (struct snd_ymfpci_playback_bank
*)ptr
;
2174 ptr
+= chip
->bank_size_playback
;
2175 ptr_addr
+= chip
->bank_size_playback
;
2178 ptr
= (char *)ALIGN((unsigned long)ptr
, 0x100);
2179 ptr_addr
= ALIGN(ptr_addr
, 0x100);
2180 chip
->bank_base_capture
= ptr
;
2181 chip
->bank_base_capture_addr
= ptr_addr
;
2182 for (voice
= 0; voice
< YDSXG_CAPTURE_VOICES
; voice
++)
2183 for (bank
= 0; bank
< 2; bank
++) {
2184 chip
->bank_capture
[voice
][bank
] = (struct snd_ymfpci_capture_bank
*)ptr
;
2185 ptr
+= chip
->bank_size_capture
;
2186 ptr_addr
+= chip
->bank_size_capture
;
2188 ptr
= (char *)ALIGN((unsigned long)ptr
, 0x100);
2189 ptr_addr
= ALIGN(ptr_addr
, 0x100);
2190 chip
->bank_base_effect
= ptr
;
2191 chip
->bank_base_effect_addr
= ptr_addr
;
2192 for (voice
= 0; voice
< YDSXG_EFFECT_VOICES
; voice
++)
2193 for (bank
= 0; bank
< 2; bank
++) {
2194 chip
->bank_effect
[voice
][bank
] = (struct snd_ymfpci_effect_bank
*)ptr
;
2195 ptr
+= chip
->bank_size_effect
;
2196 ptr_addr
+= chip
->bank_size_effect
;
2198 ptr
= (char *)ALIGN((unsigned long)ptr
, 0x100);
2199 ptr_addr
= ALIGN(ptr_addr
, 0x100);
2200 chip
->work_base
= ptr
;
2201 chip
->work_base_addr
= ptr_addr
;
2203 snd_BUG_ON(ptr
+ chip
->work_size
!=
2204 chip
->work_ptr
.area
+ chip
->work_ptr
.bytes
);
2206 snd_ymfpci_writel(chip
, YDSXGR_PLAYCTRLBASE
, chip
->bank_base_playback_addr
);
2207 snd_ymfpci_writel(chip
, YDSXGR_RECCTRLBASE
, chip
->bank_base_capture_addr
);
2208 snd_ymfpci_writel(chip
, YDSXGR_EFFCTRLBASE
, chip
->bank_base_effect_addr
);
2209 snd_ymfpci_writel(chip
, YDSXGR_WORKBASE
, chip
->work_base_addr
);
2210 snd_ymfpci_writel(chip
, YDSXGR_WORKSIZE
, chip
->work_size
>> 2);
2212 /* S/PDIF output initialization */
2213 chip
->spdif_bits
= chip
->spdif_pcm_bits
= SNDRV_PCM_DEFAULT_CON_SPDIF
& 0xffff;
2214 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTCTRL
, 0);
2215 snd_ymfpci_writew(chip
, YDSXGR_SPDIFOUTSTATUS
, chip
->spdif_bits
);
2217 /* S/PDIF input initialization */
2218 snd_ymfpci_writew(chip
, YDSXGR_SPDIFINCTRL
, 0);
2220 /* digital mixer setup */
2221 for (reg
= 0x80; reg
< 0xc0; reg
+= 4)
2222 snd_ymfpci_writel(chip
, reg
, 0);
2223 snd_ymfpci_writel(chip
, YDSXGR_NATIVEDACOUTVOL
, 0x3fff3fff);
2224 snd_ymfpci_writel(chip
, YDSXGR_BUF441OUTVOL
, 0x3fff3fff);
2225 snd_ymfpci_writel(chip
, YDSXGR_ZVOUTVOL
, 0x3fff3fff);
2226 snd_ymfpci_writel(chip
, YDSXGR_SPDIFOUTVOL
, 0x3fff3fff);
2227 snd_ymfpci_writel(chip
, YDSXGR_NATIVEADCINVOL
, 0x3fff3fff);
2228 snd_ymfpci_writel(chip
, YDSXGR_NATIVEDACINVOL
, 0x3fff3fff);
2229 snd_ymfpci_writel(chip
, YDSXGR_PRIADCLOOPVOL
, 0x3fff3fff);
2230 snd_ymfpci_writel(chip
, YDSXGR_LEGACYOUTVOL
, 0x3fff3fff);
2235 static int snd_ymfpci_free(struct snd_ymfpci
*chip
)
2239 if (snd_BUG_ON(!chip
))
2242 if (chip
->res_reg_area
) { /* don't touch busy hardware */
2243 snd_ymfpci_writel(chip
, YDSXGR_NATIVEDACOUTVOL
, 0);
2244 snd_ymfpci_writel(chip
, YDSXGR_BUF441OUTVOL
, 0);
2245 snd_ymfpci_writel(chip
, YDSXGR_LEGACYOUTVOL
, 0);
2246 snd_ymfpci_writel(chip
, YDSXGR_STATUS
, ~0);
2247 snd_ymfpci_disable_dsp(chip
);
2248 snd_ymfpci_writel(chip
, YDSXGR_PLAYCTRLBASE
, 0);
2249 snd_ymfpci_writel(chip
, YDSXGR_RECCTRLBASE
, 0);
2250 snd_ymfpci_writel(chip
, YDSXGR_EFFCTRLBASE
, 0);
2251 snd_ymfpci_writel(chip
, YDSXGR_WORKBASE
, 0);
2252 snd_ymfpci_writel(chip
, YDSXGR_WORKSIZE
, 0);
2253 ctrl
= snd_ymfpci_readw(chip
, YDSXGR_GLOBALCTRL
);
2254 snd_ymfpci_writew(chip
, YDSXGR_GLOBALCTRL
, ctrl
& ~0x0007);
2257 snd_ymfpci_ac3_done(chip
);
2259 /* Set PCI device to D3 state */
2261 /* FIXME: temporarily disabled, otherwise we cannot fire up
2262 * the chip again unless reboot. ACPI bug?
2264 pci_set_power_state(chip
->pci
, PCI_D3hot
);
2267 #ifdef CONFIG_PM_SLEEP
2268 kfree(chip
->saved_regs
);
2271 free_irq(chip
->irq
, chip
);
2272 release_and_free_resource(chip
->mpu_res
);
2273 release_and_free_resource(chip
->fm_res
);
2274 snd_ymfpci_free_gameport(chip
);
2275 if (chip
->reg_area_virt
)
2276 iounmap(chip
->reg_area_virt
);
2277 if (chip
->work_ptr
.area
)
2278 snd_dma_free_pages(&chip
->work_ptr
);
2280 release_and_free_resource(chip
->res_reg_area
);
2282 pci_write_config_word(chip
->pci
, 0x40, chip
->old_legacy_ctrl
);
2284 pci_disable_device(chip
->pci
);
2285 release_firmware(chip
->dsp_microcode
);
2286 release_firmware(chip
->controller_microcode
);
2291 static int snd_ymfpci_dev_free(struct snd_device
*device
)
2293 struct snd_ymfpci
*chip
= device
->device_data
;
2294 return snd_ymfpci_free(chip
);
2297 #ifdef CONFIG_PM_SLEEP
2298 static int saved_regs_index
[] = {
2300 YDSXGR_SPDIFOUTCTRL
,
2301 YDSXGR_SPDIFOUTSTATUS
,
2304 YDSXGR_PRIADCLOOPVOL
,
2305 YDSXGR_NATIVEDACINVOL
,
2306 YDSXGR_NATIVEDACOUTVOL
,
2307 YDSXGR_BUF441OUTVOL
,
2308 YDSXGR_NATIVEADCINVOL
,
2309 YDSXGR_SPDIFLOOPVOL
,
2312 YDSXGR_LEGACYOUTVOL
,
2314 YDSXGR_PLAYCTRLBASE
,
2318 /* capture set up */
2325 #define YDSXGR_NUM_SAVED_REGS ARRAY_SIZE(saved_regs_index)
2327 static int snd_ymfpci_suspend(struct device
*dev
)
2329 struct pci_dev
*pci
= to_pci_dev(dev
);
2330 struct snd_card
*card
= dev_get_drvdata(dev
);
2331 struct snd_ymfpci
*chip
= card
->private_data
;
2334 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
2335 snd_pcm_suspend_all(chip
->pcm
);
2336 snd_pcm_suspend_all(chip
->pcm2
);
2337 snd_pcm_suspend_all(chip
->pcm_spdif
);
2338 snd_pcm_suspend_all(chip
->pcm_4ch
);
2339 snd_ac97_suspend(chip
->ac97
);
2340 for (i
= 0; i
< YDSXGR_NUM_SAVED_REGS
; i
++)
2341 chip
->saved_regs
[i
] = snd_ymfpci_readl(chip
, saved_regs_index
[i
]);
2342 chip
->saved_ydsxgr_mode
= snd_ymfpci_readl(chip
, YDSXGR_MODE
);
2343 pci_read_config_word(chip
->pci
, PCIR_DSXG_LEGACY
,
2344 &chip
->saved_dsxg_legacy
);
2345 pci_read_config_word(chip
->pci
, PCIR_DSXG_ELEGACY
,
2346 &chip
->saved_dsxg_elegacy
);
2347 snd_ymfpci_writel(chip
, YDSXGR_NATIVEDACOUTVOL
, 0);
2348 snd_ymfpci_writel(chip
, YDSXGR_BUF441OUTVOL
, 0);
2349 snd_ymfpci_disable_dsp(chip
);
2350 pci_disable_device(pci
);
2351 pci_save_state(pci
);
2352 pci_set_power_state(pci
, PCI_D3hot
);
2356 static int snd_ymfpci_resume(struct device
*dev
)
2358 struct pci_dev
*pci
= to_pci_dev(dev
);
2359 struct snd_card
*card
= dev_get_drvdata(dev
);
2360 struct snd_ymfpci
*chip
= card
->private_data
;
2363 pci_set_power_state(pci
, PCI_D0
);
2364 pci_restore_state(pci
);
2365 if (pci_enable_device(pci
) < 0) {
2366 dev_err(dev
, "pci_enable_device failed, disabling device\n");
2367 snd_card_disconnect(card
);
2370 pci_set_master(pci
);
2371 snd_ymfpci_aclink_reset(pci
);
2372 snd_ymfpci_codec_ready(chip
, 0);
2373 snd_ymfpci_download_image(chip
);
2376 for (i
= 0; i
< YDSXGR_NUM_SAVED_REGS
; i
++)
2377 snd_ymfpci_writel(chip
, saved_regs_index
[i
], chip
->saved_regs
[i
]);
2379 snd_ac97_resume(chip
->ac97
);
2381 pci_write_config_word(chip
->pci
, PCIR_DSXG_LEGACY
,
2382 chip
->saved_dsxg_legacy
);
2383 pci_write_config_word(chip
->pci
, PCIR_DSXG_ELEGACY
,
2384 chip
->saved_dsxg_elegacy
);
2386 /* start hw again */
2387 if (chip
->start_count
> 0) {
2388 spin_lock_irq(&chip
->reg_lock
);
2389 snd_ymfpci_writel(chip
, YDSXGR_MODE
, chip
->saved_ydsxgr_mode
);
2390 chip
->active_bank
= snd_ymfpci_readl(chip
, YDSXGR_CTRLSELECT
);
2391 spin_unlock_irq(&chip
->reg_lock
);
2393 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
2397 SIMPLE_DEV_PM_OPS(snd_ymfpci_pm
, snd_ymfpci_suspend
, snd_ymfpci_resume
);
2398 #endif /* CONFIG_PM_SLEEP */
2400 int snd_ymfpci_create(struct snd_card
*card
,
2401 struct pci_dev
*pci
,
2402 unsigned short old_legacy_ctrl
,
2403 struct snd_ymfpci
**rchip
)
2405 struct snd_ymfpci
*chip
;
2407 static struct snd_device_ops ops
= {
2408 .dev_free
= snd_ymfpci_dev_free
,
2413 /* enable PCI device */
2414 if ((err
= pci_enable_device(pci
)) < 0)
2417 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
2419 pci_disable_device(pci
);
2422 chip
->old_legacy_ctrl
= old_legacy_ctrl
;
2423 spin_lock_init(&chip
->reg_lock
);
2424 spin_lock_init(&chip
->voice_lock
);
2425 init_waitqueue_head(&chip
->interrupt_sleep
);
2426 atomic_set(&chip
->interrupt_sleep_count
, 0);
2430 chip
->device_id
= pci
->device
;
2431 chip
->rev
= pci
->revision
;
2432 chip
->reg_area_phys
= pci_resource_start(pci
, 0);
2433 chip
->reg_area_virt
= ioremap_nocache(chip
->reg_area_phys
, 0x8000);
2434 pci_set_master(pci
);
2435 chip
->src441_used
= -1;
2437 if ((chip
->res_reg_area
= request_mem_region(chip
->reg_area_phys
, 0x8000, "YMFPCI")) == NULL
) {
2438 dev_err(chip
->card
->dev
,
2439 "unable to grab memory region 0x%lx-0x%lx\n",
2440 chip
->reg_area_phys
, chip
->reg_area_phys
+ 0x8000 - 1);
2441 snd_ymfpci_free(chip
);
2444 if (request_irq(pci
->irq
, snd_ymfpci_interrupt
, IRQF_SHARED
,
2445 KBUILD_MODNAME
, chip
)) {
2446 dev_err(chip
->card
->dev
, "unable to grab IRQ %d\n", pci
->irq
);
2447 snd_ymfpci_free(chip
);
2450 chip
->irq
= pci
->irq
;
2452 snd_ymfpci_aclink_reset(pci
);
2453 if (snd_ymfpci_codec_ready(chip
, 0) < 0) {
2454 snd_ymfpci_free(chip
);
2458 err
= snd_ymfpci_request_firmware(chip
);
2460 dev_err(chip
->card
->dev
, "firmware request failed: %d\n", err
);
2461 snd_ymfpci_free(chip
);
2464 snd_ymfpci_download_image(chip
);
2466 udelay(100); /* seems we need a delay after downloading image.. */
2468 if (snd_ymfpci_memalloc(chip
) < 0) {
2469 snd_ymfpci_free(chip
);
2473 if ((err
= snd_ymfpci_ac3_init(chip
)) < 0) {
2474 snd_ymfpci_free(chip
);
2478 #ifdef CONFIG_PM_SLEEP
2479 chip
->saved_regs
= kmalloc(YDSXGR_NUM_SAVED_REGS
* sizeof(u32
),
2481 if (chip
->saved_regs
== NULL
) {
2482 snd_ymfpci_free(chip
);
2487 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
)) < 0) {
2488 snd_ymfpci_free(chip
);
2492 snd_ymfpci_proc_init(card
, chip
);