2 * SAA713x ALSA support for V4L
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include <linux/init.h>
20 #include <linux/slab.h>
21 #include <linux/time.h>
22 #include <linux/wait.h>
23 #include <linux/module.h>
24 #include <sound/core.h>
25 #include <sound/control.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
28 #include <sound/initval.h>
29 #include <linux/interrupt.h>
32 #include "saa7134-reg.h"
34 static unsigned int debug
;
35 module_param(debug
, int, 0644);
36 MODULE_PARM_DESC(debug
,"enable debug messages [alsa]");
39 * Configuration macros
43 #define MIXER_ADDR_UNSELECTED -1
44 #define MIXER_ADDR_TVTUNER 0
45 #define MIXER_ADDR_LINE1 1
46 #define MIXER_ADDR_LINE2 2
47 #define MIXER_ADDR_LAST 2
50 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
51 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
52 static int enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 1};
54 module_param_array(index
, int, NULL
, 0444);
55 module_param_array(enable
, int, NULL
, 0444);
56 MODULE_PARM_DESC(index
, "Index value for SAA7134 capture interface(s).");
57 MODULE_PARM_DESC(enable
, "Enable (or not) the SAA7134 capture interface(s).");
59 #define dprintk(fmt, arg...) if (debug) \
60 printk(KERN_DEBUG "%s/alsa: " fmt, dev->name , ##arg)
68 typedef struct snd_card_saa7134
{
69 struct snd_card
*card
;
70 spinlock_t mixer_lock
;
71 int mixer_volume
[MIXER_ADDR_LAST
+1][2];
72 int capture_source_addr
;
73 int capture_source
[2];
74 struct snd_kcontrol
*capture_ctl
[MIXER_ADDR_LAST
+1];
76 struct saa7134_dev
*dev
;
90 typedef struct snd_card_saa7134_pcm
{
91 struct saa7134_dev
*dev
;
95 struct snd_pcm_substream
*substream
;
96 } snd_card_saa7134_pcm_t
;
98 static struct snd_card
*snd_saa7134_cards
[SNDRV_CARDS
];
102 * saa7134 DMA audio stop
104 * Called when the capture device is released or the buffer overflows
106 * - Copied verbatim from saa7134-oss's dsp_dma_stop.
110 static void saa7134_dma_stop(struct saa7134_dev
*dev
)
112 dev
->dmasound
.dma_blk
= -1;
113 dev
->dmasound
.dma_running
= 0;
114 saa7134_set_dmabits(dev
);
118 * saa7134 DMA audio start
120 * Called when preparing the capture device for use
122 * - Copied verbatim from saa7134-oss's dsp_dma_start.
126 static void saa7134_dma_start(struct saa7134_dev
*dev
)
128 dev
->dmasound
.dma_blk
= 0;
129 dev
->dmasound
.dma_running
= 1;
130 saa7134_set_dmabits(dev
);
134 * saa7134 audio DMA IRQ handler
136 * Called whenever we get an SAA7134_IRQ_REPORT_DONE_RA3 interrupt
137 * Handles shifting between the 2 buffers, manages the read counters,
138 * and notifies ALSA when periods elapse
140 * - Mostly copied from saa7134-oss's saa7134_irq_oss_done.
144 static void saa7134_irq_alsa_done(struct saa7134_dev
*dev
,
145 unsigned long status
)
147 int next_blk
, reg
= 0;
149 spin_lock(&dev
->slock
);
150 if (UNSET
== dev
->dmasound
.dma_blk
) {
151 dprintk("irq: recording stopped\n");
154 if (0 != (status
& 0x0f000000))
155 dprintk("irq: lost %ld\n", (status
>> 24) & 0x0f);
156 if (0 == (status
& 0x10000000)) {
158 if (0 == (dev
->dmasound
.dma_blk
& 0x01))
159 reg
= SAA7134_RS_BA1(6);
162 if (1 == (dev
->dmasound
.dma_blk
& 0x01))
163 reg
= SAA7134_RS_BA2(6);
166 dprintk("irq: field oops [%s]\n",
167 (status
& 0x10000000) ? "even" : "odd");
171 if (dev
->dmasound
.read_count
>= dev
->dmasound
.blksize
* (dev
->dmasound
.blocks
-2)) {
172 dprintk("irq: overrun [full=%d/%d] - Blocks in %d\n",dev
->dmasound
.read_count
,
173 dev
->dmasound
.bufsize
, dev
->dmasound
.blocks
);
174 spin_unlock(&dev
->slock
);
175 snd_pcm_stream_lock(dev
->dmasound
.substream
);
176 snd_pcm_stop(dev
->dmasound
.substream
,SNDRV_PCM_STATE_XRUN
);
177 snd_pcm_stream_unlock(dev
->dmasound
.substream
);
181 /* next block addr */
182 next_blk
= (dev
->dmasound
.dma_blk
+ 2) % dev
->dmasound
.blocks
;
183 saa_writel(reg
,next_blk
* dev
->dmasound
.blksize
);
185 dprintk("irq: ok, %s, next_blk=%d, addr=%x, blocks=%u, size=%u, read=%u\n",
186 (status
& 0x10000000) ? "even" : "odd ", next_blk
,
187 next_blk
* dev
->dmasound
.blksize
, dev
->dmasound
.blocks
, dev
->dmasound
.blksize
, dev
->dmasound
.read_count
);
189 /* update status & wake waiting readers */
190 dev
->dmasound
.dma_blk
= (dev
->dmasound
.dma_blk
+ 1) % dev
->dmasound
.blocks
;
191 dev
->dmasound
.read_count
+= dev
->dmasound
.blksize
;
193 dev
->dmasound
.recording_on
= reg
;
195 if (dev
->dmasound
.read_count
>= snd_pcm_lib_period_bytes(dev
->dmasound
.substream
)) {
196 spin_unlock(&dev
->slock
);
197 snd_pcm_period_elapsed(dev
->dmasound
.substream
);
198 spin_lock(&dev
->slock
);
202 spin_unlock(&dev
->slock
);
207 * IRQ request handler
209 * Runs along with saa7134's IRQ handler, discards anything that isn't
214 static irqreturn_t
saa7134_alsa_irq(int irq
, void *dev_id
)
216 struct saa7134_dmasound
*dmasound
= dev_id
;
217 struct saa7134_dev
*dev
= dmasound
->priv_data
;
219 unsigned long report
, status
;
220 int loop
, handled
= 0;
222 for (loop
= 0; loop
< 10; loop
++) {
223 report
= saa_readl(SAA7134_IRQ_REPORT
);
224 status
= saa_readl(SAA7134_IRQ_STATUS
);
226 if (report
& SAA7134_IRQ_REPORT_DONE_RA3
) {
228 saa_writel(SAA7134_IRQ_REPORT
,
229 SAA7134_IRQ_REPORT_DONE_RA3
);
230 saa7134_irq_alsa_done(dev
, status
);
237 dprintk("error! looping IRQ!");
241 return IRQ_RETVAL(handled
);
245 * ALSA capture trigger
247 * - One of the ALSA capture callbacks.
249 * Called whenever a capture is started or stopped. Must be defined,
250 * but there's nothing we want to do here
254 static int snd_card_saa7134_capture_trigger(struct snd_pcm_substream
* substream
,
257 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
258 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
259 struct saa7134_dev
*dev
=pcm
->dev
;
262 spin_lock(&dev
->slock
);
263 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
265 saa7134_dma_start(dev
);
266 } else if (cmd
== SNDRV_PCM_TRIGGER_STOP
) {
268 saa7134_dma_stop(dev
);
272 spin_unlock(&dev
->slock
);
278 * DMA buffer initialization
280 * Uses V4L functions to initialize the DMA. Shouldn't be necessary in
281 * ALSA, but I was unable to use ALSA's own DMA, and had to force the
284 * - Copied verbatim from saa7134-oss.
288 static int dsp_buffer_init(struct saa7134_dev
*dev
)
292 BUG_ON(!dev
->dmasound
.bufsize
);
294 videobuf_dma_init(&dev
->dmasound
.dma
);
295 err
= videobuf_dma_init_kernel(&dev
->dmasound
.dma
, PCI_DMA_FROMDEVICE
,
296 (dev
->dmasound
.bufsize
+ PAGE_SIZE
) >> PAGE_SHIFT
);
305 * Called after closing the device, during snd_card_saa7134_capture_close
309 static int dsp_buffer_free(struct saa7134_dev
*dev
)
311 BUG_ON(!dev
->dmasound
.blksize
);
313 videobuf_dma_free(&dev
->dmasound
.dma
);
315 dev
->dmasound
.blocks
= 0;
316 dev
->dmasound
.blksize
= 0;
317 dev
->dmasound
.bufsize
= 0;
323 * Setting the capture source and updating the ALSA controls
325 static int snd_saa7134_capsrc_set(struct snd_kcontrol
*kcontrol
,
326 int left
, int right
, bool force_notify
)
328 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
329 int change
= 0, addr
= kcontrol
->private_value
;
330 int active
, old_addr
;
333 struct saa7134_dev
*dev
;
337 spin_lock_irq(&chip
->mixer_lock
);
339 active
= left
!= 0 || right
!= 0;
340 old_addr
= chip
->capture_source_addr
;
342 /* The active capture source cannot be deactivated */
344 change
= old_addr
!= addr
||
345 chip
->capture_source
[0] != left
||
346 chip
->capture_source
[1] != right
;
348 chip
->capture_source
[0] = left
;
349 chip
->capture_source
[1] = right
;
350 chip
->capture_source_addr
= addr
;
351 dev
->dmasound
.input
= addr
;
353 spin_unlock_irq(&chip
->mixer_lock
);
356 switch (dev
->pci
->device
) {
358 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
360 case MIXER_ADDR_TVTUNER
:
361 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL
,
363 saa_andorb(SAA7134_SIF_SAMPLE_FREQ
,
366 case MIXER_ADDR_LINE1
:
367 case MIXER_ADDR_LINE2
:
368 analog_io
= (MIXER_ADDR_LINE1
== addr
) ?
370 rate
= (32000 == dev
->dmasound
.rate
) ?
372 saa_andorb(SAA7134_ANALOG_IO_SELECT
,
374 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL
,
376 saa_andorb(SAA7134_SIF_SAMPLE_FREQ
,
382 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
383 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
384 xbarin
= 0x03; /* adc */
387 case MIXER_ADDR_TVTUNER
:
388 xbarin
= 0; /* Demodulator */
389 anabar
= 2; /* DACs */
391 case MIXER_ADDR_LINE1
:
392 anabar
= 0; /* aux1, aux1 */
394 case MIXER_ADDR_LINE2
:
395 anabar
= 9; /* aux2, aux2 */
399 /* output xbar always main channel */
400 saa_dsp_writel(dev
, SAA7133_DIGITAL_OUTPUT_SEL1
,
404 /* We've got data, turn the input on */
405 saa_dsp_writel(dev
, SAA7133_DIGITAL_INPUT_XBAR1
,
407 saa_writel(SAA7133_ANALOG_IO_SELECT
, anabar
);
409 saa_dsp_writel(dev
, SAA7133_DIGITAL_INPUT_XBAR1
,
411 saa_writel(SAA7133_ANALOG_IO_SELECT
, 0);
419 snd_ctl_notify(chip
->card
,
420 SNDRV_CTL_EVENT_MASK_VALUE
,
421 &chip
->capture_ctl
[addr
]->id
);
423 if (old_addr
!= MIXER_ADDR_UNSELECTED
&& old_addr
!= addr
)
424 snd_ctl_notify(chip
->card
,
425 SNDRV_CTL_EVENT_MASK_VALUE
,
426 &chip
->capture_ctl
[old_addr
]->id
);
433 * ALSA PCM preparation
435 * - One of the ALSA capture callbacks.
437 * Called right after the capture device is opened, this function configures
438 * the buffer using the previously defined functions, allocates the memory,
439 * sets up the hardware registers, and then starts the DMA. When this function
440 * returns, the audio should be flowing.
444 static int snd_card_saa7134_capture_prepare(struct snd_pcm_substream
* substream
)
446 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
449 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
450 struct saa7134_dev
*dev
;
451 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
453 pcm
->dev
->dmasound
.substream
= substream
;
457 if (snd_pcm_format_width(runtime
->format
) == 8)
462 if (snd_pcm_format_signed(runtime
->format
))
467 if (snd_pcm_format_big_endian(runtime
->format
))
472 switch (dev
->pci
->device
) {
473 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
474 if (1 == runtime
->channels
)
476 if (2 == runtime
->channels
)
481 fmt
|= (MIXER_ADDR_TVTUNER
== dev
->dmasound
.input
) ? 0xc0 : 0x80;
482 saa_writeb(SAA7134_NUM_SAMPLES0
, ((dev
->dmasound
.blksize
- 1) & 0x0000ff));
483 saa_writeb(SAA7134_NUM_SAMPLES1
, ((dev
->dmasound
.blksize
- 1) & 0x00ff00) >> 8);
484 saa_writeb(SAA7134_NUM_SAMPLES2
, ((dev
->dmasound
.blksize
- 1) & 0xff0000) >> 16);
485 saa_writeb(SAA7134_AUDIO_FORMAT_CTRL
, fmt
);
488 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
489 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
490 if (1 == runtime
->channels
)
492 if (2 == runtime
->channels
)
496 saa_writel(SAA7133_NUM_SAMPLES
, dev
->dmasound
.blksize
-1);
497 saa_writel(SAA7133_AUDIO_CHANNEL
, 0x543210 | (fmt
<< 24));
501 dprintk("rec_start: afmt=%d ch=%d => fmt=0x%x swap=%c\n",
502 runtime
->format
, runtime
->channels
, fmt
,
504 /* dma: setup channel 6 (= AUDIO) */
505 control
= SAA7134_RS_CONTROL_BURST_16
|
506 SAA7134_RS_CONTROL_ME
|
507 (dev
->dmasound
.pt
.dma
>> 12);
509 control
|= SAA7134_RS_CONTROL_BSWAP
;
511 saa_writel(SAA7134_RS_BA1(6),0);
512 saa_writel(SAA7134_RS_BA2(6),dev
->dmasound
.blksize
);
513 saa_writel(SAA7134_RS_PITCH(6),0);
514 saa_writel(SAA7134_RS_CONTROL(6),control
);
516 dev
->dmasound
.rate
= runtime
->rate
;
518 /* Setup and update the card/ALSA controls */
519 snd_saa7134_capsrc_set(saa7134
->capture_ctl
[dev
->dmasound
.input
], 1, 1,
527 * ALSA pointer fetching
529 * - One of the ALSA capture callbacks.
531 * Called whenever a period elapses, it must return the current hardware
532 * position of the buffer.
533 * Also resets the read counter used to prevent overruns
537 static snd_pcm_uframes_t
538 snd_card_saa7134_capture_pointer(struct snd_pcm_substream
* substream
)
540 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
541 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
542 struct saa7134_dev
*dev
=pcm
->dev
;
544 if (dev
->dmasound
.read_count
) {
545 dev
->dmasound
.read_count
-= snd_pcm_lib_period_bytes(substream
);
546 dev
->dmasound
.read_offset
+= snd_pcm_lib_period_bytes(substream
);
547 if (dev
->dmasound
.read_offset
== dev
->dmasound
.bufsize
)
548 dev
->dmasound
.read_offset
= 0;
551 return bytes_to_frames(runtime
, dev
->dmasound
.read_offset
);
555 * ALSA hardware capabilities definition
557 * Report only 32kHz for ALSA:
559 * - SAA7133/35 uses DDEP (DemDec Easy Programming mode), which works in 32kHz
561 * - SAA7134 for TV mode uses DemDec mode (32kHz)
562 * - Radio works in 32kHz only
563 * - When recording 48kHz from Line1/Line2, switching of capture source to TV
565 * switching to 32kHz without any frequency translation
568 static struct snd_pcm_hardware snd_card_saa7134_capture
=
570 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
571 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
572 SNDRV_PCM_INFO_MMAP_VALID
),
573 .formats
= SNDRV_PCM_FMTBIT_S16_LE
| \
574 SNDRV_PCM_FMTBIT_S16_BE
| \
575 SNDRV_PCM_FMTBIT_S8
| \
576 SNDRV_PCM_FMTBIT_U8
| \
577 SNDRV_PCM_FMTBIT_U16_LE
| \
578 SNDRV_PCM_FMTBIT_U16_BE
,
579 .rates
= SNDRV_PCM_RATE_32000
,
584 .buffer_bytes_max
= (256*1024),
585 .period_bytes_min
= 64,
586 .period_bytes_max
= (256*1024),
591 static void snd_card_saa7134_runtime_free(struct snd_pcm_runtime
*runtime
)
593 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
600 * ALSA hardware params
602 * - One of the ALSA capture callbacks.
604 * Called on initialization, right before the PCM preparation
608 static int snd_card_saa7134_hw_params(struct snd_pcm_substream
* substream
,
609 struct snd_pcm_hw_params
* hw_params
)
611 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
612 struct saa7134_dev
*dev
;
613 unsigned int period_size
, periods
;
616 period_size
= params_period_bytes(hw_params
);
617 periods
= params_periods(hw_params
);
619 if (period_size
< 0x100 || period_size
> 0x10000)
623 if (period_size
* periods
> 1024 * 1024)
628 if (dev
->dmasound
.blocks
== periods
&&
629 dev
->dmasound
.blksize
== period_size
)
632 /* release the old buffer */
633 if (substream
->runtime
->dma_area
) {
634 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
635 videobuf_dma_unmap(&dev
->pci
->dev
, &dev
->dmasound
.dma
);
636 dsp_buffer_free(dev
);
637 substream
->runtime
->dma_area
= NULL
;
639 dev
->dmasound
.blocks
= periods
;
640 dev
->dmasound
.blksize
= period_size
;
641 dev
->dmasound
.bufsize
= period_size
* periods
;
643 err
= dsp_buffer_init(dev
);
645 dev
->dmasound
.blocks
= 0;
646 dev
->dmasound
.blksize
= 0;
647 dev
->dmasound
.bufsize
= 0;
651 if (0 != (err
= videobuf_dma_map(&dev
->pci
->dev
, &dev
->dmasound
.dma
))) {
652 dsp_buffer_free(dev
);
655 if (0 != (err
= saa7134_pgtable_alloc(dev
->pci
,&dev
->dmasound
.pt
))) {
656 videobuf_dma_unmap(&dev
->pci
->dev
, &dev
->dmasound
.dma
);
657 dsp_buffer_free(dev
);
660 if (0 != (err
= saa7134_pgtable_build(dev
->pci
,&dev
->dmasound
.pt
,
661 dev
->dmasound
.dma
.sglist
,
662 dev
->dmasound
.dma
.sglen
,
664 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
665 videobuf_dma_unmap(&dev
->pci
->dev
, &dev
->dmasound
.dma
);
666 dsp_buffer_free(dev
);
670 /* I should be able to use runtime->dma_addr in the control
671 byte, but it doesn't work. So I allocate the DMA using the
672 V4L functions, and force ALSA to use that as the DMA area */
674 substream
->runtime
->dma_area
= dev
->dmasound
.dma
.vaddr
;
675 substream
->runtime
->dma_bytes
= dev
->dmasound
.bufsize
;
676 substream
->runtime
->dma_addr
= 0;
683 * ALSA hardware release
685 * - One of the ALSA capture callbacks.
687 * Called after closing the device, but before snd_card_saa7134_capture_close
688 * It stops the DMA audio and releases the buffers.
692 static int snd_card_saa7134_hw_free(struct snd_pcm_substream
* substream
)
694 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
695 struct saa7134_dev
*dev
;
699 if (substream
->runtime
->dma_area
) {
700 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
701 videobuf_dma_unmap(&dev
->pci
->dev
, &dev
->dmasound
.dma
);
702 dsp_buffer_free(dev
);
703 substream
->runtime
->dma_area
= NULL
;
710 * ALSA capture finish
712 * - One of the ALSA capture callbacks.
714 * Called after closing the device.
718 static int snd_card_saa7134_capture_close(struct snd_pcm_substream
* substream
)
720 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
721 struct saa7134_dev
*dev
= saa7134
->dev
;
723 if (saa7134
->mute_was_on
) {
725 saa7134_tvaudio_setmute(dev
);
733 * - One of the ALSA capture callbacks.
735 * Called when opening the device. It creates and populates the PCM
740 static int snd_card_saa7134_capture_open(struct snd_pcm_substream
* substream
)
742 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
743 snd_card_saa7134_pcm_t
*pcm
;
744 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
745 struct saa7134_dev
*dev
;
749 printk(KERN_ERR
"BUG: saa7134 can't find device struct."
750 " Can't proceed with open\n");
754 mutex_lock(&dev
->dmasound
.lock
);
756 dev
->dmasound
.read_count
= 0;
757 dev
->dmasound
.read_offset
= 0;
759 amux
= dev
->input
->amux
;
760 if ((amux
< 1) || (amux
> 3))
762 dev
->dmasound
.input
= amux
- 1;
764 mutex_unlock(&dev
->dmasound
.lock
);
766 pcm
= kzalloc(sizeof(*pcm
), GFP_KERNEL
);
770 pcm
->dev
=saa7134
->dev
;
772 spin_lock_init(&pcm
->lock
);
774 pcm
->substream
= substream
;
775 runtime
->private_data
= pcm
;
776 runtime
->private_free
= snd_card_saa7134_runtime_free
;
777 runtime
->hw
= snd_card_saa7134_capture
;
779 if (dev
->ctl_mute
!= 0) {
780 saa7134
->mute_was_on
= 1;
782 saa7134_tvaudio_setmute(dev
);
785 err
= snd_pcm_hw_constraint_integer(runtime
,
786 SNDRV_PCM_HW_PARAM_PERIODS
);
790 err
= snd_pcm_hw_constraint_step(runtime
, 0,
791 SNDRV_PCM_HW_PARAM_PERIODS
, 2);
799 * page callback (needed for mmap)
802 static struct page
*snd_card_saa7134_page(struct snd_pcm_substream
*substream
,
803 unsigned long offset
)
805 void *pageptr
= substream
->runtime
->dma_area
+ offset
;
806 return vmalloc_to_page(pageptr
);
810 * ALSA capture callbacks definition
813 static struct snd_pcm_ops snd_card_saa7134_capture_ops
= {
814 .open
= snd_card_saa7134_capture_open
,
815 .close
= snd_card_saa7134_capture_close
,
816 .ioctl
= snd_pcm_lib_ioctl
,
817 .hw_params
= snd_card_saa7134_hw_params
,
818 .hw_free
= snd_card_saa7134_hw_free
,
819 .prepare
= snd_card_saa7134_capture_prepare
,
820 .trigger
= snd_card_saa7134_capture_trigger
,
821 .pointer
= snd_card_saa7134_capture_pointer
,
822 .page
= snd_card_saa7134_page
,
828 * Called when initializing the board. Sets up the name and hooks up
833 static int snd_card_saa7134_pcm(snd_card_saa7134_t
*saa7134
, int device
)
838 if ((err
= snd_pcm_new(saa7134
->card
, "SAA7134 PCM", device
, 0, 1, &pcm
)) < 0)
840 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_card_saa7134_capture_ops
);
841 pcm
->private_data
= saa7134
;
843 strcpy(pcm
->name
, "SAA7134 PCM");
847 #define SAA713x_VOLUME(xname, xindex, addr) \
848 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
849 .info = snd_saa7134_volume_info, \
850 .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \
851 .private_value = addr }
853 static int snd_saa7134_volume_info(struct snd_kcontrol
* kcontrol
,
854 struct snd_ctl_elem_info
* uinfo
)
856 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
858 uinfo
->value
.integer
.min
= 0;
859 uinfo
->value
.integer
.max
= 20;
863 static int snd_saa7134_volume_get(struct snd_kcontrol
* kcontrol
,
864 struct snd_ctl_elem_value
* ucontrol
)
866 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
867 int addr
= kcontrol
->private_value
;
869 ucontrol
->value
.integer
.value
[0] = chip
->mixer_volume
[addr
][0];
870 ucontrol
->value
.integer
.value
[1] = chip
->mixer_volume
[addr
][1];
874 static int snd_saa7134_volume_put(struct snd_kcontrol
* kcontrol
,
875 struct snd_ctl_elem_value
* ucontrol
)
877 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
878 struct saa7134_dev
*dev
= chip
->dev
;
880 int change
, addr
= kcontrol
->private_value
;
883 left
= ucontrol
->value
.integer
.value
[0];
888 right
= ucontrol
->value
.integer
.value
[1];
893 spin_lock_irq(&chip
->mixer_lock
);
895 if (chip
->mixer_volume
[addr
][0] != left
) {
899 if (chip
->mixer_volume
[addr
][1] != right
) {
904 switch (dev
->pci
->device
) {
905 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
907 case MIXER_ADDR_TVTUNER
:
910 case MIXER_ADDR_LINE1
:
911 saa_andorb(SAA7134_ANALOG_IO_SELECT
, 0x10,
912 (left
> 10) ? 0x00 : 0x10);
914 case MIXER_ADDR_LINE2
:
915 saa_andorb(SAA7134_ANALOG_IO_SELECT
, 0x20,
916 (left
> 10) ? 0x00 : 0x20);
920 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
921 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
923 case MIXER_ADDR_TVTUNER
:
926 case MIXER_ADDR_LINE1
:
927 saa_andorb(0x0594, 0x10,
928 (left
> 10) ? 0x00 : 0x10);
930 case MIXER_ADDR_LINE2
:
931 saa_andorb(0x0594, 0x20,
932 (left
> 10) ? 0x00 : 0x20);
937 chip
->mixer_volume
[addr
][0] = left
;
938 chip
->mixer_volume
[addr
][1] = right
;
940 spin_unlock_irq(&chip
->mixer_lock
);
944 #define SAA713x_CAPSRC(xname, xindex, addr) \
945 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
946 .info = snd_saa7134_capsrc_info, \
947 .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \
948 .private_value = addr }
950 static int snd_saa7134_capsrc_info(struct snd_kcontrol
* kcontrol
,
951 struct snd_ctl_elem_info
* uinfo
)
953 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
955 uinfo
->value
.integer
.min
= 0;
956 uinfo
->value
.integer
.max
= 1;
960 static int snd_saa7134_capsrc_get(struct snd_kcontrol
* kcontrol
,
961 struct snd_ctl_elem_value
* ucontrol
)
963 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
964 int addr
= kcontrol
->private_value
;
966 spin_lock_irq(&chip
->mixer_lock
);
967 if (chip
->capture_source_addr
== addr
) {
968 ucontrol
->value
.integer
.value
[0] = chip
->capture_source
[0];
969 ucontrol
->value
.integer
.value
[1] = chip
->capture_source
[1];
971 ucontrol
->value
.integer
.value
[0] = 0;
972 ucontrol
->value
.integer
.value
[1] = 0;
974 spin_unlock_irq(&chip
->mixer_lock
);
979 static int snd_saa7134_capsrc_put(struct snd_kcontrol
* kcontrol
,
980 struct snd_ctl_elem_value
* ucontrol
)
983 left
= ucontrol
->value
.integer
.value
[0] & 1;
984 right
= ucontrol
->value
.integer
.value
[1] & 1;
986 return snd_saa7134_capsrc_set(kcontrol
, left
, right
, false);
989 static struct snd_kcontrol_new snd_saa7134_volume_controls
[] = {
990 SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER
),
991 SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1
),
992 SAA713x_VOLUME("Line Volume", 2, MIXER_ADDR_LINE2
),
995 static struct snd_kcontrol_new snd_saa7134_capture_controls
[] = {
996 SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER
),
997 SAA713x_CAPSRC("Line Capture Switch", 1, MIXER_ADDR_LINE1
),
998 SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2
),
1004 * Called when initializing the board. Sets up the name and hooks up
1009 static int snd_card_saa7134_new_mixer(snd_card_saa7134_t
* chip
)
1011 struct snd_card
*card
= chip
->card
;
1012 struct snd_kcontrol
*kcontrol
;
1016 strcpy(card
->mixername
, "SAA7134 Mixer");
1018 for (idx
= 0; idx
< ARRAY_SIZE(snd_saa7134_volume_controls
); idx
++) {
1019 kcontrol
= snd_ctl_new1(&snd_saa7134_volume_controls
[idx
],
1021 err
= snd_ctl_add(card
, kcontrol
);
1026 for (idx
= 0; idx
< ARRAY_SIZE(snd_saa7134_capture_controls
); idx
++) {
1027 kcontrol
= snd_ctl_new1(&snd_saa7134_capture_controls
[idx
],
1029 addr
= snd_saa7134_capture_controls
[idx
].private_value
;
1030 chip
->capture_ctl
[addr
] = kcontrol
;
1031 err
= snd_ctl_add(card
, kcontrol
);
1036 chip
->capture_source_addr
= MIXER_ADDR_UNSELECTED
;
1040 static void snd_saa7134_free(struct snd_card
* card
)
1042 snd_card_saa7134_t
*chip
= card
->private_data
;
1044 if (chip
->dev
->dmasound
.priv_data
== NULL
)
1048 free_irq(chip
->irq
, &chip
->dev
->dmasound
);
1050 chip
->dev
->dmasound
.priv_data
= NULL
;
1055 * ALSA initialization
1057 * Called by the init routine, once for each saa7134 device present,
1058 * it creates the basic structures and registers the ALSA devices
1062 static int alsa_card_saa7134_create(struct saa7134_dev
*dev
, int devnum
)
1065 struct snd_card
*card
;
1066 snd_card_saa7134_t
*chip
;
1070 if (devnum
>= SNDRV_CARDS
)
1072 if (!enable
[devnum
])
1075 err
= snd_card_create(index
[devnum
], id
[devnum
], THIS_MODULE
,
1076 sizeof(snd_card_saa7134_t
), &card
);
1080 strcpy(card
->driver
, "SAA7134");
1082 /* Card "creation" */
1084 card
->private_free
= snd_saa7134_free
;
1085 chip
= card
->private_data
;
1087 spin_lock_init(&chip
->lock
);
1088 spin_lock_init(&chip
->mixer_lock
);
1094 chip
->pci
= dev
->pci
;
1095 chip
->iobase
= pci_resource_start(dev
->pci
, 0);
1098 err
= request_irq(dev
->pci
->irq
, saa7134_alsa_irq
,
1099 IRQF_SHARED
, dev
->name
,
1100 (void*) &dev
->dmasound
);
1103 printk(KERN_ERR
"%s: can't get IRQ %d for ALSA\n",
1104 dev
->name
, dev
->pci
->irq
);
1108 chip
->irq
= dev
->pci
->irq
;
1110 mutex_init(&dev
->dmasound
.lock
);
1112 if ((err
= snd_card_saa7134_new_mixer(chip
)) < 0)
1115 if ((err
= snd_card_saa7134_pcm(chip
, 0)) < 0)
1118 snd_card_set_dev(card
, &chip
->pci
->dev
);
1120 /* End of "creation" */
1122 strcpy(card
->shortname
, "SAA7134");
1123 sprintf(card
->longname
, "%s at 0x%lx irq %d",
1124 chip
->dev
->name
, chip
->iobase
, chip
->irq
);
1126 printk(KERN_INFO
"%s/alsa: %s registered as card %d\n",dev
->name
,card
->longname
,index
[devnum
]);
1128 if ((err
= snd_card_register(card
)) == 0) {
1129 snd_saa7134_cards
[devnum
] = card
;
1134 snd_card_free(card
);
1139 static int alsa_device_init(struct saa7134_dev
*dev
)
1141 dev
->dmasound
.priv_data
= dev
;
1142 alsa_card_saa7134_create(dev
,dev
->nr
);
1146 static int alsa_device_exit(struct saa7134_dev
*dev
)
1149 snd_card_free(snd_saa7134_cards
[dev
->nr
]);
1150 snd_saa7134_cards
[dev
->nr
] = NULL
;
1155 * Module initializer
1157 * Loops through present saa7134 cards, and assigns an ALSA device
1162 static int saa7134_alsa_init(void)
1164 struct saa7134_dev
*dev
= NULL
;
1165 struct list_head
*list
;
1167 saa7134_dmasound_init
= alsa_device_init
;
1168 saa7134_dmasound_exit
= alsa_device_exit
;
1170 printk(KERN_INFO
"saa7134 ALSA driver for DMA sound loaded\n");
1172 list_for_each(list
,&saa7134_devlist
) {
1173 dev
= list_entry(list
, struct saa7134_dev
, devlist
);
1174 if (dev
->pci
->device
== PCI_DEVICE_ID_PHILIPS_SAA7130
)
1175 printk(KERN_INFO
"%s/alsa: %s doesn't support digital audio\n",
1176 dev
->name
, saa7134_boards
[dev
->board
].name
);
1178 alsa_device_init(dev
);
1182 printk(KERN_INFO
"saa7134 ALSA: no saa7134 cards found\n");
1192 static void saa7134_alsa_exit(void)
1196 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1197 snd_card_free(snd_saa7134_cards
[idx
]);
1200 saa7134_dmasound_init
= NULL
;
1201 saa7134_dmasound_exit
= NULL
;
1202 printk(KERN_INFO
"saa7134 ALSA driver for DMA sound unloaded\n");
1207 /* We initialize this late, to make sure the sound system is up and running */
1208 late_initcall(saa7134_alsa_init
);
1209 module_exit(saa7134_alsa_exit
);
1210 MODULE_LICENSE("GPL");
1211 MODULE_AUTHOR("Ricardo Cerqueira");