2 * Copyright 1999 Jaroslav Kysela <perex@suse.cz>
3 * Copyright 2000 Alan Cox <alan@redhat.com>
4 * Copyright 2001 Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de>
5 * Copyright 2002 Pete Zaitcev <zaitcev@yahoo.com>
7 * Yamaha YMF7xx driver.
9 * This code is a result of high-speed collision
10 * between ymfpci.c of ALSA and cs46xx.c of Linux.
11 * -- Pete Zaitcev <zaitcev@yahoo.com>; 2000/09/18
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., 675 Mass Ave, Cambridge, MA 02139, USA.
28 * - Use P44Slot for 44.1 playback (beware of idle buzzing in P44Slot).
29 * - 96KHz playback for DVD - use pitch of 2.0.
30 * - Retain DMA buffer on close, do not wait the end of frame.
31 * - Resolve XXX tagged questions.
32 * - Cannot play 5133Hz.
33 * - 2001/01/07 Consider if we can remove voice_lock, like so:
34 * : Allocate/deallocate voices in open/close under semafore.
35 * : We access voices in interrupt, that only for pcms that open.
36 * voice_lock around playback_prepare closes interrupts for insane duration.
37 * - Revisit the way voice_alloc is done - too confusing, overcomplicated.
38 * Should support various channel types, however.
39 * - Remove prog_dmabuf from read/write, leave it in open.
40 * - 2001/01/07 Replace the OPL3 part of CONFIG_SOUND_YMFPCI_LEGACY code with
41 * native synthesizer through a playback slot.
42 * - 2001/11/29 ac97_save_state
43 * Talk to Kai to remove ac97_save_state before it's too late!
45 * - Restore S/PDIF - Toshibas have it.
47 * Kai used pci_alloc_consistent for DMA buffer, which sounds a little
48 * unconventional. However, given how small our fragments can be,
49 * a little uncached access is perhaps better than endless flushing.
50 * On i386 and other I/O-coherent architectures pci_alloc_consistent
51 * is entirely harmless.
54 #include <linux/config.h>
55 #include <linux/module.h>
56 #include <linux/init.h>
57 #include <linux/interrupt.h>
58 #include <linux/ioport.h>
59 #include <linux/delay.h>
60 #include <linux/pci.h>
61 #include <linux/slab.h>
62 #include <linux/poll.h>
63 #include <linux/soundcard.h>
64 #include <linux/ac97_codec.h>
65 #include <linux/sound.h>
69 #include <asm/uaccess.h>
71 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
72 # include "sound_config.h"
78 * I do not believe in debug levels as I never can guess what
79 * part of the code is going to be problematic in the future.
80 * Don't forget to run your klogd with -c 8.
82 * Example (do not remove):
83 * #define YMFDBG(fmt, arg...) do{ printk(KERN_DEBUG fmt, ##arg); }while(0)
85 #define YMFDBGW(fmt, arg...) /* */ /* write counts */
86 #define YMFDBGI(fmt, arg...) /* */ /* interrupts */
87 #define YMFDBGX(fmt, arg...) /* */ /* ioctl */
89 static int ymf_playback_trigger(ymfpci_t
*unit
, struct ymf_pcm
*ypcm
, int cmd
);
90 static void ymf_capture_trigger(ymfpci_t
*unit
, struct ymf_pcm
*ypcm
, int cmd
);
91 static void ymfpci_voice_free(ymfpci_t
*unit
, ymfpci_voice_t
*pvoice
);
92 static int ymf_capture_alloc(struct ymf_unit
*unit
, int *pbank
);
93 static int ymf_playback_prepare(struct ymf_state
*state
);
94 static int ymf_capture_prepare(struct ymf_state
*state
);
95 static struct ymf_state
*ymf_state_alloc(ymfpci_t
*unit
);
97 static void ymfpci_aclink_reset(struct pci_dev
* pci
);
98 static void ymfpci_disable_dsp(ymfpci_t
*unit
);
99 static void ymfpci_download_image(ymfpci_t
*codec
);
100 static void ymf_memload(ymfpci_t
*unit
);
102 static DEFINE_SPINLOCK(ymf_devs_lock
);
103 static LIST_HEAD(ymf_devs
);
109 static struct pci_device_id ymf_id_tbl
[] = {
110 #define DEV(dev, data) \
111 { PCI_VENDOR_ID_YAMAHA, dev, PCI_ANY_ID, PCI_ANY_ID, 0, 0, \
112 (unsigned long)data }
113 DEV (PCI_DEVICE_ID_YAMAHA_724
, "YMF724"),
114 DEV (PCI_DEVICE_ID_YAMAHA_724F
, "YMF724F"),
115 DEV (PCI_DEVICE_ID_YAMAHA_740
, "YMF740"),
116 DEV (PCI_DEVICE_ID_YAMAHA_740C
, "YMF740C"),
117 DEV (PCI_DEVICE_ID_YAMAHA_744
, "YMF744"),
118 DEV (PCI_DEVICE_ID_YAMAHA_754
, "YMF754"),
122 MODULE_DEVICE_TABLE(pci
, ymf_id_tbl
);
125 * common I/O routines
128 static inline void ymfpci_writeb(ymfpci_t
*codec
, u32 offset
, u8 val
)
130 writeb(val
, codec
->reg_area_virt
+ offset
);
133 static inline u16
ymfpci_readw(ymfpci_t
*codec
, u32 offset
)
135 return readw(codec
->reg_area_virt
+ offset
);
138 static inline void ymfpci_writew(ymfpci_t
*codec
, u32 offset
, u16 val
)
140 writew(val
, codec
->reg_area_virt
+ offset
);
143 static inline u32
ymfpci_readl(ymfpci_t
*codec
, u32 offset
)
145 return readl(codec
->reg_area_virt
+ offset
);
148 static inline void ymfpci_writel(ymfpci_t
*codec
, u32 offset
, u32 val
)
150 writel(val
, codec
->reg_area_virt
+ offset
);
153 static int ymfpci_codec_ready(ymfpci_t
*codec
, int secondary
, int sched
)
155 signed long end_time
;
156 u32 reg
= secondary
? YDSXGR_SECSTATUSADR
: YDSXGR_PRISTATUSADR
;
158 end_time
= jiffies
+ 3 * (HZ
/ 4);
160 if ((ymfpci_readw(codec
, reg
) & 0x8000) == 0)
163 set_current_state(TASK_UNINTERRUPTIBLE
);
166 } while (end_time
- (signed long)jiffies
>= 0);
167 printk(KERN_ERR
"ymfpci_codec_ready: codec %i is not ready [0x%x]\n",
168 secondary
, ymfpci_readw(codec
, reg
));
172 static void ymfpci_codec_write(struct ac97_codec
*dev
, u8 reg
, u16 val
)
174 ymfpci_t
*codec
= dev
->private_data
;
177 spin_lock(&codec
->ac97_lock
);
178 /* XXX Do make use of dev->id */
179 ymfpci_codec_ready(codec
, 0, 0);
180 cmd
= ((YDSXG_AC97WRITECMD
| reg
) << 16) | val
;
181 ymfpci_writel(codec
, YDSXGR_AC97CMDDATA
, cmd
);
182 spin_unlock(&codec
->ac97_lock
);
185 static u16
_ymfpci_codec_read(ymfpci_t
*unit
, u8 reg
)
189 if (ymfpci_codec_ready(unit
, 0, 0))
191 ymfpci_writew(unit
, YDSXGR_AC97CMDADR
, YDSXG_AC97READCMD
| reg
);
192 if (ymfpci_codec_ready(unit
, 0, 0))
194 if (unit
->pci
->device
== PCI_DEVICE_ID_YAMAHA_744
&& unit
->rev
< 2) {
195 for (i
= 0; i
< 600; i
++)
196 ymfpci_readw(unit
, YDSXGR_PRISTATUSDATA
);
198 return ymfpci_readw(unit
, YDSXGR_PRISTATUSDATA
);
201 static u16
ymfpci_codec_read(struct ac97_codec
*dev
, u8 reg
)
203 ymfpci_t
*unit
= dev
->private_data
;
206 spin_lock(&unit
->ac97_lock
);
207 ret
= _ymfpci_codec_read(unit
, reg
);
208 spin_unlock(&unit
->ac97_lock
);
218 * Calculate the actual sampling rate relatetively to the base clock (48kHz).
220 static u32
ymfpci_calc_delta(u32 rate
)
223 case 8000: return 0x02aaab00;
224 case 11025: return 0x03accd00;
225 case 16000: return 0x05555500;
226 case 22050: return 0x07599a00;
227 case 32000: return 0x0aaaab00;
228 case 44100: return 0x0eb33300;
229 default: return ((rate
<< 16) / 48000) << 12;
233 static u32 def_rate
[8] = {
234 100, 2000, 8000, 11025, 16000, 22050, 32000, 48000
237 static u32
ymfpci_calc_lpfK(u32 rate
)
240 static u32 val
[8] = {
241 0x00570000, 0x06AA0000, 0x18B20000, 0x20930000,
242 0x2B9A0000, 0x35A10000, 0x3EAA0000, 0x40000000
246 return 0x40000000; /* FIXME: What's the right value? */
247 for (i
= 0; i
< 8; i
++)
248 if (rate
<= def_rate
[i
])
253 static u32
ymfpci_calc_lpfQ(u32 rate
)
256 static u32 val
[8] = {
257 0x35280000, 0x34A70000, 0x32020000, 0x31770000,
258 0x31390000, 0x31C90000, 0x33D00000, 0x40000000
263 for (i
= 0; i
< 8; i
++)
264 if (rate
<= def_rate
[i
])
269 static u32
ymf_calc_lend(u32 rate
)
271 return (rate
* YMF_SAMPF
) / 48000;
275 * We ever allow only a few formats, but let's be generic, for smaller surprise.
277 static int ymf_pcm_format_width(int format
)
279 static int mask16
= AFMT_S16_LE
|AFMT_S16_BE
|AFMT_U16_LE
|AFMT_U16_BE
;
281 if ((format
& (format
-1)) != 0) {
282 printk(KERN_ERR
"ymfpci: format 0x%x is not a power of 2\n", format
);
286 if (format
== AFMT_IMA_ADPCM
) return 4;
287 if ((format
& mask16
) != 0) return 16;
291 static void ymf_pcm_update_shift(struct ymf_pcm_format
*f
)
296 if (ymf_pcm_format_width(f
->format
) == 16)
300 /* Are you sure 32K is not too much? See if mpg123 skips on loaded systems. */
301 #define DMABUF_DEFAULTORDER (15-PAGE_SHIFT)
302 #define DMABUF_MINORDER 1
305 * Allocate DMA buffer
307 static int alloc_dmabuf(ymfpci_t
*unit
, struct ymf_dmabuf
*dmabuf
)
312 struct page
*map
, *mapend
;
314 /* alloc as big a chunk as we can */
315 for (order
= DMABUF_DEFAULTORDER
; order
>= DMABUF_MINORDER
; order
--) {
316 rawbuf
= pci_alloc_consistent(unit
->pci
, PAGE_SIZE
<< order
, &dma_addr
);
324 printk(KERN_DEBUG
"ymfpci: allocated %ld (order = %d) bytes at %p\n",
325 PAGE_SIZE
<< order
, order
, rawbuf
);
328 dmabuf
->ready
= dmabuf
->mapped
= 0;
329 dmabuf
->rawbuf
= rawbuf
;
330 dmabuf
->dma_addr
= dma_addr
;
331 dmabuf
->buforder
= order
;
333 /* now mark the pages as reserved; otherwise remap_pfn_range doesn't do what we want */
334 mapend
= virt_to_page(rawbuf
+ (PAGE_SIZE
<< order
) - 1);
335 for (map
= virt_to_page(rawbuf
); map
<= mapend
; map
++)
336 set_bit(PG_reserved
, &map
->flags
);
344 static void dealloc_dmabuf(ymfpci_t
*unit
, struct ymf_dmabuf
*dmabuf
)
346 struct page
*map
, *mapend
;
348 if (dmabuf
->rawbuf
) {
349 /* undo marking the pages as reserved */
350 mapend
= virt_to_page(dmabuf
->rawbuf
+ (PAGE_SIZE
<< dmabuf
->buforder
) - 1);
351 for (map
= virt_to_page(dmabuf
->rawbuf
); map
<= mapend
; map
++)
352 clear_bit(PG_reserved
, &map
->flags
);
354 pci_free_consistent(unit
->pci
, PAGE_SIZE
<< dmabuf
->buforder
,
355 dmabuf
->rawbuf
, dmabuf
->dma_addr
);
357 dmabuf
->rawbuf
= NULL
;
358 dmabuf
->mapped
= dmabuf
->ready
= 0;
361 static int prog_dmabuf(struct ymf_state
*state
, int rec
)
363 struct ymf_dmabuf
*dmabuf
;
367 int redzone
, redfrags
;
370 w_16
= ymf_pcm_format_width(state
->format
.format
) == 16;
371 dmabuf
= rec
? &state
->rpcm
.dmabuf
: &state
->wpcm
.dmabuf
;
373 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
374 dmabuf
->hwptr
= dmabuf
->swptr
= 0;
375 dmabuf
->total_bytes
= 0;
377 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
379 /* allocate DMA buffer if not allocated yet */
381 if ((ret
= alloc_dmabuf(state
->unit
, dmabuf
)))
385 * Create fake fragment sizes and numbers for OSS ioctls.
386 * Import what Doom might have set with SNDCTL_DSP_SETFRAGMENT.
388 bufsize
= PAGE_SIZE
<< dmabuf
->buforder
;
389 /* By default we give 4 big buffers. */
390 dmabuf
->fragshift
= (dmabuf
->buforder
+ PAGE_SHIFT
- 2);
391 if (dmabuf
->ossfragshift
> 3 &&
392 dmabuf
->ossfragshift
< dmabuf
->fragshift
) {
393 /* If OSS set smaller fragments, give more smaller buffers. */
394 dmabuf
->fragshift
= dmabuf
->ossfragshift
;
396 dmabuf
->fragsize
= 1 << dmabuf
->fragshift
;
398 dmabuf
->numfrag
= bufsize
>> dmabuf
->fragshift
;
399 dmabuf
->dmasize
= dmabuf
->numfrag
<< dmabuf
->fragshift
;
401 if (dmabuf
->ossmaxfrags
>= 2) {
402 redzone
= ymf_calc_lend(state
->format
.rate
);
403 redzone
<<= state
->format
.shift
;
405 redfrags
= (redzone
+ dmabuf
->fragsize
-1) >> dmabuf
->fragshift
;
407 if (dmabuf
->ossmaxfrags
+ redfrags
< dmabuf
->numfrag
) {
408 dmabuf
->numfrag
= dmabuf
->ossmaxfrags
+ redfrags
;
409 dmabuf
->dmasize
= dmabuf
->numfrag
<< dmabuf
->fragshift
;
413 memset(dmabuf
->rawbuf
, w_16
? 0 : 0x80, dmabuf
->dmasize
);
416 * Now set up the ring
419 /* XXX ret = rec? cap_pre(): pbk_pre(); */
420 spin_lock_irqsave(&state
->unit
->voice_lock
, flags
);
422 if ((ret
= ymf_capture_prepare(state
)) != 0) {
423 spin_unlock_irqrestore(&state
->unit
->voice_lock
, flags
);
427 if ((ret
= ymf_playback_prepare(state
)) != 0) {
428 spin_unlock_irqrestore(&state
->unit
->voice_lock
, flags
);
432 spin_unlock_irqrestore(&state
->unit
->voice_lock
, flags
);
434 /* set the ready flag for the dma buffer (this comment is not stupid) */
438 printk(KERN_DEBUG
"prog_dmabuf: rate %d format 0x%x,"
439 " numfrag %d fragsize %d dmasize %d\n",
440 state
->format
.rate
, state
->format
.format
, dmabuf
->numfrag
,
441 dmabuf
->fragsize
, dmabuf
->dmasize
);
447 static void ymf_start_dac(struct ymf_state
*state
)
449 ymf_playback_trigger(state
->unit
, &state
->wpcm
, 1);
452 // static void ymf_start_adc(struct ymf_state *state)
454 // ymf_capture_trigger(state->unit, &state->rpcm, 1);
458 * Wait until output is drained.
459 * This does not kill the hardware for the sake of ioctls.
461 static void ymf_wait_dac(struct ymf_state
*state
)
463 struct ymf_unit
*unit
= state
->unit
;
464 struct ymf_pcm
*ypcm
= &state
->wpcm
;
465 DECLARE_WAITQUEUE(waita
, current
);
468 add_wait_queue(&ypcm
->dmabuf
.wait
, &waita
);
470 spin_lock_irqsave(&unit
->reg_lock
, flags
);
471 if (ypcm
->dmabuf
.count
!= 0 && !ypcm
->running
) {
472 ymf_playback_trigger(unit
, ypcm
, 1);
476 if (file
->f_flags
& O_NONBLOCK
) {
478 * XXX Our mistake is to attach DMA buffer to state
479 * rather than to some per-device structure.
480 * Cannot skip waiting, can only make it shorter.
485 set_current_state(TASK_UNINTERRUPTIBLE
);
486 while (ypcm
->running
) {
487 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
489 spin_lock_irqsave(&unit
->reg_lock
, flags
);
490 set_current_state(TASK_UNINTERRUPTIBLE
);
492 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
494 set_current_state(TASK_RUNNING
);
495 remove_wait_queue(&ypcm
->dmabuf
.wait
, &waita
);
498 * This function may take up to 4 seconds to reach this point
499 * (32K circular buffer, 8000 Hz). User notices.
503 /* Can just stop, without wait. Or can we? */
504 static void ymf_stop_adc(struct ymf_state
*state
)
506 struct ymf_unit
*unit
= state
->unit
;
509 spin_lock_irqsave(&unit
->reg_lock
, flags
);
510 ymf_capture_trigger(unit
, &state
->rpcm
, 0);
511 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
515 * Hardware start management
518 static void ymfpci_hw_start(ymfpci_t
*unit
)
522 spin_lock_irqsave(&unit
->reg_lock
, flags
);
523 if (unit
->start_count
++ == 0) {
524 ymfpci_writel(unit
, YDSXGR_MODE
,
525 ymfpci_readl(unit
, YDSXGR_MODE
) | 3);
526 unit
->active_bank
= ymfpci_readl(unit
, YDSXGR_CTRLSELECT
) & 1;
528 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
531 static void ymfpci_hw_stop(ymfpci_t
*unit
)
536 spin_lock_irqsave(&unit
->reg_lock
, flags
);
537 if (--unit
->start_count
== 0) {
538 ymfpci_writel(unit
, YDSXGR_MODE
,
539 ymfpci_readl(unit
, YDSXGR_MODE
) & ~3);
540 while (timeout
-- > 0) {
541 if ((ymfpci_readl(unit
, YDSXGR_STATUS
) & 2) == 0)
545 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
549 * Playback voice management
552 static int voice_alloc(ymfpci_t
*codec
, ymfpci_voice_type_t type
, int pair
, ymfpci_voice_t
*rvoice
[])
554 ymfpci_voice_t
*voice
, *voice2
;
557 for (idx
= 0; idx
< YDSXG_PLAYBACK_VOICES
; idx
+= pair
? 2 : 1) {
558 voice
= &codec
->voices
[idx
];
559 voice2
= pair
? &codec
->voices
[idx
+1] : NULL
;
560 if (voice
->use
|| (voice2
&& voice2
->use
))
578 ymfpci_hw_start(codec
);
581 ymfpci_hw_start(codec
);
586 return -EBUSY
; /* Your audio channel is open by someone else. */
589 static void ymfpci_voice_free(ymfpci_t
*unit
, ymfpci_voice_t
*pvoice
)
591 ymfpci_hw_stop(unit
);
592 pvoice
->use
= pvoice
->pcm
= pvoice
->synth
= pvoice
->midi
= 0;
599 static void ymf_pcm_interrupt(ymfpci_t
*codec
, ymfpci_voice_t
*voice
)
601 struct ymf_pcm
*ypcm
;
603 int pos
, delta
, swptr
;
604 int played
, distance
;
605 struct ymf_state
*state
;
606 struct ymf_dmabuf
*dmabuf
;
609 if ((ypcm
= voice
->ypcm
) == NULL
) {
612 if ((state
= ypcm
->state
) == NULL
) {
613 ypcm
->running
= 0; // lock it
616 dmabuf
= &ypcm
->dmabuf
;
617 spin_lock(&codec
->reg_lock
);
619 YMFDBGI("ymfpci: %d, intr bank %d count %d start 0x%x:%x\n",
620 voice
->number
, codec
->active_bank
, dmabuf
->count
,
621 le32_to_cpu(voice
->bank
[0].start
),
622 le32_to_cpu(voice
->bank
[1].start
));
623 silence
= (ymf_pcm_format_width(state
->format
.format
) == 16) ?
625 /* We need actual left-hand-side redzone size here. */
626 redzone
= ymf_calc_lend(state
->format
.rate
);
627 redzone
<<= (state
->format
.shift
+ 1);
628 swptr
= dmabuf
->swptr
;
630 pos
= le32_to_cpu(voice
->bank
[codec
->active_bank
].start
);
631 pos
<<= state
->format
.shift
;
632 if (pos
< 0 || pos
>= dmabuf
->dmasize
) { /* ucode bug */
633 printk(KERN_ERR
"ymfpci%d: runaway voice %d: hwptr %d=>%d dmasize %d\n",
634 codec
->dev_audio
, voice
->number
,
635 dmabuf
->hwptr
, pos
, dmabuf
->dmasize
);
638 if (pos
< dmabuf
->hwptr
) {
639 delta
= dmabuf
->dmasize
- dmabuf
->hwptr
;
640 memset(dmabuf
->rawbuf
+ dmabuf
->hwptr
, silence
, delta
);
642 memset(dmabuf
->rawbuf
, silence
, pos
);
644 delta
= pos
- dmabuf
->hwptr
;
645 memset(dmabuf
->rawbuf
+ dmabuf
->hwptr
, silence
, delta
);
649 if (dmabuf
->count
== 0) {
650 printk(KERN_ERR
"ymfpci%d: %d: strain: hwptr %d\n",
651 codec
->dev_audio
, voice
->number
, dmabuf
->hwptr
);
652 ymf_playback_trigger(codec
, ypcm
, 0);
656 distance
= pos
- swptr
;
658 distance
= dmabuf
->dmasize
- (swptr
- pos
);
660 if (distance
< redzone
) {
662 * hwptr inside redzone => DMA ran out of samples.
664 if (delta
< dmabuf
->count
) {
666 * Lost interrupt or other screwage.
668 printk(KERN_ERR
"ymfpci%d: %d: lost: delta %d"
669 " hwptr %d swptr %d distance %d count %d\n",
670 codec
->dev_audio
, voice
->number
, delta
,
671 dmabuf
->hwptr
, swptr
, distance
, dmabuf
->count
);
676 YMFDBGI("ymfpci%d: %d: done: delta %d"
677 " hwptr %d swptr %d distance %d count %d\n",
678 codec
->dev_audio
, voice
->number
, delta
,
679 dmabuf
->hwptr
, swptr
, distance
, dmabuf
->count
);
681 played
= dmabuf
->count
;
683 ymf_playback_trigger(codec
, ypcm
, 0);
687 * hwptr is chipping away towards a remote swptr.
688 * Calculate other distance and apply it to count.
691 distance
= swptr
- pos
;
693 distance
= dmabuf
->dmasize
- (pos
- swptr
);
695 if (distance
< dmabuf
->count
) {
696 played
= dmabuf
->count
- distance
;
702 dmabuf
->total_bytes
+= played
;
703 dmabuf
->count
-= played
;
704 if (dmabuf
->count
< dmabuf
->dmasize
/ 2) {
705 wake_up(&dmabuf
->wait
);
708 spin_unlock(&codec
->reg_lock
);
711 static void ymf_cap_interrupt(ymfpci_t
*unit
, struct ymf_capture
*cap
)
713 struct ymf_pcm
*ypcm
;
715 struct ymf_state
*state
;
716 struct ymf_dmabuf
*dmabuf
;
720 if ((ypcm
= cap
->ypcm
) == NULL
) {
723 if ((state
= ypcm
->state
) == NULL
) {
724 ypcm
->running
= 0; // lock it
727 dmabuf
= &ypcm
->dmabuf
;
728 spin_lock(&unit
->reg_lock
);
730 redzone
= ymf_calc_lend(state
->format
.rate
);
731 redzone
<<= (state
->format
.shift
+ 1);
733 pos
= le32_to_cpu(cap
->bank
[unit
->active_bank
].start
);
734 // pos <<= state->format.shift;
735 if (pos
< 0 || pos
>= dmabuf
->dmasize
) { /* ucode bug */
736 printk(KERN_ERR
"ymfpci%d: runaway capture %d: hwptr %d=>%d dmasize %d\n",
737 unit
->dev_audio
, ypcm
->capture_bank_number
,
738 dmabuf
->hwptr
, pos
, dmabuf
->dmasize
);
741 if (pos
< dmabuf
->hwptr
) {
742 delta
= dmabuf
->dmasize
- dmabuf
->hwptr
;
745 delta
= pos
- dmabuf
->hwptr
;
751 if (cnt
+ redzone
> dmabuf
->dmasize
) {
752 /* Overflow - bump swptr */
753 dmabuf
->count
= dmabuf
->dmasize
- redzone
;
754 dmabuf
->swptr
= dmabuf
->hwptr
+ redzone
;
755 if (dmabuf
->swptr
>= dmabuf
->dmasize
) {
756 dmabuf
->swptr
-= dmabuf
->dmasize
;
762 dmabuf
->total_bytes
+= delta
;
763 if (dmabuf
->count
) { /* && is_sleeping XXX */
764 wake_up(&dmabuf
->wait
);
767 spin_unlock(&unit
->reg_lock
);
770 static int ymf_playback_trigger(ymfpci_t
*codec
, struct ymf_pcm
*ypcm
, int cmd
)
773 if (ypcm
->voices
[0] == NULL
) {
777 codec
->ctrl_playback
[ypcm
->voices
[0]->number
+ 1] =
778 cpu_to_le32(ypcm
->voices
[0]->bank_ba
);
779 if (ypcm
->voices
[1] != NULL
)
780 codec
->ctrl_playback
[ypcm
->voices
[1]->number
+ 1] =
781 cpu_to_le32(ypcm
->voices
[1]->bank_ba
);
784 codec
->ctrl_playback
[ypcm
->voices
[0]->number
+ 1] = 0;
785 if (ypcm
->voices
[1] != NULL
)
786 codec
->ctrl_playback
[ypcm
->voices
[1]->number
+ 1] = 0;
792 static void ymf_capture_trigger(ymfpci_t
*codec
, struct ymf_pcm
*ypcm
, int cmd
)
797 tmp
= ymfpci_readl(codec
, YDSXGR_MAPOFREC
) | (1 << ypcm
->capture_bank_number
);
798 ymfpci_writel(codec
, YDSXGR_MAPOFREC
, tmp
);
801 tmp
= ymfpci_readl(codec
, YDSXGR_MAPOFREC
) & ~(1 << ypcm
->capture_bank_number
);
802 ymfpci_writel(codec
, YDSXGR_MAPOFREC
, tmp
);
807 static int ymfpci_pcm_voice_alloc(struct ymf_pcm
*ypcm
, int voices
)
809 struct ymf_unit
*unit
;
812 unit
= ypcm
->state
->unit
;
813 if (ypcm
->voices
[1] != NULL
&& voices
< 2) {
814 ymfpci_voice_free(unit
, ypcm
->voices
[1]);
815 ypcm
->voices
[1] = NULL
;
817 if (voices
== 1 && ypcm
->voices
[0] != NULL
)
818 return 0; /* already allocated */
819 if (voices
== 2 && ypcm
->voices
[0] != NULL
&& ypcm
->voices
[1] != NULL
)
820 return 0; /* already allocated */
822 if (ypcm
->voices
[0] != NULL
&& ypcm
->voices
[1] == NULL
) {
823 ymfpci_voice_free(unit
, ypcm
->voices
[0]);
824 ypcm
->voices
[0] = NULL
;
826 if ((err
= voice_alloc(unit
, YMFPCI_PCM
, 1, ypcm
->voices
)) < 0)
828 ypcm
->voices
[0]->ypcm
= ypcm
;
829 ypcm
->voices
[1]->ypcm
= ypcm
;
831 if ((err
= voice_alloc(unit
, YMFPCI_PCM
, 0, ypcm
->voices
)) < 0)
833 ypcm
->voices
[0]->ypcm
= ypcm
;
838 static void ymf_pcm_init_voice(ymfpci_voice_t
*voice
, int stereo
,
839 int rate
, int w_16
, unsigned long addr
, unsigned int end
, int spdif
)
842 u32 delta
= ymfpci_calc_delta(rate
);
843 u32 lpfQ
= ymfpci_calc_lpfQ(rate
);
844 u32 lpfK
= ymfpci_calc_lpfK(rate
);
845 ymfpci_playback_bank_t
*bank
;
849 * The gain is a floating point number. According to the manual,
850 * bit 31 indicates a sign bit, bit 30 indicates an integer part,
851 * and bits [29:15] indicate a decimal fraction part. Thus,
852 * for a gain of 1.0 the constant of 0x40000000 is loaded.
854 unsigned default_gain
= cpu_to_le32(0x40000000);
856 format
= (stereo
? 0x00010000 : 0) | (w_16
? 0 : 0x80000000);
861 for (nbank
= 0; nbank
< 2; nbank
++) {
862 bank
= &voice
->bank
[nbank
];
863 bank
->format
= cpu_to_le32(format
);
864 bank
->loop_default
= 0; /* 0-loops forever, otherwise count */
865 bank
->base
= cpu_to_le32(addr
);
866 bank
->loop_start
= 0;
867 bank
->loop_end
= cpu_to_le32(end
);
869 bank
->eg_gain_end
= default_gain
;
870 bank
->lpfQ
= cpu_to_le32(lpfQ
);
872 bank
->num_of_frames
= 0;
873 bank
->loop_count
= 0;
875 bank
->start_frac
= 0;
877 bank
->delta_end
= cpu_to_le32(delta
);
879 bank
->lpfK_end
= cpu_to_le32(lpfK
);
880 bank
->eg_gain
= default_gain
;
886 bank
->left_gain_end
=
887 bank
->right_gain_end
=
891 bank
->eff1_gain_end
=
892 bank
->eff2_gain_end
=
893 bank
->eff3_gain_end
= 0;
899 bank
->left_gain_end
=
900 bank
->right_gain_end
= default_gain
;
903 bank
->eff2_gain_end
=
905 bank
->eff3_gain_end
= default_gain
;
909 if ((voice
->number
& 1) == 0) {
911 bank
->left_gain_end
= default_gain
;
913 bank
->format
|= cpu_to_le32(1);
915 bank
->right_gain_end
= default_gain
;
918 if ((voice
->number
& 1) == 0) {
920 bank
->eff2_gain_end
= default_gain
;
922 bank
->format
|= cpu_to_le32(1);
924 bank
->eff3_gain_end
= default_gain
;
932 * XXX Capture channel allocation is entirely fake at the moment.
933 * We use only one channel and mark it busy as required.
935 static int ymf_capture_alloc(struct ymf_unit
*unit
, int *pbank
)
937 struct ymf_capture
*cap
;
940 cbank
= 1; /* Only ADC slot is used for now. */
941 cap
= &unit
->capture
[cbank
];
949 static int ymf_playback_prepare(struct ymf_state
*state
)
951 struct ymf_pcm
*ypcm
= &state
->wpcm
;
954 if ((err
= ymfpci_pcm_voice_alloc(ypcm
, state
->format
.voices
)) < 0) {
955 /* Somebody started 32 mpg123's in parallel? */
956 printk(KERN_INFO
"ymfpci%d: cannot allocate voice\n",
957 state
->unit
->dev_audio
);
961 for (nvoice
= 0; nvoice
< state
->format
.voices
; nvoice
++) {
962 ymf_pcm_init_voice(ypcm
->voices
[nvoice
],
963 state
->format
.voices
== 2, state
->format
.rate
,
964 ymf_pcm_format_width(state
->format
.format
) == 16,
965 ypcm
->dmabuf
.dma_addr
, ypcm
->dmabuf
.dmasize
,
971 static int ymf_capture_prepare(struct ymf_state
*state
)
973 ymfpci_t
*unit
= state
->unit
;
974 struct ymf_pcm
*ypcm
= &state
->rpcm
;
975 ymfpci_capture_bank_t
* bank
;
976 /* XXX This is confusing, gotta rename one of them banks... */
977 int nbank
; /* flip-flop bank */
978 int cbank
; /* input [super-]bank */
979 struct ymf_capture
*cap
;
982 if (ypcm
->capture_bank_number
== -1) {
983 if (ymf_capture_alloc(unit
, &cbank
) != 0)
986 ypcm
->capture_bank_number
= cbank
;
988 cap
= &unit
->capture
[cbank
];
989 cap
->bank
= unit
->bank_capture
[cbank
][0];
991 ymfpci_hw_start(unit
);
994 // ypcm->frag_size = snd_pcm_lib_transfer_fragment(substream);
995 // frag_size is replaced with nonfragged byte-aligned rolling buffer
996 rate
= ((48000 * 4096) / state
->format
.rate
) - 1;
998 if (state
->format
.voices
== 2)
1000 if (ymf_pcm_format_width(state
->format
.format
) == 8)
1002 switch (ypcm
->capture_bank_number
) {
1004 ymfpci_writel(unit
, YDSXGR_RECFORMAT
, format
);
1005 ymfpci_writel(unit
, YDSXGR_RECSLOTSR
, rate
);
1008 ymfpci_writel(unit
, YDSXGR_ADCFORMAT
, format
);
1009 ymfpci_writel(unit
, YDSXGR_ADCSLOTSR
, rate
);
1012 for (nbank
= 0; nbank
< 2; nbank
++) {
1013 bank
= unit
->bank_capture
[ypcm
->capture_bank_number
][nbank
];
1014 bank
->base
= cpu_to_le32(ypcm
->dmabuf
.dma_addr
);
1015 // bank->loop_end = ypcm->dmabuf.dmasize >> state->format.shift;
1016 bank
->loop_end
= cpu_to_le32(ypcm
->dmabuf
.dmasize
);
1018 bank
->num_of_loops
= 0;
1021 if (state
->digital
.dig_valid
)
1022 /*state->digital.type == SND_PCM_DIG_AES_IEC958*/
1023 ymfpci_writew(codec
, YDSXGR_SPDIFOUTSTATUS
,
1024 state
->digital
.dig_status
[0] | (state
->digital
.dig_status
[1] << 8));
1029 static irqreturn_t
ymf_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
1031 ymfpci_t
*codec
= dev_id
;
1032 u32 status
, nvoice
, mode
;
1033 struct ymf_voice
*voice
;
1034 struct ymf_capture
*cap
;
1036 status
= ymfpci_readl(codec
, YDSXGR_STATUS
);
1037 if (status
& 0x80000000) {
1038 codec
->active_bank
= ymfpci_readl(codec
, YDSXGR_CTRLSELECT
) & 1;
1039 spin_lock(&codec
->voice_lock
);
1040 for (nvoice
= 0; nvoice
< YDSXG_PLAYBACK_VOICES
; nvoice
++) {
1041 voice
= &codec
->voices
[nvoice
];
1043 ymf_pcm_interrupt(codec
, voice
);
1045 for (nvoice
= 0; nvoice
< YDSXG_CAPTURE_VOICES
; nvoice
++) {
1046 cap
= &codec
->capture
[nvoice
];
1048 ymf_cap_interrupt(codec
, cap
);
1050 spin_unlock(&codec
->voice_lock
);
1051 spin_lock(&codec
->reg_lock
);
1052 ymfpci_writel(codec
, YDSXGR_STATUS
, 0x80000000);
1053 mode
= ymfpci_readl(codec
, YDSXGR_MODE
) | 2;
1054 ymfpci_writel(codec
, YDSXGR_MODE
, mode
);
1055 spin_unlock(&codec
->reg_lock
);
1058 status
= ymfpci_readl(codec
, YDSXGR_INTFLAG
);
1061 ymfpci_writel(codec
, YDSXGR_INTFLAG
, ~0);
1066 static void ymf_pcm_free_substream(struct ymf_pcm
*ypcm
)
1068 unsigned long flags
;
1069 struct ymf_unit
*unit
;
1071 unit
= ypcm
->state
->unit
;
1073 if (ypcm
->type
== PLAYBACK_VOICE
) {
1074 spin_lock_irqsave(&unit
->voice_lock
, flags
);
1075 if (ypcm
->voices
[1])
1076 ymfpci_voice_free(unit
, ypcm
->voices
[1]);
1077 if (ypcm
->voices
[0])
1078 ymfpci_voice_free(unit
, ypcm
->voices
[0]);
1079 spin_unlock_irqrestore(&unit
->voice_lock
, flags
);
1081 if (ypcm
->capture_bank_number
!= -1) {
1082 unit
->capture
[ypcm
->capture_bank_number
].use
= 0;
1083 ypcm
->capture_bank_number
= -1;
1084 ymfpci_hw_stop(unit
);
1089 static struct ymf_state
*ymf_state_alloc(ymfpci_t
*unit
)
1091 struct ymf_pcm
*ypcm
;
1092 struct ymf_state
*state
;
1094 if ((state
= kmalloc(sizeof(struct ymf_state
), GFP_KERNEL
)) == NULL
) {
1097 memset(state
, 0, sizeof(struct ymf_state
));
1099 ypcm
= &state
->wpcm
;
1100 ypcm
->state
= state
;
1101 ypcm
->type
= PLAYBACK_VOICE
;
1102 ypcm
->capture_bank_number
= -1;
1103 init_waitqueue_head(&ypcm
->dmabuf
.wait
);
1105 ypcm
= &state
->rpcm
;
1106 ypcm
->state
= state
;
1107 ypcm
->type
= CAPTURE_AC97
;
1108 ypcm
->capture_bank_number
= -1;
1109 init_waitqueue_head(&ypcm
->dmabuf
.wait
);
1113 state
->format
.format
= AFMT_U8
;
1114 state
->format
.rate
= 8000;
1115 state
->format
.voices
= 1;
1116 ymf_pcm_update_shift(&state
->format
);
1124 /* AES/IEC958 channel status bits */
1125 #define SND_PCM_AES0_PROFESSIONAL (1<<0) /* 0 = consumer, 1 = professional */
1126 #define SND_PCM_AES0_NONAUDIO (1<<1) /* 0 = audio, 1 = non-audio */
1127 #define SND_PCM_AES0_PRO_EMPHASIS (7<<2) /* mask - emphasis */
1128 #define SND_PCM_AES0_PRO_EMPHASIS_NOTID (0<<2) /* emphasis not indicated */
1129 #define SND_PCM_AES0_PRO_EMPHASIS_NONE (1<<2) /* none emphasis */
1130 #define SND_PCM_AES0_PRO_EMPHASIS_5015 (3<<2) /* 50/15us emphasis */
1131 #define SND_PCM_AES0_PRO_EMPHASIS_CCITT (7<<2) /* CCITT J.17 emphasis */
1132 #define SND_PCM_AES0_PRO_FREQ_UNLOCKED (1<<5) /* source sample frequency: 0 = locked, 1 = unlocked */
1133 #define SND_PCM_AES0_PRO_FS (3<<6) /* mask - sample frequency */
1134 #define SND_PCM_AES0_PRO_FS_NOTID (0<<6) /* fs not indicated */
1135 #define SND_PCM_AES0_PRO_FS_44100 (1<<6) /* 44.1kHz */
1136 #define SND_PCM_AES0_PRO_FS_48000 (2<<6) /* 48kHz */
1137 #define SND_PCM_AES0_PRO_FS_32000 (3<<6) /* 32kHz */
1138 #define SND_PCM_AES0_CON_NOT_COPYRIGHT (1<<2) /* 0 = copyright, 1 = not copyright */
1139 #define SND_PCM_AES0_CON_EMPHASIS (7<<3) /* mask - emphasis */
1140 #define SND_PCM_AES0_CON_EMPHASIS_NONE (0<<3) /* none emphasis */
1141 #define SND_PCM_AES0_CON_EMPHASIS_5015 (1<<3) /* 50/15us emphasis */
1142 #define SND_PCM_AES0_CON_MODE (3<<6) /* mask - mode */
1143 #define SND_PCM_AES1_PRO_MODE (15<<0) /* mask - channel mode */
1144 #define SND_PCM_AES1_PRO_MODE_NOTID (0<<0) /* not indicated */
1145 #define SND_PCM_AES1_PRO_MODE_STEREOPHONIC (2<<0) /* stereophonic - ch A is left */
1146 #define SND_PCM_AES1_PRO_MODE_SINGLE (4<<0) /* single channel */
1147 #define SND_PCM_AES1_PRO_MODE_TWO (8<<0) /* two channels */
1148 #define SND_PCM_AES1_PRO_MODE_PRIMARY (12<<0) /* primary/secondary */
1149 #define SND_PCM_AES1_PRO_MODE_BYTE3 (15<<0) /* vector to byte 3 */
1150 #define SND_PCM_AES1_PRO_USERBITS (15<<4) /* mask - user bits */
1151 #define SND_PCM_AES1_PRO_USERBITS_NOTID (0<<4) /* not indicated */
1152 #define SND_PCM_AES1_PRO_USERBITS_192 (8<<4) /* 192-bit structure */
1153 #define SND_PCM_AES1_PRO_USERBITS_UDEF (12<<4) /* user defined application */
1154 #define SND_PCM_AES1_CON_CATEGORY 0x7f
1155 #define SND_PCM_AES1_CON_GENERAL 0x00
1156 #define SND_PCM_AES1_CON_EXPERIMENTAL 0x40
1157 #define SND_PCM_AES1_CON_SOLIDMEM_MASK 0x0f
1158 #define SND_PCM_AES1_CON_SOLIDMEM_ID 0x08
1159 #define SND_PCM_AES1_CON_BROADCAST1_MASK 0x07
1160 #define SND_PCM_AES1_CON_BROADCAST1_ID 0x04
1161 #define SND_PCM_AES1_CON_DIGDIGCONV_MASK 0x07
1162 #define SND_PCM_AES1_CON_DIGDIGCONV_ID 0x02
1163 #define SND_PCM_AES1_CON_ADC_COPYRIGHT_MASK 0x1f
1164 #define SND_PCM_AES1_CON_ADC_COPYRIGHT_ID 0x06
1165 #define SND_PCM_AES1_CON_ADC_MASK 0x1f
1166 #define SND_PCM_AES1_CON_ADC_ID 0x16
1167 #define SND_PCM_AES1_CON_BROADCAST2_MASK 0x0f
1168 #define SND_PCM_AES1_CON_BROADCAST2_ID 0x0e
1169 #define SND_PCM_AES1_CON_LASEROPT_MASK 0x07
1170 #define SND_PCM_AES1_CON_LASEROPT_ID 0x01
1171 #define SND_PCM_AES1_CON_MUSICAL_MASK 0x07
1172 #define SND_PCM_AES1_CON_MUSICAL_ID 0x05
1173 #define SND_PCM_AES1_CON_MAGNETIC_MASK 0x07
1174 #define SND_PCM_AES1_CON_MAGNETIC_ID 0x03
1175 #define SND_PCM_AES1_CON_IEC908_CD (SND_PCM_AES1_CON_LASEROPT_ID|0x00)
1176 #define SND_PCM_AES1_CON_NON_IEC908_CD (SND_PCM_AES1_CON_LASEROPT_ID|0x08)
1177 #define SND_PCM_AES1_CON_PCM_CODER (SND_PCM_AES1_CON_DIGDIGCONV_ID|0x00)
1178 #define SND_PCM_AES1_CON_SAMPLER (SND_PCM_AES1_CON_DIGDIGCONV_ID|0x20)
1179 #define SND_PCM_AES1_CON_MIXER (SND_PCM_AES1_CON_DIGDIGCONV_ID|0x10)
1180 #define SND_PCM_AES1_CON_RATE_CONVERTER (SND_PCM_AES1_CON_DIGDIGCONV_ID|0x18)
1181 #define SND_PCM_AES1_CON_SYNTHESIZER (SND_PCM_AES1_CON_MUSICAL_ID|0x00)
1182 #define SND_PCM_AES1_CON_MICROPHONE (SND_PCM_AES1_CON_MUSICAL_ID|0x08)
1183 #define SND_PCM_AES1_CON_DAT (SND_PCM_AES1_CON_MAGNETIC_ID|0x00)
1184 #define SND_PCM_AES1_CON_VCR (SND_PCM_AES1_CON_MAGNETIC_ID|0x08)
1185 #define SND_PCM_AES1_CON_ORIGINAL (1<<7) /* this bits depends on the category code */
1186 #define SND_PCM_AES2_PRO_SBITS (7<<0) /* mask - sample bits */
1187 #define SND_PCM_AES2_PRO_SBITS_20 (2<<0) /* 20-bit - coordination */
1188 #define SND_PCM_AES2_PRO_SBITS_24 (4<<0) /* 24-bit - main audio */
1189 #define SND_PCM_AES2_PRO_SBITS_UDEF (6<<0) /* user defined application */
1190 #define SND_PCM_AES2_PRO_WORDLEN (7<<3) /* mask - source word length */
1191 #define SND_PCM_AES2_PRO_WORDLEN_NOTID (0<<3) /* not indicated */
1192 #define SND_PCM_AES2_PRO_WORDLEN_22_18 (2<<3) /* 22-bit or 18-bit */
1193 #define SND_PCM_AES2_PRO_WORDLEN_23_19 (4<<3) /* 23-bit or 19-bit */
1194 #define SND_PCM_AES2_PRO_WORDLEN_24_20 (5<<3) /* 24-bit or 20-bit */
1195 #define SND_PCM_AES2_PRO_WORDLEN_20_16 (6<<3) /* 20-bit or 16-bit */
1196 #define SND_PCM_AES2_CON_SOURCE (15<<0) /* mask - source number */
1197 #define SND_PCM_AES2_CON_SOURCE_UNSPEC (0<<0) /* unspecified */
1198 #define SND_PCM_AES2_CON_CHANNEL (15<<4) /* mask - channel number */
1199 #define SND_PCM_AES2_CON_CHANNEL_UNSPEC (0<<4) /* unspecified */
1200 #define SND_PCM_AES3_CON_FS (15<<0) /* mask - sample frequency */
1201 #define SND_PCM_AES3_CON_FS_44100 (0<<0) /* 44.1kHz */
1202 #define SND_PCM_AES3_CON_FS_48000 (2<<0) /* 48kHz */
1203 #define SND_PCM_AES3_CON_FS_32000 (3<<0) /* 32kHz */
1204 #define SND_PCM_AES3_CON_CLOCK (3<<4) /* mask - clock accuracy */
1205 #define SND_PCM_AES3_CON_CLOCK_1000PPM (0<<4) /* 1000 ppm */
1206 #define SND_PCM_AES3_CON_CLOCK_50PPM (1<<4) /* 50 ppm */
1207 #define SND_PCM_AES3_CON_CLOCK_VARIABLE (2<<4) /* variable pitch */
1214 * in this loop, dmabuf.count signifies the amount of data that is
1215 * waiting to be copied to the user's buffer. it is filled by the dma
1216 * machine and drained by this loop.
1219 ymf_read(struct file
*file
, char __user
*buffer
, size_t count
, loff_t
*ppos
)
1221 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1222 struct ymf_dmabuf
*dmabuf
= &state
->rpcm
.dmabuf
;
1223 struct ymf_unit
*unit
= state
->unit
;
1224 DECLARE_WAITQUEUE(waita
, current
);
1226 unsigned long flags
;
1228 int cnt
; /* This many to go in this revolution */
1232 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 1)))
1236 add_wait_queue(&dmabuf
->wait
, &waita
);
1237 set_current_state(TASK_INTERRUPTIBLE
);
1239 spin_lock_irqsave(&unit
->reg_lock
, flags
);
1240 if (unit
->suspended
) {
1241 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1243 set_current_state(TASK_INTERRUPTIBLE
);
1244 if (signal_pending(current
)) {
1245 if (!ret
) ret
= -EAGAIN
;
1250 swptr
= dmabuf
->swptr
;
1251 cnt
= dmabuf
->dmasize
- swptr
;
1252 if (dmabuf
->count
< cnt
)
1253 cnt
= dmabuf
->count
;
1254 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1260 /* buffer is empty, start the dma machine and wait for data to be
1262 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1263 if (!state
->rpcm
.running
) {
1264 ymf_capture_trigger(state
->unit
, &state
->rpcm
, 1);
1266 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1267 if (file
->f_flags
& O_NONBLOCK
) {
1268 if (!ret
) ret
= -EAGAIN
;
1271 /* This isnt strictly right for the 810 but it'll do */
1272 tmo
= (dmabuf
->dmasize
* HZ
) / (state
->format
.rate
* 2);
1273 tmo
>>= state
->format
.shift
;
1274 /* There are two situations when sleep_on_timeout returns, one is when
1275 the interrupt is serviced correctly and the process is waked up by
1276 ISR ON TIME. Another is when timeout is expired, which means that
1277 either interrupt is NOT serviced correctly (pending interrupt) or it
1278 is TOO LATE for the process to be scheduled to run (scheduler latency)
1279 which results in a (potential) buffer overrun. And worse, there is
1280 NOTHING we can do to prevent it. */
1281 tmo
= schedule_timeout(tmo
);
1282 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1283 set_current_state(TASK_INTERRUPTIBLE
);
1284 if (tmo
== 0 && dmabuf
->count
== 0) {
1285 printk(KERN_ERR
"ymfpci%d: recording schedule timeout, "
1286 "dmasz %u fragsz %u count %i hwptr %u swptr %u\n",
1287 state
->unit
->dev_audio
,
1288 dmabuf
->dmasize
, dmabuf
->fragsize
, dmabuf
->count
,
1289 dmabuf
->hwptr
, dmabuf
->swptr
);
1291 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1292 if (signal_pending(current
)) {
1293 if (!ret
) ret
= -ERESTARTSYS
;
1299 if (copy_to_user(buffer
, dmabuf
->rawbuf
+ swptr
, cnt
)) {
1300 if (!ret
) ret
= -EFAULT
;
1304 swptr
= (swptr
+ cnt
) % dmabuf
->dmasize
;
1306 spin_lock_irqsave(&unit
->reg_lock
, flags
);
1307 if (unit
->suspended
) {
1308 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1312 dmabuf
->swptr
= swptr
;
1313 dmabuf
->count
-= cnt
;
1314 // spin_unlock_irqrestore(&unit->reg_lock, flags);
1319 // spin_lock_irqsave(&unit->reg_lock, flags);
1320 if (!state
->rpcm
.running
) {
1321 ymf_capture_trigger(unit
, &state
->rpcm
, 1);
1323 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1325 set_current_state(TASK_RUNNING
);
1326 remove_wait_queue(&dmabuf
->wait
, &waita
);
1332 ymf_write(struct file
*file
, const char __user
*buffer
, size_t count
, loff_t
*ppos
)
1334 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1335 struct ymf_dmabuf
*dmabuf
= &state
->wpcm
.dmabuf
;
1336 struct ymf_unit
*unit
= state
->unit
;
1337 DECLARE_WAITQUEUE(waita
, current
);
1339 unsigned long flags
;
1341 int cnt
; /* This many to go in this revolution */
1345 YMFDBGW("ymf_write: count %d\n", count
);
1349 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 0)))
1354 * Alan's cs46xx works without a red zone - marvel of ingenuity.
1355 * We are not so brilliant... Red zone does two things:
1356 * 1. allows for safe start after a pause as we have no way
1357 * to know what the actual, relentlessly advancing, hwptr is.
1358 * 2. makes computations in ymf_pcm_interrupt simpler.
1360 redzone
= ymf_calc_lend(state
->format
.rate
) << state
->format
.shift
;
1361 redzone
*= 3; /* 2 redzone + 1 possible uncertainty reserve. */
1363 add_wait_queue(&dmabuf
->wait
, &waita
);
1364 set_current_state(TASK_INTERRUPTIBLE
);
1366 spin_lock_irqsave(&unit
->reg_lock
, flags
);
1367 if (unit
->suspended
) {
1368 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1370 set_current_state(TASK_INTERRUPTIBLE
);
1371 if (signal_pending(current
)) {
1372 if (!ret
) ret
= -EAGAIN
;
1377 if (dmabuf
->count
< 0) {
1379 "ymf_write: count %d, was legal in cs46xx\n",
1383 if (dmabuf
->count
== 0) {
1384 swptr
= dmabuf
->hwptr
;
1385 if (state
->wpcm
.running
) {
1387 * Add uncertainty reserve.
1389 cnt
= ymf_calc_lend(state
->format
.rate
);
1390 cnt
<<= state
->format
.shift
;
1391 if ((swptr
+= cnt
) >= dmabuf
->dmasize
) {
1392 swptr
-= dmabuf
->dmasize
;
1395 dmabuf
->swptr
= swptr
;
1398 * XXX This is not right if dmabuf->count is small -
1399 * about 2*x frame size or less. We cannot count on
1400 * on appending and not causing an artefact.
1401 * Should use a variation of the count==0 case above.
1403 swptr
= dmabuf
->swptr
;
1405 cnt
= dmabuf
->dmasize
- swptr
;
1406 if (dmabuf
->count
+ cnt
> dmabuf
->dmasize
- redzone
)
1407 cnt
= (dmabuf
->dmasize
- redzone
) - dmabuf
->count
;
1408 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1413 YMFDBGW("ymf_write: full, count %d swptr %d\n",
1414 dmabuf
->count
, dmabuf
->swptr
);
1416 * buffer is full, start the dma machine and
1417 * wait for data to be played
1419 spin_lock_irqsave(&unit
->reg_lock
, flags
);
1420 if (!state
->wpcm
.running
) {
1421 ymf_playback_trigger(unit
, &state
->wpcm
, 1);
1423 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1424 if (file
->f_flags
& O_NONBLOCK
) {
1425 if (!ret
) ret
= -EAGAIN
;
1429 set_current_state(TASK_INTERRUPTIBLE
);
1430 if (signal_pending(current
)) {
1431 if (!ret
) ret
= -ERESTARTSYS
;
1436 if (copy_from_user(dmabuf
->rawbuf
+ swptr
, buffer
, cnt
)) {
1437 if (!ret
) ret
= -EFAULT
;
1441 if ((swptr
+= cnt
) >= dmabuf
->dmasize
) {
1442 swptr
-= dmabuf
->dmasize
;
1445 spin_lock_irqsave(&unit
->reg_lock
, flags
);
1446 if (unit
->suspended
) {
1447 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1450 dmabuf
->swptr
= swptr
;
1451 dmabuf
->count
+= cnt
;
1454 * Start here is a bad idea - may cause startup click
1455 * in /bin/play when dmabuf is not full yet.
1456 * However, some broken applications do not make
1457 * any use of SNDCTL_DSP_SYNC (Doom is the worst).
1458 * One frame is about 5.3ms, Doom write size is 46ms.
1460 delay
= state
->format
.rate
/ 20; /* 50ms */
1461 delay
<<= state
->format
.shift
;
1462 if (dmabuf
->count
>= delay
&& !state
->wpcm
.running
) {
1463 ymf_playback_trigger(unit
, &state
->wpcm
, 1);
1466 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
1473 set_current_state(TASK_RUNNING
);
1474 remove_wait_queue(&dmabuf
->wait
, &waita
);
1476 YMFDBGW("ymf_write: ret %d dmabuf.count %d\n", ret
, dmabuf
->count
);
1480 static unsigned int ymf_poll(struct file
*file
, struct poll_table_struct
*wait
)
1482 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1483 struct ymf_dmabuf
*dmabuf
;
1485 unsigned long flags
;
1486 unsigned int mask
= 0;
1488 if (file
->f_mode
& FMODE_WRITE
)
1489 poll_wait(file
, &state
->wpcm
.dmabuf
.wait
, wait
);
1490 if (file
->f_mode
& FMODE_READ
)
1491 poll_wait(file
, &state
->rpcm
.dmabuf
.wait
, wait
);
1493 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1494 if (file
->f_mode
& FMODE_READ
) {
1495 dmabuf
= &state
->rpcm
.dmabuf
;
1496 if (dmabuf
->count
>= (signed)dmabuf
->fragsize
)
1497 mask
|= POLLIN
| POLLRDNORM
;
1499 if (file
->f_mode
& FMODE_WRITE
) {
1500 redzone
= ymf_calc_lend(state
->format
.rate
);
1501 redzone
<<= state
->format
.shift
;
1504 dmabuf
= &state
->wpcm
.dmabuf
;
1505 if (dmabuf
->mapped
) {
1506 if (dmabuf
->count
>= (signed)dmabuf
->fragsize
)
1507 mask
|= POLLOUT
| POLLWRNORM
;
1510 * Don't select unless a full fragment is available.
1511 * Otherwise artsd does GETOSPACE, sees 0, and loops.
1513 if (dmabuf
->count
+ redzone
+ dmabuf
->fragsize
1515 mask
|= POLLOUT
| POLLWRNORM
;
1518 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1523 static int ymf_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1525 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1526 struct ymf_dmabuf
*dmabuf
= &state
->wpcm
.dmabuf
;
1530 if (vma
->vm_flags
& VM_WRITE
) {
1531 if ((ret
= prog_dmabuf(state
, 0)) != 0)
1533 } else if (vma
->vm_flags
& VM_READ
) {
1534 if ((ret
= prog_dmabuf(state
, 1)) != 0)
1539 if (vma
->vm_pgoff
!= 0)
1541 size
= vma
->vm_end
- vma
->vm_start
;
1542 if (size
> (PAGE_SIZE
<< dmabuf
->buforder
))
1544 if (remap_pfn_range(vma
, vma
->vm_start
,
1545 virt_to_phys(dmabuf
->rawbuf
) >> PAGE_SHIFT
,
1546 size
, vma
->vm_page_prot
))
1550 /* P3 */ printk(KERN_INFO
"ymfpci: using memory mapped sound, untested!\n");
1554 static int ymf_ioctl(struct inode
*inode
, struct file
*file
,
1555 unsigned int cmd
, unsigned long arg
)
1557 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1558 struct ymf_dmabuf
*dmabuf
;
1559 unsigned long flags
;
1560 audio_buf_info abinfo
;
1564 void __user
*argp
= (void __user
*)arg
;
1565 int __user
*p
= argp
;
1568 case OSS_GETVERSION
:
1569 YMFDBGX("ymf_ioctl: cmd 0x%x(GETVER) arg 0x%lx\n", cmd
, arg
);
1570 return put_user(SOUND_VERSION
, p
);
1572 case SNDCTL_DSP_RESET
:
1573 YMFDBGX("ymf_ioctl: cmd 0x%x(RESET)\n", cmd
);
1574 if (file
->f_mode
& FMODE_WRITE
) {
1575 ymf_wait_dac(state
);
1576 dmabuf
= &state
->wpcm
.dmabuf
;
1577 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1579 dmabuf
->swptr
= dmabuf
->hwptr
;
1580 dmabuf
->count
= dmabuf
->total_bytes
= 0;
1581 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1583 if (file
->f_mode
& FMODE_READ
) {
1584 ymf_stop_adc(state
);
1585 dmabuf
= &state
->rpcm
.dmabuf
;
1586 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1588 dmabuf
->swptr
= dmabuf
->hwptr
;
1589 dmabuf
->count
= dmabuf
->total_bytes
= 0;
1590 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1594 case SNDCTL_DSP_SYNC
:
1595 YMFDBGX("ymf_ioctl: cmd 0x%x(SYNC)\n", cmd
);
1596 if (file
->f_mode
& FMODE_WRITE
) {
1597 dmabuf
= &state
->wpcm
.dmabuf
;
1598 if (file
->f_flags
& O_NONBLOCK
) {
1599 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1600 if (dmabuf
->count
!= 0 && !state
->wpcm
.running
) {
1601 ymf_start_dac(state
);
1603 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1605 ymf_wait_dac(state
);
1608 /* XXX What does this do for reading? dmabuf->count=0; ? */
1611 case SNDCTL_DSP_SPEED
: /* set smaple rate */
1612 if (get_user(val
, p
))
1614 YMFDBGX("ymf_ioctl: cmd 0x%x(SPEED) sp %d\n", cmd
, val
);
1615 if (val
>= 8000 && val
<= 48000) {
1616 if (file
->f_mode
& FMODE_WRITE
) {
1617 ymf_wait_dac(state
);
1618 dmabuf
= &state
->wpcm
.dmabuf
;
1619 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1621 state
->format
.rate
= val
;
1622 ymf_pcm_update_shift(&state
->format
);
1623 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1625 if (file
->f_mode
& FMODE_READ
) {
1626 ymf_stop_adc(state
);
1627 dmabuf
= &state
->rpcm
.dmabuf
;
1628 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1630 state
->format
.rate
= val
;
1631 ymf_pcm_update_shift(&state
->format
);
1632 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1635 return put_user(state
->format
.rate
, p
);
1638 * OSS manual does not mention SNDCTL_DSP_STEREO at all.
1639 * All channels are mono and if you want stereo, you
1640 * play into two channels with SNDCTL_DSP_CHANNELS.
1641 * However, mpg123 calls it. I wonder, why Michael Hipp used it.
1643 case SNDCTL_DSP_STEREO
: /* set stereo or mono channel */
1644 if (get_user(val
, p
))
1646 YMFDBGX("ymf_ioctl: cmd 0x%x(STEREO) st %d\n", cmd
, val
);
1647 if (file
->f_mode
& FMODE_WRITE
) {
1648 ymf_wait_dac(state
);
1649 dmabuf
= &state
->wpcm
.dmabuf
;
1650 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1652 state
->format
.voices
= val
? 2 : 1;
1653 ymf_pcm_update_shift(&state
->format
);
1654 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1656 if (file
->f_mode
& FMODE_READ
) {
1657 ymf_stop_adc(state
);
1658 dmabuf
= &state
->rpcm
.dmabuf
;
1659 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1661 state
->format
.voices
= val
? 2 : 1;
1662 ymf_pcm_update_shift(&state
->format
);
1663 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1667 case SNDCTL_DSP_GETBLKSIZE
:
1668 YMFDBGX("ymf_ioctl: cmd 0x%x(GETBLK)\n", cmd
);
1669 if (file
->f_mode
& FMODE_WRITE
) {
1670 if ((val
= prog_dmabuf(state
, 0)))
1672 val
= state
->wpcm
.dmabuf
.fragsize
;
1673 YMFDBGX("ymf_ioctl: GETBLK w %d\n", val
);
1674 return put_user(val
, p
);
1676 if (file
->f_mode
& FMODE_READ
) {
1677 if ((val
= prog_dmabuf(state
, 1)))
1679 val
= state
->rpcm
.dmabuf
.fragsize
;
1680 YMFDBGX("ymf_ioctl: GETBLK r %d\n", val
);
1681 return put_user(val
, p
);
1685 case SNDCTL_DSP_GETFMTS
: /* Returns a mask of supported sample format*/
1686 YMFDBGX("ymf_ioctl: cmd 0x%x(GETFMTS)\n", cmd
);
1687 return put_user(AFMT_S16_LE
|AFMT_U8
, p
);
1689 case SNDCTL_DSP_SETFMT
: /* Select sample format */
1690 if (get_user(val
, p
))
1692 YMFDBGX("ymf_ioctl: cmd 0x%x(SETFMT) fmt %d\n", cmd
, val
);
1693 if (val
== AFMT_S16_LE
|| val
== AFMT_U8
) {
1694 if (file
->f_mode
& FMODE_WRITE
) {
1695 ymf_wait_dac(state
);
1696 dmabuf
= &state
->wpcm
.dmabuf
;
1697 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1699 state
->format
.format
= val
;
1700 ymf_pcm_update_shift(&state
->format
);
1701 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1703 if (file
->f_mode
& FMODE_READ
) {
1704 ymf_stop_adc(state
);
1705 dmabuf
= &state
->rpcm
.dmabuf
;
1706 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1708 state
->format
.format
= val
;
1709 ymf_pcm_update_shift(&state
->format
);
1710 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1713 return put_user(state
->format
.format
, p
);
1715 case SNDCTL_DSP_CHANNELS
:
1716 if (get_user(val
, p
))
1718 YMFDBGX("ymf_ioctl: cmd 0x%x(CHAN) ch %d\n", cmd
, val
);
1720 if (file
->f_mode
& FMODE_WRITE
) {
1721 ymf_wait_dac(state
);
1722 if (val
== 1 || val
== 2) {
1723 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1724 dmabuf
= &state
->wpcm
.dmabuf
;
1726 state
->format
.voices
= val
;
1727 ymf_pcm_update_shift(&state
->format
);
1728 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1731 if (file
->f_mode
& FMODE_READ
) {
1732 ymf_stop_adc(state
);
1733 if (val
== 1 || val
== 2) {
1734 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1735 dmabuf
= &state
->rpcm
.dmabuf
;
1737 state
->format
.voices
= val
;
1738 ymf_pcm_update_shift(&state
->format
);
1739 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1743 return put_user(state
->format
.voices
, p
);
1745 case SNDCTL_DSP_POST
:
1746 YMFDBGX("ymf_ioctl: cmd 0x%x(POST)\n", cmd
);
1749 * The ioctl SNDCTL_DSP_POST is a lightweight version of
1750 * SNDCTL_DSP_SYNC. It just tells to the driver that there
1751 * is likely to be a pause in the output. This makes it
1752 * possible for the device to handle the pause more
1753 * intelligently. This ioctl doesn't block the application.
1755 * The paragraph above is a clumsy way to say "flush ioctl".
1756 * This ioctl is used by mpg123.
1758 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1759 if (state
->wpcm
.dmabuf
.count
!= 0 && !state
->wpcm
.running
) {
1760 ymf_start_dac(state
);
1762 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1765 case SNDCTL_DSP_SETFRAGMENT
:
1766 if (get_user(val
, p
))
1768 YMFDBGX("ymf_ioctl: cmd 0x%x(SETFRAG) fr 0x%04x:%04x(%d:%d)\n",
1770 (val
>> 16) & 0xFFFF, val
& 0xFFFF,
1771 (val
>> 16) & 0xFFFF, val
& 0xFFFF);
1772 dmabuf
= &state
->wpcm
.dmabuf
;
1773 dmabuf
->ossfragshift
= val
& 0xffff;
1774 dmabuf
->ossmaxfrags
= (val
>> 16) & 0xffff;
1775 if (dmabuf
->ossfragshift
< 4)
1776 dmabuf
->ossfragshift
= 4;
1777 if (dmabuf
->ossfragshift
> 15)
1778 dmabuf
->ossfragshift
= 15;
1781 case SNDCTL_DSP_GETOSPACE
:
1782 YMFDBGX("ymf_ioctl: cmd 0x%x(GETOSPACE)\n", cmd
);
1783 if (!(file
->f_mode
& FMODE_WRITE
))
1785 dmabuf
= &state
->wpcm
.dmabuf
;
1786 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 0)) != 0)
1788 redzone
= ymf_calc_lend(state
->format
.rate
);
1789 redzone
<<= state
->format
.shift
;
1791 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1792 abinfo
.fragsize
= dmabuf
->fragsize
;
1793 abinfo
.bytes
= dmabuf
->dmasize
- dmabuf
->count
- redzone
;
1794 abinfo
.fragstotal
= dmabuf
->numfrag
;
1795 abinfo
.fragments
= abinfo
.bytes
>> dmabuf
->fragshift
;
1796 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1797 return copy_to_user(argp
, &abinfo
, sizeof(abinfo
)) ? -EFAULT
: 0;
1799 case SNDCTL_DSP_GETISPACE
:
1800 YMFDBGX("ymf_ioctl: cmd 0x%x(GETISPACE)\n", cmd
);
1801 if (!(file
->f_mode
& FMODE_READ
))
1803 dmabuf
= &state
->rpcm
.dmabuf
;
1804 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 1)) != 0)
1806 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1807 abinfo
.fragsize
= dmabuf
->fragsize
;
1808 abinfo
.bytes
= dmabuf
->count
;
1809 abinfo
.fragstotal
= dmabuf
->numfrag
;
1810 abinfo
.fragments
= abinfo
.bytes
>> dmabuf
->fragshift
;
1811 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1812 return copy_to_user(argp
, &abinfo
, sizeof(abinfo
)) ? -EFAULT
: 0;
1814 case SNDCTL_DSP_NONBLOCK
:
1815 YMFDBGX("ymf_ioctl: cmd 0x%x(NONBLOCK)\n", cmd
);
1816 file
->f_flags
|= O_NONBLOCK
;
1819 case SNDCTL_DSP_GETCAPS
:
1820 YMFDBGX("ymf_ioctl: cmd 0x%x(GETCAPS)\n", cmd
);
1821 /* return put_user(DSP_CAP_REALTIME|DSP_CAP_TRIGGER|DSP_CAP_MMAP,
1823 return put_user(0, p
);
1825 case SNDCTL_DSP_GETIPTR
:
1826 YMFDBGX("ymf_ioctl: cmd 0x%x(GETIPTR)\n", cmd
);
1827 if (!(file
->f_mode
& FMODE_READ
))
1829 dmabuf
= &state
->rpcm
.dmabuf
;
1830 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1831 cinfo
.bytes
= dmabuf
->total_bytes
;
1832 cinfo
.blocks
= dmabuf
->count
>> dmabuf
->fragshift
;
1833 cinfo
.ptr
= dmabuf
->hwptr
;
1834 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1835 YMFDBGX("ymf_ioctl: GETIPTR ptr %d bytes %d\n",
1836 cinfo
.ptr
, cinfo
.bytes
);
1837 return copy_to_user(argp
, &cinfo
, sizeof(cinfo
)) ? -EFAULT
: 0;
1839 case SNDCTL_DSP_GETOPTR
:
1840 YMFDBGX("ymf_ioctl: cmd 0x%x(GETOPTR)\n", cmd
);
1841 if (!(file
->f_mode
& FMODE_WRITE
))
1843 dmabuf
= &state
->wpcm
.dmabuf
;
1844 spin_lock_irqsave(&state
->unit
->reg_lock
, flags
);
1845 cinfo
.bytes
= dmabuf
->total_bytes
;
1846 cinfo
.blocks
= dmabuf
->count
>> dmabuf
->fragshift
;
1847 cinfo
.ptr
= dmabuf
->hwptr
;
1848 spin_unlock_irqrestore(&state
->unit
->reg_lock
, flags
);
1849 YMFDBGX("ymf_ioctl: GETOPTR ptr %d bytes %d\n",
1850 cinfo
.ptr
, cinfo
.bytes
);
1851 return copy_to_user(argp
, &cinfo
, sizeof(cinfo
)) ? -EFAULT
: 0;
1853 case SNDCTL_DSP_SETDUPLEX
:
1854 YMFDBGX("ymf_ioctl: cmd 0x%x(SETDUPLEX)\n", cmd
);
1855 return 0; /* Always duplex */
1857 case SOUND_PCM_READ_RATE
:
1858 YMFDBGX("ymf_ioctl: cmd 0x%x(READ_RATE)\n", cmd
);
1859 return put_user(state
->format
.rate
, p
);
1861 case SOUND_PCM_READ_CHANNELS
:
1862 YMFDBGX("ymf_ioctl: cmd 0x%x(READ_CH)\n", cmd
);
1863 return put_user(state
->format
.voices
, p
);
1865 case SOUND_PCM_READ_BITS
:
1866 YMFDBGX("ymf_ioctl: cmd 0x%x(READ_BITS)\n", cmd
);
1867 return put_user(AFMT_S16_LE
, p
);
1869 case SNDCTL_DSP_MAPINBUF
:
1870 case SNDCTL_DSP_MAPOUTBUF
:
1871 case SNDCTL_DSP_SETSYNCRO
:
1872 case SOUND_PCM_WRITE_FILTER
:
1873 case SOUND_PCM_READ_FILTER
:
1874 YMFDBGX("ymf_ioctl: cmd 0x%x unsupported\n", cmd
);
1879 * Some programs mix up audio devices and ioctls
1880 * or perhaps they expect "universal" ioctls,
1881 * for instance we get SNDCTL_TMR_CONTINUE here.
1882 * (mpg123 -g 100 ends here too - to be fixed.)
1884 YMFDBGX("ymf_ioctl: cmd 0x%x unknown\n", cmd
);
1892 * We use upper part of the minor to distinguish between soundcards.
1893 * Channels are opened with a clone open.
1895 static int ymf_open(struct inode
*inode
, struct file
*file
)
1897 struct list_head
*list
;
1898 ymfpci_t
*unit
= NULL
;
1900 struct ymf_state
*state
;
1903 minor
= iminor(inode
);
1904 if ((minor
& 0x0F) == 3) { /* /dev/dspN */
1910 unit
= NULL
; /* gcc warns */
1911 spin_lock(&ymf_devs_lock
);
1912 list_for_each(list
, &ymf_devs
) {
1913 unit
= list_entry(list
, ymfpci_t
, ymf_devs
);
1914 if (((unit
->dev_audio
^ minor
) & ~0x0F) == 0)
1917 spin_unlock(&ymf_devs_lock
);
1921 mutex_lock(&unit
->open_mutex
);
1923 if ((state
= ymf_state_alloc(unit
)) == NULL
) {
1924 mutex_unlock(&unit
->open_mutex
);
1927 list_add_tail(&state
->chain
, &unit
->states
);
1929 file
->private_data
= state
;
1932 * ymf_read and ymf_write that we borrowed from cs46xx
1933 * allocate buffers with prog_dmabuf(). We call prog_dmabuf
1934 * here so that in case of DMA memory exhaustion open
1935 * fails rather than write.
1937 * XXX prog_dmabuf allocates voice. Should allocate explicitly, above.
1939 if (file
->f_mode
& FMODE_WRITE
) {
1940 if (!state
->wpcm
.dmabuf
.ready
) {
1941 if ((err
= prog_dmabuf(state
, 0)) != 0) {
1946 if (file
->f_mode
& FMODE_READ
) {
1947 if (!state
->rpcm
.dmabuf
.ready
) {
1948 if ((err
= prog_dmabuf(state
, 1)) != 0) {
1954 #if 0 /* test if interrupts work */
1955 ymfpci_writew(unit
, YDSXGR_TIMERCOUNT
, 0xfffe); /* ~ 680ms */
1956 ymfpci_writeb(unit
, YDSXGR_TIMERCTRL
,
1957 (YDSXGR_TIMERCTRL_TEN
|YDSXGR_TIMERCTRL_TIEN
));
1959 mutex_unlock(&unit
->open_mutex
);
1961 return nonseekable_open(inode
, file
);
1965 * XXX Broken custom: "goto out_xxx" in other place is
1966 * a nestable exception, but here it is not nestable due to semaphore.
1967 * XXX Doubtful technique of self-describing objects....
1969 dealloc_dmabuf(unit
, &state
->wpcm
.dmabuf
);
1970 dealloc_dmabuf(unit
, &state
->rpcm
.dmabuf
);
1971 ymf_pcm_free_substream(&state
->wpcm
);
1972 ymf_pcm_free_substream(&state
->rpcm
);
1974 list_del(&state
->chain
);
1977 mutex_unlock(&unit
->open_mutex
);
1981 static int ymf_release(struct inode
*inode
, struct file
*file
)
1983 struct ymf_state
*state
= (struct ymf_state
*)file
->private_data
;
1984 ymfpci_t
*unit
= state
->unit
;
1986 #if 0 /* test if interrupts work */
1987 ymfpci_writeb(unit
, YDSXGR_TIMERCTRL
, 0);
1990 mutex_lock(&unit
->open_mutex
);
1993 * XXX Solve the case of O_NONBLOCK close - don't deallocate here.
1994 * Deallocate when unloading the driver and we can wait.
1996 ymf_wait_dac(state
);
1997 ymf_stop_adc(state
); /* fortunately, it's immediate */
1998 dealloc_dmabuf(unit
, &state
->wpcm
.dmabuf
);
1999 dealloc_dmabuf(unit
, &state
->rpcm
.dmabuf
);
2000 ymf_pcm_free_substream(&state
->wpcm
);
2001 ymf_pcm_free_substream(&state
->rpcm
);
2003 list_del(&state
->chain
);
2004 file
->private_data
= NULL
; /* Can you tell I programmed Solaris */
2007 mutex_unlock(&unit
->open_mutex
);
2013 * Mixer operations are based on cs46xx.
2015 static int ymf_open_mixdev(struct inode
*inode
, struct file
*file
)
2017 int minor
= iminor(inode
);
2018 struct list_head
*list
;
2022 spin_lock(&ymf_devs_lock
);
2023 list_for_each(list
, &ymf_devs
) {
2024 unit
= list_entry(list
, ymfpci_t
, ymf_devs
);
2025 for (i
= 0; i
< NR_AC97
; i
++) {
2026 if (unit
->ac97_codec
[i
] != NULL
&&
2027 unit
->ac97_codec
[i
]->dev_mixer
== minor
) {
2028 spin_unlock(&ymf_devs_lock
);
2033 spin_unlock(&ymf_devs_lock
);
2037 file
->private_data
= unit
->ac97_codec
[i
];
2039 return nonseekable_open(inode
, file
);
2042 static int ymf_ioctl_mixdev(struct inode
*inode
, struct file
*file
,
2043 unsigned int cmd
, unsigned long arg
)
2045 struct ac97_codec
*codec
= (struct ac97_codec
*)file
->private_data
;
2047 return codec
->mixer_ioctl(codec
, cmd
, arg
);
2050 static int ymf_release_mixdev(struct inode
*inode
, struct file
*file
)
2055 static /*const*/ struct file_operations ymf_fops
= {
2056 .owner
= THIS_MODULE
,
2057 .llseek
= no_llseek
,
2064 .release
= ymf_release
,
2067 static /*const*/ struct file_operations ymf_mixer_fops
= {
2068 .owner
= THIS_MODULE
,
2069 .llseek
= no_llseek
,
2070 .ioctl
= ymf_ioctl_mixdev
,
2071 .open
= ymf_open_mixdev
,
2072 .release
= ymf_release_mixdev
,
2078 static int ymf_suspend(struct pci_dev
*pcidev
, pm_message_t unused
)
2080 struct ymf_unit
*unit
= pci_get_drvdata(pcidev
);
2081 unsigned long flags
;
2082 struct ymf_dmabuf
*dmabuf
;
2083 struct list_head
*p
;
2084 struct ymf_state
*state
;
2085 struct ac97_codec
*codec
;
2088 spin_lock_irqsave(&unit
->reg_lock
, flags
);
2090 unit
->suspended
= 1;
2092 for (i
= 0; i
< NR_AC97
; i
++) {
2093 if ((codec
= unit
->ac97_codec
[i
]) != NULL
)
2094 ac97_save_state(codec
);
2097 list_for_each(p
, &unit
->states
) {
2098 state
= list_entry(p
, struct ymf_state
, chain
);
2100 dmabuf
= &state
->wpcm
.dmabuf
;
2101 dmabuf
->hwptr
= dmabuf
->swptr
= 0;
2102 dmabuf
->total_bytes
= 0;
2105 dmabuf
= &state
->rpcm
.dmabuf
;
2106 dmabuf
->hwptr
= dmabuf
->swptr
= 0;
2107 dmabuf
->total_bytes
= 0;
2111 ymfpci_writel(unit
, YDSXGR_NATIVEDACOUTVOL
, 0);
2112 ymfpci_disable_dsp(unit
);
2114 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
2119 static int ymf_resume(struct pci_dev
*pcidev
)
2121 struct ymf_unit
*unit
= pci_get_drvdata(pcidev
);
2122 unsigned long flags
;
2123 struct list_head
*p
;
2124 struct ymf_state
*state
;
2125 struct ac97_codec
*codec
;
2128 ymfpci_aclink_reset(unit
->pci
);
2129 ymfpci_codec_ready(unit
, 0, 1); /* prints diag if not ready. */
2131 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2132 /* XXX At this time the legacy registers are probably deprogrammed. */
2135 ymfpci_download_image(unit
);
2139 spin_lock_irqsave(&unit
->reg_lock
, flags
);
2141 if (unit
->start_count
) {
2142 ymfpci_writel(unit
, YDSXGR_MODE
, 3);
2143 unit
->active_bank
= ymfpci_readl(unit
, YDSXGR_CTRLSELECT
) & 1;
2146 for (i
= 0; i
< NR_AC97
; i
++) {
2147 if ((codec
= unit
->ac97_codec
[i
]) != NULL
)
2148 ac97_restore_state(codec
);
2151 unit
->suspended
= 0;
2152 list_for_each(p
, &unit
->states
) {
2153 state
= list_entry(p
, struct ymf_state
, chain
);
2154 wake_up(&state
->wpcm
.dmabuf
.wait
);
2155 wake_up(&state
->rpcm
.dmabuf
.wait
);
2158 spin_unlock_irqrestore(&unit
->reg_lock
, flags
);
2163 * initialization routines
2166 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2168 static int ymfpci_setup_legacy(ymfpci_t
*unit
, struct pci_dev
*pcidev
)
2171 int mpuio
= -1, oplio
= -1;
2173 switch (unit
->iomidi
) {
2189 switch (unit
->iosynth
) {
2205 if (mpuio
>= 0 || oplio
>= 0) {
2206 /* 0x0020: 1 - 10 bits of I/O address decoded, 0 - 16 bits. */
2208 pci_write_config_word(pcidev
, PCIR_LEGCTRL
, v
);
2210 switch (pcidev
->device
) {
2211 case PCI_DEVICE_ID_YAMAHA_724
:
2212 case PCI_DEVICE_ID_YAMAHA_740
:
2213 case PCI_DEVICE_ID_YAMAHA_724F
:
2214 case PCI_DEVICE_ID_YAMAHA_740C
:
2216 if (mpuio
>= 0) { v
|= mpuio
<<4; }
2217 if (oplio
>= 0) { v
|= oplio
; }
2218 pci_write_config_word(pcidev
, PCIR_ELEGCTRL
, v
);
2221 case PCI_DEVICE_ID_YAMAHA_744
:
2222 case PCI_DEVICE_ID_YAMAHA_754
:
2224 pci_write_config_word(pcidev
, PCIR_ELEGCTRL
, v
);
2226 pci_write_config_word(pcidev
, PCIR_OPLADR
, unit
->iosynth
);
2229 pci_write_config_word(pcidev
, PCIR_MPUADR
, unit
->iomidi
);
2234 printk(KERN_ERR
"ymfpci: Unknown device ID: 0x%x\n",
2242 #endif /* CONFIG_SOUND_YMFPCI_LEGACY */
2244 static void ymfpci_aclink_reset(struct pci_dev
* pci
)
2249 * In the 744, 754 only 0x01 exists, 0x02 is undefined.
2250 * It does not seem to hurt to trip both regardless of revision.
2252 pci_read_config_byte(pci
, PCIR_DSXGCTRL
, &cmd
);
2253 pci_write_config_byte(pci
, PCIR_DSXGCTRL
, cmd
& 0xfc);
2254 pci_write_config_byte(pci
, PCIR_DSXGCTRL
, cmd
| 0x03);
2255 pci_write_config_byte(pci
, PCIR_DSXGCTRL
, cmd
& 0xfc);
2257 pci_write_config_word(pci
, PCIR_DSXPWRCTRL1
, 0);
2258 pci_write_config_word(pci
, PCIR_DSXPWRCTRL2
, 0);
2261 static void ymfpci_enable_dsp(ymfpci_t
*codec
)
2263 ymfpci_writel(codec
, YDSXGR_CONFIG
, 0x00000001);
2266 static void ymfpci_disable_dsp(ymfpci_t
*codec
)
2271 val
= ymfpci_readl(codec
, YDSXGR_CONFIG
);
2273 ymfpci_writel(codec
, YDSXGR_CONFIG
, 0x00000000);
2274 while (timeout
-- > 0) {
2275 val
= ymfpci_readl(codec
, YDSXGR_STATUS
);
2276 if ((val
& 0x00000002) == 0)
2281 #include "ymfpci_image.h"
2283 static void ymfpci_download_image(ymfpci_t
*codec
)
2288 ymfpci_writel(codec
, YDSXGR_NATIVEDACOUTVOL
, 0x00000000);
2289 ymfpci_disable_dsp(codec
);
2290 ymfpci_writel(codec
, YDSXGR_MODE
, 0x00010000);
2291 ymfpci_writel(codec
, YDSXGR_MODE
, 0x00000000);
2292 ymfpci_writel(codec
, YDSXGR_MAPOFREC
, 0x00000000);
2293 ymfpci_writel(codec
, YDSXGR_MAPOFEFFECT
, 0x00000000);
2294 ymfpci_writel(codec
, YDSXGR_PLAYCTRLBASE
, 0x00000000);
2295 ymfpci_writel(codec
, YDSXGR_RECCTRLBASE
, 0x00000000);
2296 ymfpci_writel(codec
, YDSXGR_EFFCTRLBASE
, 0x00000000);
2297 ctrl
= ymfpci_readw(codec
, YDSXGR_GLOBALCTRL
);
2298 ymfpci_writew(codec
, YDSXGR_GLOBALCTRL
, ctrl
& ~0x0007);
2300 /* setup DSP instruction code */
2301 for (i
= 0; i
< YDSXG_DSPLENGTH
/ 4; i
++)
2302 ymfpci_writel(codec
, YDSXGR_DSPINSTRAM
+ (i
<< 2), DspInst
[i
]);
2304 switch (codec
->pci
->device
) {
2305 case PCI_DEVICE_ID_YAMAHA_724F
:
2306 case PCI_DEVICE_ID_YAMAHA_740C
:
2307 case PCI_DEVICE_ID_YAMAHA_744
:
2308 case PCI_DEVICE_ID_YAMAHA_754
:
2316 /* setup control instruction code */
2317 for (i
= 0; i
< YDSXG_CTRLLENGTH
/ 4; i
++)
2318 ymfpci_writel(codec
, YDSXGR_CTRLINSTRAM
+ (i
<< 2), CntrlInst1E
[i
]);
2320 for (i
= 0; i
< YDSXG_CTRLLENGTH
/ 4; i
++)
2321 ymfpci_writel(codec
, YDSXGR_CTRLINSTRAM
+ (i
<< 2), CntrlInst
[i
]);
2324 ymfpci_enable_dsp(codec
);
2326 /* 0.02s sounds not too bad, we may do schedule_timeout() later. */
2327 mdelay(20); /* seems we need some delay after downloading image.. */
2330 static int ymfpci_memalloc(ymfpci_t
*codec
)
2332 unsigned int playback_ctrl_size
;
2333 unsigned int bank_size_playback
;
2334 unsigned int bank_size_capture
;
2335 unsigned int bank_size_effect
;
2342 playback_ctrl_size
= 4 + 4 * YDSXG_PLAYBACK_VOICES
;
2343 bank_size_playback
= ymfpci_readl(codec
, YDSXGR_PLAYCTRLSIZE
) << 2;
2344 bank_size_capture
= ymfpci_readl(codec
, YDSXGR_RECCTRLSIZE
) << 2;
2345 bank_size_effect
= ymfpci_readl(codec
, YDSXGR_EFFCTRLSIZE
) << 2;
2346 codec
->work_size
= YDSXG_DEFAULT_WORK_SIZE
;
2348 size
= ((playback_ctrl_size
+ 0x00ff) & ~0x00ff) +
2349 ((bank_size_playback
* 2 * YDSXG_PLAYBACK_VOICES
+ 0xff) & ~0xff) +
2350 ((bank_size_capture
* 2 * YDSXG_CAPTURE_VOICES
+ 0xff) & ~0xff) +
2351 ((bank_size_effect
* 2 * YDSXG_EFFECT_VOICES
+ 0xff) & ~0xff) +
2354 ptr
= pci_alloc_consistent(codec
->pci
, size
+ 0xff, &pba
);
2357 codec
->dma_area_va
= ptr
;
2358 codec
->dma_area_ba
= pba
;
2359 codec
->dma_area_size
= size
+ 0xff;
2361 off
= (unsigned long)ptr
& 0xff;
2368 * Hardware requires only ptr[playback_ctrl_size] zeroed,
2369 * but in our judgement it is a wrong kind of savings, so clear it all.
2371 memset(ptr
, 0, size
);
2373 codec
->ctrl_playback
= (u32
*)ptr
;
2374 codec
->ctrl_playback_ba
= pba
;
2375 codec
->ctrl_playback
[0] = cpu_to_le32(YDSXG_PLAYBACK_VOICES
);
2376 ptr
+= (playback_ctrl_size
+ 0x00ff) & ~0x00ff;
2377 pba
+= (playback_ctrl_size
+ 0x00ff) & ~0x00ff;
2380 for (voice
= 0; voice
< YDSXG_PLAYBACK_VOICES
; voice
++) {
2381 codec
->voices
[voice
].number
= voice
;
2382 codec
->voices
[voice
].bank
=
2383 (ymfpci_playback_bank_t
*) (ptr
+ off
);
2384 codec
->voices
[voice
].bank_ba
= pba
+ off
;
2385 off
+= 2 * bank_size_playback
; /* 2 banks */
2387 off
= (off
+ 0xff) & ~0xff;
2392 codec
->bank_base_capture
= pba
;
2393 for (voice
= 0; voice
< YDSXG_CAPTURE_VOICES
; voice
++)
2394 for (bank
= 0; bank
< 2; bank
++) {
2395 codec
->bank_capture
[voice
][bank
] =
2396 (ymfpci_capture_bank_t
*) (ptr
+ off
);
2397 off
+= bank_size_capture
;
2399 off
= (off
+ 0xff) & ~0xff;
2404 codec
->bank_base_effect
= pba
;
2405 for (voice
= 0; voice
< YDSXG_EFFECT_VOICES
; voice
++)
2406 for (bank
= 0; bank
< 2; bank
++) {
2407 codec
->bank_effect
[voice
][bank
] =
2408 (ymfpci_effect_bank_t
*) (ptr
+ off
);
2409 off
+= bank_size_effect
;
2411 off
= (off
+ 0xff) & ~0xff;
2415 codec
->work_base
= pba
;
2420 static void ymfpci_memfree(ymfpci_t
*codec
)
2422 ymfpci_writel(codec
, YDSXGR_PLAYCTRLBASE
, 0);
2423 ymfpci_writel(codec
, YDSXGR_RECCTRLBASE
, 0);
2424 ymfpci_writel(codec
, YDSXGR_EFFCTRLBASE
, 0);
2425 ymfpci_writel(codec
, YDSXGR_WORKBASE
, 0);
2426 ymfpci_writel(codec
, YDSXGR_WORKSIZE
, 0);
2427 pci_free_consistent(codec
->pci
,
2428 codec
->dma_area_size
, codec
->dma_area_va
, codec
->dma_area_ba
);
2431 static void ymf_memload(ymfpci_t
*unit
)
2434 ymfpci_writel(unit
, YDSXGR_PLAYCTRLBASE
, unit
->ctrl_playback_ba
);
2435 ymfpci_writel(unit
, YDSXGR_RECCTRLBASE
, unit
->bank_base_capture
);
2436 ymfpci_writel(unit
, YDSXGR_EFFCTRLBASE
, unit
->bank_base_effect
);
2437 ymfpci_writel(unit
, YDSXGR_WORKBASE
, unit
->work_base
);
2438 ymfpci_writel(unit
, YDSXGR_WORKSIZE
, unit
->work_size
>> 2);
2440 /* S/PDIF output initialization */
2441 ymfpci_writew(unit
, YDSXGR_SPDIFOUTCTRL
, 0);
2442 ymfpci_writew(unit
, YDSXGR_SPDIFOUTSTATUS
,
2443 SND_PCM_AES0_CON_EMPHASIS_NONE
|
2444 (SND_PCM_AES1_CON_ORIGINAL
<< 8) |
2445 (SND_PCM_AES1_CON_PCM_CODER
<< 8));
2447 /* S/PDIF input initialization */
2448 ymfpci_writew(unit
, YDSXGR_SPDIFINCTRL
, 0);
2450 /* move this volume setup to mixer */
2451 ymfpci_writel(unit
, YDSXGR_NATIVEDACOUTVOL
, 0x3fff3fff);
2452 ymfpci_writel(unit
, YDSXGR_BUF441OUTVOL
, 0);
2453 ymfpci_writel(unit
, YDSXGR_NATIVEADCINVOL
, 0x3fff3fff);
2454 ymfpci_writel(unit
, YDSXGR_NATIVEDACINVOL
, 0x3fff3fff);
2457 static int ymf_ac97_init(ymfpci_t
*unit
, int num_ac97
)
2459 struct ac97_codec
*codec
;
2462 if ((codec
= ac97_alloc_codec()) == NULL
)
2465 /* initialize some basic codec information, other fields will be filled
2466 in ac97_probe_codec */
2467 codec
->private_data
= unit
;
2468 codec
->id
= num_ac97
;
2470 codec
->codec_read
= ymfpci_codec_read
;
2471 codec
->codec_write
= ymfpci_codec_write
;
2473 if (ac97_probe_codec(codec
) == 0) {
2474 printk(KERN_ERR
"ymfpci: ac97_probe_codec failed\n");
2478 eid
= ymfpci_codec_read(codec
, AC97_EXTENDED_ID
);
2480 printk(KERN_WARNING
"ymfpci: no codec attached ?\n");
2484 unit
->ac97_features
= eid
;
2486 if ((codec
->dev_mixer
= register_sound_mixer(&ymf_mixer_fops
, -1)) < 0) {
2487 printk(KERN_ERR
"ymfpci: couldn't register mixer!\n");
2491 unit
->ac97_codec
[num_ac97
] = codec
;
2495 ac97_release_codec(codec
);
2499 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2502 static int synth_io
;
2503 module_param(mpu_io
, int, 0);
2504 module_param(synth_io
, int, 0);
2506 static int mpu_io
= 0x330;
2507 static int synth_io
= 0x388;
2509 static int assigned
;
2510 #endif /* CONFIG_SOUND_YMFPCI_LEGACY */
2512 static int __devinit
ymf_probe_one(struct pci_dev
*pcidev
, const struct pci_device_id
*ent
)
2520 if ((err
= pci_enable_device(pcidev
)) != 0) {
2521 printk(KERN_ERR
"ymfpci: pci_enable_device failed\n");
2524 base
= pci_resource_start(pcidev
, 0);
2526 if ((codec
= kmalloc(sizeof(ymfpci_t
), GFP_KERNEL
)) == NULL
) {
2527 printk(KERN_ERR
"ymfpci: no core\n");
2530 memset(codec
, 0, sizeof(*codec
));
2532 spin_lock_init(&codec
->reg_lock
);
2533 spin_lock_init(&codec
->voice_lock
);
2534 spin_lock_init(&codec
->ac97_lock
);
2535 mutex_init(&codec
->open_mutex
);
2536 INIT_LIST_HEAD(&codec
->states
);
2537 codec
->pci
= pcidev
;
2539 pci_read_config_byte(pcidev
, PCI_REVISION_ID
, &codec
->rev
);
2541 if (request_mem_region(base
, 0x8000, "ymfpci") == NULL
) {
2542 printk(KERN_ERR
"ymfpci: unable to request mem region\n");
2546 if ((codec
->reg_area_virt
= ioremap(base
, 0x8000)) == NULL
) {
2547 printk(KERN_ERR
"ymfpci: unable to map registers\n");
2548 goto out_release_region
;
2551 pci_set_master(pcidev
);
2553 printk(KERN_INFO
"ymfpci: %s at 0x%lx IRQ %d\n",
2554 (char *)ent
->driver_data
, base
, pcidev
->irq
);
2556 ymfpci_aclink_reset(pcidev
);
2557 if (ymfpci_codec_ready(codec
, 0, 1) < 0)
2560 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2561 if (assigned
== 0) {
2562 codec
->iomidi
= mpu_io
;
2563 codec
->iosynth
= synth_io
;
2564 if (ymfpci_setup_legacy(codec
, pcidev
) < 0)
2570 ymfpci_download_image(codec
);
2572 if (ymfpci_memalloc(codec
) < 0)
2573 goto out_disable_dsp
;
2576 if (request_irq(pcidev
->irq
, ymf_interrupt
, SA_SHIRQ
, "ymfpci", codec
) != 0) {
2577 printk(KERN_ERR
"ymfpci: unable to request IRQ %d\n",
2582 /* register /dev/dsp */
2583 if ((codec
->dev_audio
= register_sound_dsp(&ymf_fops
, -1)) < 0) {
2584 printk(KERN_ERR
"ymfpci: unable to register dsp\n");
2589 * Poke just the primary for the moment.
2591 if ((err
= ymf_ac97_init(codec
, 0)) != 0)
2592 goto out_unregister_sound_dsp
;
2594 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2595 codec
->opl3_data
.name
= "ymfpci";
2596 codec
->mpu_data
.name
= "ymfpci";
2598 codec
->opl3_data
.io_base
= codec
->iosynth
;
2599 codec
->opl3_data
.irq
= -1;
2601 codec
->mpu_data
.io_base
= codec
->iomidi
;
2602 codec
->mpu_data
.irq
= -1; /* May be different from our PCI IRQ. */
2604 if (codec
->iomidi
) {
2605 if (!probe_uart401(&codec
->mpu_data
, THIS_MODULE
)) {
2606 codec
->iomidi
= 0; /* XXX kludge */
2609 #endif /* CONFIG_SOUND_YMFPCI_LEGACY */
2611 /* put it into driver list */
2612 spin_lock(&ymf_devs_lock
);
2613 list_add_tail(&codec
->ymf_devs
, &ymf_devs
);
2614 spin_unlock(&ymf_devs_lock
);
2615 pci_set_drvdata(pcidev
, codec
);
2619 out_unregister_sound_dsp
:
2620 unregister_sound_dsp(codec
->dev_audio
);
2622 free_irq(pcidev
->irq
, codec
);
2624 ymfpci_memfree(codec
);
2626 ymfpci_disable_dsp(codec
);
2627 ctrl
= ymfpci_readw(codec
, YDSXGR_GLOBALCTRL
);
2628 ymfpci_writew(codec
, YDSXGR_GLOBALCTRL
, ctrl
& ~0x0007);
2629 ymfpci_writel(codec
, YDSXGR_STATUS
, ~0);
2631 iounmap(codec
->reg_area_virt
);
2633 release_mem_region(pci_resource_start(pcidev
, 0), 0x8000);
2635 if (codec
->ac97_codec
[0])
2636 ac97_release_codec(codec
->ac97_codec
[0]);
2640 static void __devexit
ymf_remove_one(struct pci_dev
*pcidev
)
2643 ymfpci_t
*codec
= pci_get_drvdata(pcidev
);
2645 /* remove from list of devices */
2646 spin_lock(&ymf_devs_lock
);
2647 list_del(&codec
->ymf_devs
);
2648 spin_unlock(&ymf_devs_lock
);
2650 unregister_sound_mixer(codec
->ac97_codec
[0]->dev_mixer
);
2651 ac97_release_codec(codec
->ac97_codec
[0]);
2652 unregister_sound_dsp(codec
->dev_audio
);
2653 free_irq(pcidev
->irq
, codec
);
2654 ymfpci_memfree(codec
);
2655 ymfpci_writel(codec
, YDSXGR_STATUS
, ~0);
2656 ymfpci_disable_dsp(codec
);
2657 ctrl
= ymfpci_readw(codec
, YDSXGR_GLOBALCTRL
);
2658 ymfpci_writew(codec
, YDSXGR_GLOBALCTRL
, ctrl
& ~0x0007);
2659 iounmap(codec
->reg_area_virt
);
2660 release_mem_region(pci_resource_start(pcidev
, 0), 0x8000);
2661 #ifdef CONFIG_SOUND_YMFPCI_LEGACY
2662 if (codec
->iomidi
) {
2663 unload_uart401(&codec
->mpu_data
);
2665 #endif /* CONFIG_SOUND_YMFPCI_LEGACY */
2668 MODULE_AUTHOR("Jaroslav Kysela");
2669 MODULE_DESCRIPTION("Yamaha YMF7xx PCI Audio");
2670 MODULE_LICENSE("GPL");
2672 static struct pci_driver ymfpci_driver
= {
2674 .id_table
= ymf_id_tbl
,
2675 .probe
= ymf_probe_one
,
2676 .remove
= __devexit_p(ymf_remove_one
),
2677 .suspend
= ymf_suspend
,
2678 .resume
= ymf_resume
2681 static int __init
ymf_init_module(void)
2683 return pci_register_driver(&ymfpci_driver
);
2686 static void __exit
ymf_cleanup_module (void)
2688 pci_unregister_driver(&ymfpci_driver
);
2691 module_init(ymf_init_module
);
2692 module_exit(ymf_cleanup_module
);