1 // SPDX-License-Identifier: GPL-2.0-only
3 * SAA713x ALSA support for V4L
7 #include "saa7134-reg.h"
9 #include <linux/init.h>
10 #include <linux/slab.h>
11 #include <linux/time.h>
12 #include <linux/wait.h>
13 #include <linux/module.h>
14 #include <sound/core.h>
15 #include <sound/control.h>
16 #include <sound/pcm.h>
17 #include <sound/pcm_params.h>
18 #include <sound/initval.h>
19 #include <linux/interrupt.h>
20 #include <linux/vmalloc.h>
23 * Configuration macros
27 #define MIXER_ADDR_UNSELECTED -1
28 #define MIXER_ADDR_TVTUNER 0
29 #define MIXER_ADDR_LINE1 1
30 #define MIXER_ADDR_LINE2 2
31 #define MIXER_ADDR_LAST 2
34 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
35 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
36 static int enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 1};
38 module_param_array(index
, int, NULL
, 0444);
39 module_param_array(enable
, int, NULL
, 0444);
40 MODULE_PARM_DESC(index
, "Index value for SAA7134 capture interface(s).");
41 MODULE_PARM_DESC(enable
, "Enable (or not) the SAA7134 capture interface(s).");
47 typedef struct snd_card_saa7134
{
48 struct snd_card
*card
;
49 spinlock_t mixer_lock
;
50 int mixer_volume
[MIXER_ADDR_LAST
+1][2];
51 int capture_source_addr
;
52 int capture_source
[2];
53 struct snd_kcontrol
*capture_ctl
[MIXER_ADDR_LAST
+1];
55 struct saa7134_dev
*dev
;
69 typedef struct snd_card_saa7134_pcm
{
70 struct saa7134_dev
*dev
;
74 struct snd_pcm_substream
*substream
;
75 } snd_card_saa7134_pcm_t
;
77 static struct snd_card
*snd_saa7134_cards
[SNDRV_CARDS
];
81 * saa7134 DMA audio stop
83 * Called when the capture device is released or the buffer overflows
85 * - Copied verbatim from saa7134-oss's dsp_dma_stop.
89 static void saa7134_dma_stop(struct saa7134_dev
*dev
)
91 dev
->dmasound
.dma_blk
= -1;
92 dev
->dmasound
.dma_running
= 0;
93 saa7134_set_dmabits(dev
);
97 * saa7134 DMA audio start
99 * Called when preparing the capture device for use
101 * - Copied verbatim from saa7134-oss's dsp_dma_start.
105 static void saa7134_dma_start(struct saa7134_dev
*dev
)
107 dev
->dmasound
.dma_blk
= 0;
108 dev
->dmasound
.dma_running
= 1;
109 saa7134_set_dmabits(dev
);
113 * saa7134 audio DMA IRQ handler
115 * Called whenever we get an SAA7134_IRQ_REPORT_DONE_RA3 interrupt
116 * Handles shifting between the 2 buffers, manages the read counters,
117 * and notifies ALSA when periods elapse
119 * - Mostly copied from saa7134-oss's saa7134_irq_oss_done.
123 static void saa7134_irq_alsa_done(struct saa7134_dev
*dev
,
124 unsigned long status
)
126 int next_blk
, reg
= 0;
128 spin_lock(&dev
->slock
);
129 if (UNSET
== dev
->dmasound
.dma_blk
) {
130 pr_debug("irq: recording stopped\n");
133 if (0 != (status
& 0x0f000000))
134 pr_debug("irq: lost %ld\n", (status
>> 24) & 0x0f);
135 if (0 == (status
& 0x10000000)) {
137 if (0 == (dev
->dmasound
.dma_blk
& 0x01))
138 reg
= SAA7134_RS_BA1(6);
141 if (1 == (dev
->dmasound
.dma_blk
& 0x01))
142 reg
= SAA7134_RS_BA2(6);
145 pr_debug("irq: field oops [%s]\n",
146 (status
& 0x10000000) ? "even" : "odd");
150 if (dev
->dmasound
.read_count
>= dev
->dmasound
.blksize
* (dev
->dmasound
.blocks
-2)) {
151 pr_debug("irq: overrun [full=%d/%d] - Blocks in %d\n",
152 dev
->dmasound
.read_count
,
153 dev
->dmasound
.bufsize
, dev
->dmasound
.blocks
);
154 spin_unlock(&dev
->slock
);
155 snd_pcm_stop_xrun(dev
->dmasound
.substream
);
159 /* next block addr */
160 next_blk
= (dev
->dmasound
.dma_blk
+ 2) % dev
->dmasound
.blocks
;
161 saa_writel(reg
,next_blk
* dev
->dmasound
.blksize
);
162 pr_debug("irq: ok, %s, next_blk=%d, addr=%x, blocks=%u, size=%u, read=%u\n",
163 (status
& 0x10000000) ? "even" : "odd ", next_blk
,
164 next_blk
* dev
->dmasound
.blksize
, dev
->dmasound
.blocks
,
165 dev
->dmasound
.blksize
, dev
->dmasound
.read_count
);
167 /* update status & wake waiting readers */
168 dev
->dmasound
.dma_blk
= (dev
->dmasound
.dma_blk
+ 1) % dev
->dmasound
.blocks
;
169 dev
->dmasound
.read_count
+= dev
->dmasound
.blksize
;
171 dev
->dmasound
.recording_on
= reg
;
173 if (dev
->dmasound
.read_count
>= snd_pcm_lib_period_bytes(dev
->dmasound
.substream
)) {
174 spin_unlock(&dev
->slock
);
175 snd_pcm_period_elapsed(dev
->dmasound
.substream
);
176 spin_lock(&dev
->slock
);
180 spin_unlock(&dev
->slock
);
185 * IRQ request handler
187 * Runs along with saa7134's IRQ handler, discards anything that isn't
192 static irqreturn_t
saa7134_alsa_irq(int irq
, void *dev_id
)
194 struct saa7134_dmasound
*dmasound
= dev_id
;
195 struct saa7134_dev
*dev
= dmasound
->priv_data
;
197 unsigned long report
, status
;
198 int loop
, handled
= 0;
200 for (loop
= 0; loop
< 10; loop
++) {
201 report
= saa_readl(SAA7134_IRQ_REPORT
);
202 status
= saa_readl(SAA7134_IRQ_STATUS
);
204 if (report
& SAA7134_IRQ_REPORT_DONE_RA3
) {
206 saa_writel(SAA7134_IRQ_REPORT
,
207 SAA7134_IRQ_REPORT_DONE_RA3
);
208 saa7134_irq_alsa_done(dev
, status
);
215 pr_debug("error! looping IRQ!");
219 return IRQ_RETVAL(handled
);
223 * ALSA capture trigger
225 * - One of the ALSA capture callbacks.
227 * Called whenever a capture is started or stopped. Must be defined,
228 * but there's nothing we want to do here
232 static int snd_card_saa7134_capture_trigger(struct snd_pcm_substream
* substream
,
235 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
236 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
237 struct saa7134_dev
*dev
=pcm
->dev
;
240 spin_lock(&dev
->slock
);
241 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
243 saa7134_dma_start(dev
);
244 } else if (cmd
== SNDRV_PCM_TRIGGER_STOP
) {
246 saa7134_dma_stop(dev
);
250 spin_unlock(&dev
->slock
);
255 static int saa7134_alsa_dma_init(struct saa7134_dev
*dev
, int nr_pages
)
257 struct saa7134_dmasound
*dma
= &dev
->dmasound
;
261 dma
->vaddr
= vmalloc_32(nr_pages
<< PAGE_SHIFT
);
262 if (NULL
== dma
->vaddr
) {
263 pr_debug("vmalloc_32(%d pages) failed\n", nr_pages
);
267 pr_debug("vmalloc is at addr %p, size=%d\n",
268 dma
->vaddr
, nr_pages
<< PAGE_SHIFT
);
270 memset(dma
->vaddr
, 0, nr_pages
<< PAGE_SHIFT
);
271 dma
->nr_pages
= nr_pages
;
273 dma
->sglist
= vzalloc(array_size(sizeof(*dma
->sglist
), dma
->nr_pages
));
274 if (NULL
== dma
->sglist
)
277 sg_init_table(dma
->sglist
, dma
->nr_pages
);
278 for (i
= 0; i
< dma
->nr_pages
; i
++) {
279 pg
= vmalloc_to_page(dma
->vaddr
+ i
* PAGE_SIZE
);
281 goto vmalloc_to_page_err
;
282 sg_set_page(&dma
->sglist
[i
], pg
, PAGE_SIZE
, 0);
295 static int saa7134_alsa_dma_map(struct saa7134_dev
*dev
)
297 struct saa7134_dmasound
*dma
= &dev
->dmasound
;
299 dma
->sglen
= dma_map_sg(&dev
->pci
->dev
, dma
->sglist
,
300 dma
->nr_pages
, PCI_DMA_FROMDEVICE
);
302 if (0 == dma
->sglen
) {
303 pr_warn("%s: saa7134_alsa_map_sg failed\n", __func__
);
309 static int saa7134_alsa_dma_unmap(struct saa7134_dev
*dev
)
311 struct saa7134_dmasound
*dma
= &dev
->dmasound
;
316 dma_unmap_sg(&dev
->pci
->dev
, dma
->sglist
, dma
->sglen
, PCI_DMA_FROMDEVICE
);
321 static int saa7134_alsa_dma_free(struct saa7134_dmasound
*dma
)
331 * DMA buffer initialization
333 * Uses V4L functions to initialize the DMA. Shouldn't be necessary in
334 * ALSA, but I was unable to use ALSA's own DMA, and had to force the
337 * - Copied verbatim from saa7134-oss.
341 static int dsp_buffer_init(struct saa7134_dev
*dev
)
345 BUG_ON(!dev
->dmasound
.bufsize
);
347 err
= saa7134_alsa_dma_init(dev
,
348 (dev
->dmasound
.bufsize
+ PAGE_SIZE
) >> PAGE_SHIFT
);
357 * Called after closing the device, during snd_card_saa7134_capture_close
361 static int dsp_buffer_free(struct saa7134_dev
*dev
)
363 BUG_ON(!dev
->dmasound
.blksize
);
365 saa7134_alsa_dma_free(&dev
->dmasound
);
367 dev
->dmasound
.blocks
= 0;
368 dev
->dmasound
.blksize
= 0;
369 dev
->dmasound
.bufsize
= 0;
375 * Setting the capture source and updating the ALSA controls
377 static int snd_saa7134_capsrc_set(struct snd_kcontrol
*kcontrol
,
378 int left
, int right
, bool force_notify
)
380 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
381 int change
= 0, addr
= kcontrol
->private_value
;
382 int active
, old_addr
;
385 struct saa7134_dev
*dev
;
389 spin_lock_irq(&chip
->mixer_lock
);
391 active
= left
!= 0 || right
!= 0;
392 old_addr
= chip
->capture_source_addr
;
394 /* The active capture source cannot be deactivated */
396 change
= old_addr
!= addr
||
397 chip
->capture_source
[0] != left
||
398 chip
->capture_source
[1] != right
;
400 chip
->capture_source
[0] = left
;
401 chip
->capture_source
[1] = right
;
402 chip
->capture_source_addr
= addr
;
403 dev
->dmasound
.input
= addr
;
405 spin_unlock_irq(&chip
->mixer_lock
);
408 switch (dev
->pci
->device
) {
410 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
412 case MIXER_ADDR_TVTUNER
:
413 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL
,
415 saa_andorb(SAA7134_SIF_SAMPLE_FREQ
,
418 case MIXER_ADDR_LINE1
:
419 case MIXER_ADDR_LINE2
:
420 analog_io
= (MIXER_ADDR_LINE1
== addr
) ?
422 rate
= (32000 == dev
->dmasound
.rate
) ?
424 saa_andorb(SAA7134_ANALOG_IO_SELECT
,
426 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL
,
428 saa_andorb(SAA7134_SIF_SAMPLE_FREQ
,
434 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
435 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
436 xbarin
= 0x03; /* adc */
439 case MIXER_ADDR_TVTUNER
:
440 xbarin
= 0; /* Demodulator */
441 anabar
= 2; /* DACs */
443 case MIXER_ADDR_LINE1
:
444 anabar
= 0; /* aux1, aux1 */
446 case MIXER_ADDR_LINE2
:
447 anabar
= 9; /* aux2, aux2 */
451 /* output xbar always main channel */
452 saa_dsp_writel(dev
, SAA7133_DIGITAL_OUTPUT_SEL1
,
456 /* We've got data, turn the input on */
457 saa_dsp_writel(dev
, SAA7133_DIGITAL_INPUT_XBAR1
,
459 saa_writel(SAA7133_ANALOG_IO_SELECT
, anabar
);
461 saa_dsp_writel(dev
, SAA7133_DIGITAL_INPUT_XBAR1
,
463 saa_writel(SAA7133_ANALOG_IO_SELECT
, 0);
471 snd_ctl_notify(chip
->card
,
472 SNDRV_CTL_EVENT_MASK_VALUE
,
473 &chip
->capture_ctl
[addr
]->id
);
475 if (old_addr
!= MIXER_ADDR_UNSELECTED
&& old_addr
!= addr
)
476 snd_ctl_notify(chip
->card
,
477 SNDRV_CTL_EVENT_MASK_VALUE
,
478 &chip
->capture_ctl
[old_addr
]->id
);
485 * ALSA PCM preparation
487 * - One of the ALSA capture callbacks.
489 * Called right after the capture device is opened, this function configures
490 * the buffer using the previously defined functions, allocates the memory,
491 * sets up the hardware registers, and then starts the DMA. When this function
492 * returns, the audio should be flowing.
496 static int snd_card_saa7134_capture_prepare(struct snd_pcm_substream
* substream
)
498 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
501 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
502 struct saa7134_dev
*dev
;
503 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
505 pcm
->dev
->dmasound
.substream
= substream
;
509 if (snd_pcm_format_width(runtime
->format
) == 8)
514 if (snd_pcm_format_signed(runtime
->format
))
519 if (snd_pcm_format_big_endian(runtime
->format
))
524 switch (dev
->pci
->device
) {
525 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
526 if (1 == runtime
->channels
)
528 if (2 == runtime
->channels
)
533 fmt
|= (MIXER_ADDR_TVTUNER
== dev
->dmasound
.input
) ? 0xc0 : 0x80;
534 saa_writeb(SAA7134_NUM_SAMPLES0
, ((dev
->dmasound
.blksize
- 1) & 0x0000ff));
535 saa_writeb(SAA7134_NUM_SAMPLES1
, ((dev
->dmasound
.blksize
- 1) & 0x00ff00) >> 8);
536 saa_writeb(SAA7134_NUM_SAMPLES2
, ((dev
->dmasound
.blksize
- 1) & 0xff0000) >> 16);
537 saa_writeb(SAA7134_AUDIO_FORMAT_CTRL
, fmt
);
540 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
541 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
542 if (1 == runtime
->channels
)
544 if (2 == runtime
->channels
)
548 saa_writel(SAA7133_NUM_SAMPLES
, dev
->dmasound
.blksize
-1);
549 saa_writel(SAA7133_AUDIO_CHANNEL
, 0x543210 | (fmt
<< 24));
553 pr_debug("rec_start: afmt=%d ch=%d => fmt=0x%x swap=%c\n",
554 runtime
->format
, runtime
->channels
, fmt
,
556 /* dma: setup channel 6 (= AUDIO) */
557 control
= SAA7134_RS_CONTROL_BURST_16
|
558 SAA7134_RS_CONTROL_ME
|
559 (dev
->dmasound
.pt
.dma
>> 12);
561 control
|= SAA7134_RS_CONTROL_BSWAP
;
563 saa_writel(SAA7134_RS_BA1(6),0);
564 saa_writel(SAA7134_RS_BA2(6),dev
->dmasound
.blksize
);
565 saa_writel(SAA7134_RS_PITCH(6),0);
566 saa_writel(SAA7134_RS_CONTROL(6),control
);
568 dev
->dmasound
.rate
= runtime
->rate
;
570 /* Setup and update the card/ALSA controls */
571 snd_saa7134_capsrc_set(saa7134
->capture_ctl
[dev
->dmasound
.input
], 1, 1,
579 * ALSA pointer fetching
581 * - One of the ALSA capture callbacks.
583 * Called whenever a period elapses, it must return the current hardware
584 * position of the buffer.
585 * Also resets the read counter used to prevent overruns
589 static snd_pcm_uframes_t
590 snd_card_saa7134_capture_pointer(struct snd_pcm_substream
* substream
)
592 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
593 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
594 struct saa7134_dev
*dev
=pcm
->dev
;
596 if (dev
->dmasound
.read_count
) {
597 dev
->dmasound
.read_count
-= snd_pcm_lib_period_bytes(substream
);
598 dev
->dmasound
.read_offset
+= snd_pcm_lib_period_bytes(substream
);
599 if (dev
->dmasound
.read_offset
== dev
->dmasound
.bufsize
)
600 dev
->dmasound
.read_offset
= 0;
603 return bytes_to_frames(runtime
, dev
->dmasound
.read_offset
);
607 * ALSA hardware capabilities definition
609 * Report only 32kHz for ALSA:
611 * - SAA7133/35 uses DDEP (DemDec Easy Programming mode), which works in 32kHz
613 * - SAA7134 for TV mode uses DemDec mode (32kHz)
614 * - Radio works in 32kHz only
615 * - When recording 48kHz from Line1/Line2, switching of capture source to TV
617 * switching to 32kHz without any frequency translation
620 static const struct snd_pcm_hardware snd_card_saa7134_capture
=
622 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
623 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
624 SNDRV_PCM_INFO_MMAP_VALID
),
625 .formats
= SNDRV_PCM_FMTBIT_S16_LE
| \
626 SNDRV_PCM_FMTBIT_S16_BE
| \
627 SNDRV_PCM_FMTBIT_S8
| \
628 SNDRV_PCM_FMTBIT_U8
| \
629 SNDRV_PCM_FMTBIT_U16_LE
| \
630 SNDRV_PCM_FMTBIT_U16_BE
,
631 .rates
= SNDRV_PCM_RATE_32000
,
636 .buffer_bytes_max
= (256*1024),
637 .period_bytes_min
= 64,
638 .period_bytes_max
= (256*1024),
643 static void snd_card_saa7134_runtime_free(struct snd_pcm_runtime
*runtime
)
645 snd_card_saa7134_pcm_t
*pcm
= runtime
->private_data
;
652 * ALSA hardware params
654 * - One of the ALSA capture callbacks.
656 * Called on initialization, right before the PCM preparation
660 static int snd_card_saa7134_hw_params(struct snd_pcm_substream
* substream
,
661 struct snd_pcm_hw_params
* hw_params
)
663 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
664 struct saa7134_dev
*dev
;
665 unsigned int period_size
, periods
;
668 period_size
= params_period_bytes(hw_params
);
669 periods
= params_periods(hw_params
);
671 if (period_size
< 0x100 || period_size
> 0x10000)
675 if (period_size
* periods
> 1024 * 1024)
680 if (dev
->dmasound
.blocks
== periods
&&
681 dev
->dmasound
.blksize
== period_size
)
684 /* release the old buffer */
685 if (substream
->runtime
->dma_area
) {
686 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
687 saa7134_alsa_dma_unmap(dev
);
688 dsp_buffer_free(dev
);
689 substream
->runtime
->dma_area
= NULL
;
691 dev
->dmasound
.blocks
= periods
;
692 dev
->dmasound
.blksize
= period_size
;
693 dev
->dmasound
.bufsize
= period_size
* periods
;
695 err
= dsp_buffer_init(dev
);
697 dev
->dmasound
.blocks
= 0;
698 dev
->dmasound
.blksize
= 0;
699 dev
->dmasound
.bufsize
= 0;
703 err
= saa7134_alsa_dma_map(dev
);
705 dsp_buffer_free(dev
);
708 err
= saa7134_pgtable_alloc(dev
->pci
, &dev
->dmasound
.pt
);
710 saa7134_alsa_dma_unmap(dev
);
711 dsp_buffer_free(dev
);
714 err
= saa7134_pgtable_build(dev
->pci
, &dev
->dmasound
.pt
,
715 dev
->dmasound
.sglist
, dev
->dmasound
.sglen
, 0);
717 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
718 saa7134_alsa_dma_unmap(dev
);
719 dsp_buffer_free(dev
);
723 /* I should be able to use runtime->dma_addr in the control
724 byte, but it doesn't work. So I allocate the DMA using the
725 V4L functions, and force ALSA to use that as the DMA area */
727 substream
->runtime
->dma_area
= dev
->dmasound
.vaddr
;
728 substream
->runtime
->dma_bytes
= dev
->dmasound
.bufsize
;
729 substream
->runtime
->dma_addr
= 0;
736 * ALSA hardware release
738 * - One of the ALSA capture callbacks.
740 * Called after closing the device, but before snd_card_saa7134_capture_close
741 * It stops the DMA audio and releases the buffers.
745 static int snd_card_saa7134_hw_free(struct snd_pcm_substream
* substream
)
747 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
748 struct saa7134_dev
*dev
;
752 if (substream
->runtime
->dma_area
) {
753 saa7134_pgtable_free(dev
->pci
, &dev
->dmasound
.pt
);
754 saa7134_alsa_dma_unmap(dev
);
755 dsp_buffer_free(dev
);
756 substream
->runtime
->dma_area
= NULL
;
763 * ALSA capture finish
765 * - One of the ALSA capture callbacks.
767 * Called after closing the device.
771 static int snd_card_saa7134_capture_close(struct snd_pcm_substream
* substream
)
773 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
774 struct saa7134_dev
*dev
= saa7134
->dev
;
776 if (saa7134
->mute_was_on
) {
778 saa7134_tvaudio_setmute(dev
);
786 * - One of the ALSA capture callbacks.
788 * Called when opening the device. It creates and populates the PCM
793 static int snd_card_saa7134_capture_open(struct snd_pcm_substream
* substream
)
795 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
796 snd_card_saa7134_pcm_t
*pcm
;
797 snd_card_saa7134_t
*saa7134
= snd_pcm_substream_chip(substream
);
798 struct saa7134_dev
*dev
;
802 pr_err("BUG: saa7134 can't find device struct. Can't proceed with open\n");
806 mutex_lock(&dev
->dmasound
.lock
);
808 dev
->dmasound
.read_count
= 0;
809 dev
->dmasound
.read_offset
= 0;
811 amux
= dev
->input
->amux
;
812 if ((amux
< 1) || (amux
> 3))
814 dev
->dmasound
.input
= amux
- 1;
816 mutex_unlock(&dev
->dmasound
.lock
);
818 pcm
= kzalloc(sizeof(*pcm
), GFP_KERNEL
);
822 pcm
->dev
=saa7134
->dev
;
824 spin_lock_init(&pcm
->lock
);
826 pcm
->substream
= substream
;
827 runtime
->private_data
= pcm
;
828 runtime
->private_free
= snd_card_saa7134_runtime_free
;
829 runtime
->hw
= snd_card_saa7134_capture
;
831 if (dev
->ctl_mute
!= 0) {
832 saa7134
->mute_was_on
= 1;
834 saa7134_tvaudio_setmute(dev
);
837 err
= snd_pcm_hw_constraint_integer(runtime
,
838 SNDRV_PCM_HW_PARAM_PERIODS
);
842 err
= snd_pcm_hw_constraint_step(runtime
, 0,
843 SNDRV_PCM_HW_PARAM_PERIODS
, 2);
851 * page callback (needed for mmap)
854 static struct page
*snd_card_saa7134_page(struct snd_pcm_substream
*substream
,
855 unsigned long offset
)
857 void *pageptr
= substream
->runtime
->dma_area
+ offset
;
858 return vmalloc_to_page(pageptr
);
862 * ALSA capture callbacks definition
865 static const struct snd_pcm_ops snd_card_saa7134_capture_ops
= {
866 .open
= snd_card_saa7134_capture_open
,
867 .close
= snd_card_saa7134_capture_close
,
868 .hw_params
= snd_card_saa7134_hw_params
,
869 .hw_free
= snd_card_saa7134_hw_free
,
870 .prepare
= snd_card_saa7134_capture_prepare
,
871 .trigger
= snd_card_saa7134_capture_trigger
,
872 .pointer
= snd_card_saa7134_capture_pointer
,
873 .page
= snd_card_saa7134_page
,
879 * Called when initializing the board. Sets up the name and hooks up
884 static int snd_card_saa7134_pcm(snd_card_saa7134_t
*saa7134
, int device
)
889 if ((err
= snd_pcm_new(saa7134
->card
, "SAA7134 PCM", device
, 0, 1, &pcm
)) < 0)
891 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_card_saa7134_capture_ops
);
892 pcm
->private_data
= saa7134
;
894 strscpy(pcm
->name
, "SAA7134 PCM", sizeof(pcm
->name
));
898 #define SAA713x_VOLUME(xname, xindex, addr) \
899 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
900 .info = snd_saa7134_volume_info, \
901 .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \
902 .private_value = addr }
904 static int snd_saa7134_volume_info(struct snd_kcontrol
* kcontrol
,
905 struct snd_ctl_elem_info
* uinfo
)
907 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
909 uinfo
->value
.integer
.min
= 0;
910 uinfo
->value
.integer
.max
= 20;
914 static int snd_saa7134_volume_get(struct snd_kcontrol
* kcontrol
,
915 struct snd_ctl_elem_value
* ucontrol
)
917 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
918 int addr
= kcontrol
->private_value
;
920 ucontrol
->value
.integer
.value
[0] = chip
->mixer_volume
[addr
][0];
921 ucontrol
->value
.integer
.value
[1] = chip
->mixer_volume
[addr
][1];
925 static int snd_saa7134_volume_put(struct snd_kcontrol
* kcontrol
,
926 struct snd_ctl_elem_value
* ucontrol
)
928 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
929 struct saa7134_dev
*dev
= chip
->dev
;
931 int change
, addr
= kcontrol
->private_value
;
934 left
= ucontrol
->value
.integer
.value
[0];
939 right
= ucontrol
->value
.integer
.value
[1];
944 spin_lock_irq(&chip
->mixer_lock
);
946 if (chip
->mixer_volume
[addr
][0] != left
) {
950 if (chip
->mixer_volume
[addr
][1] != right
) {
955 switch (dev
->pci
->device
) {
956 case PCI_DEVICE_ID_PHILIPS_SAA7134
:
958 case MIXER_ADDR_TVTUNER
:
961 case MIXER_ADDR_LINE1
:
962 saa_andorb(SAA7134_ANALOG_IO_SELECT
, 0x10,
963 (left
> 10) ? 0x00 : 0x10);
965 case MIXER_ADDR_LINE2
:
966 saa_andorb(SAA7134_ANALOG_IO_SELECT
, 0x20,
967 (left
> 10) ? 0x00 : 0x20);
971 case PCI_DEVICE_ID_PHILIPS_SAA7133
:
972 case PCI_DEVICE_ID_PHILIPS_SAA7135
:
974 case MIXER_ADDR_TVTUNER
:
977 case MIXER_ADDR_LINE1
:
978 saa_andorb(0x0594, 0x10,
979 (left
> 10) ? 0x00 : 0x10);
981 case MIXER_ADDR_LINE2
:
982 saa_andorb(0x0594, 0x20,
983 (left
> 10) ? 0x00 : 0x20);
988 chip
->mixer_volume
[addr
][0] = left
;
989 chip
->mixer_volume
[addr
][1] = right
;
991 spin_unlock_irq(&chip
->mixer_lock
);
995 #define SAA713x_CAPSRC(xname, xindex, addr) \
996 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
997 .info = snd_saa7134_capsrc_info, \
998 .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \
999 .private_value = addr }
1001 static int snd_saa7134_capsrc_info(struct snd_kcontrol
* kcontrol
,
1002 struct snd_ctl_elem_info
* uinfo
)
1004 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1006 uinfo
->value
.integer
.min
= 0;
1007 uinfo
->value
.integer
.max
= 1;
1011 static int snd_saa7134_capsrc_get(struct snd_kcontrol
* kcontrol
,
1012 struct snd_ctl_elem_value
* ucontrol
)
1014 snd_card_saa7134_t
*chip
= snd_kcontrol_chip(kcontrol
);
1015 int addr
= kcontrol
->private_value
;
1017 spin_lock_irq(&chip
->mixer_lock
);
1018 if (chip
->capture_source_addr
== addr
) {
1019 ucontrol
->value
.integer
.value
[0] = chip
->capture_source
[0];
1020 ucontrol
->value
.integer
.value
[1] = chip
->capture_source
[1];
1022 ucontrol
->value
.integer
.value
[0] = 0;
1023 ucontrol
->value
.integer
.value
[1] = 0;
1025 spin_unlock_irq(&chip
->mixer_lock
);
1030 static int snd_saa7134_capsrc_put(struct snd_kcontrol
* kcontrol
,
1031 struct snd_ctl_elem_value
* ucontrol
)
1034 left
= ucontrol
->value
.integer
.value
[0] & 1;
1035 right
= ucontrol
->value
.integer
.value
[1] & 1;
1037 return snd_saa7134_capsrc_set(kcontrol
, left
, right
, false);
1040 static struct snd_kcontrol_new snd_saa7134_volume_controls
[] = {
1041 SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER
),
1042 SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1
),
1043 SAA713x_VOLUME("Line Volume", 2, MIXER_ADDR_LINE2
),
1046 static struct snd_kcontrol_new snd_saa7134_capture_controls
[] = {
1047 SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER
),
1048 SAA713x_CAPSRC("Line Capture Switch", 1, MIXER_ADDR_LINE1
),
1049 SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2
),
1055 * Called when initializing the board. Sets up the name and hooks up
1060 static int snd_card_saa7134_new_mixer(snd_card_saa7134_t
* chip
)
1062 struct snd_card
*card
= chip
->card
;
1063 struct snd_kcontrol
*kcontrol
;
1067 strscpy(card
->mixername
, "SAA7134 Mixer", sizeof(card
->mixername
));
1069 for (idx
= 0; idx
< ARRAY_SIZE(snd_saa7134_volume_controls
); idx
++) {
1070 kcontrol
= snd_ctl_new1(&snd_saa7134_volume_controls
[idx
],
1072 err
= snd_ctl_add(card
, kcontrol
);
1077 for (idx
= 0; idx
< ARRAY_SIZE(snd_saa7134_capture_controls
); idx
++) {
1078 kcontrol
= snd_ctl_new1(&snd_saa7134_capture_controls
[idx
],
1080 addr
= snd_saa7134_capture_controls
[idx
].private_value
;
1081 chip
->capture_ctl
[addr
] = kcontrol
;
1082 err
= snd_ctl_add(card
, kcontrol
);
1087 chip
->capture_source_addr
= MIXER_ADDR_UNSELECTED
;
1091 static void snd_saa7134_free(struct snd_card
* card
)
1093 snd_card_saa7134_t
*chip
= card
->private_data
;
1095 if (chip
->dev
->dmasound
.priv_data
== NULL
)
1099 free_irq(chip
->irq
, &chip
->dev
->dmasound
);
1101 chip
->dev
->dmasound
.priv_data
= NULL
;
1106 * ALSA initialization
1108 * Called by the init routine, once for each saa7134 device present,
1109 * it creates the basic structures and registers the ALSA devices
1113 static int alsa_card_saa7134_create(struct saa7134_dev
*dev
, int devnum
)
1116 struct snd_card
*card
;
1117 snd_card_saa7134_t
*chip
;
1121 if (devnum
>= SNDRV_CARDS
)
1123 if (!enable
[devnum
])
1126 err
= snd_card_new(&dev
->pci
->dev
, index
[devnum
], id
[devnum
],
1127 THIS_MODULE
, sizeof(snd_card_saa7134_t
), &card
);
1131 strscpy(card
->driver
, "SAA7134", sizeof(card
->driver
));
1133 /* Card "creation" */
1135 card
->private_free
= snd_saa7134_free
;
1136 chip
= card
->private_data
;
1138 spin_lock_init(&chip
->lock
);
1139 spin_lock_init(&chip
->mixer_lock
);
1145 chip
->pci
= dev
->pci
;
1146 chip
->iobase
= pci_resource_start(dev
->pci
, 0);
1149 err
= request_irq(dev
->pci
->irq
, saa7134_alsa_irq
,
1150 IRQF_SHARED
, dev
->name
,
1151 (void*) &dev
->dmasound
);
1154 pr_err("%s: can't get IRQ %d for ALSA\n",
1155 dev
->name
, dev
->pci
->irq
);
1159 chip
->irq
= dev
->pci
->irq
;
1161 mutex_init(&dev
->dmasound
.lock
);
1163 if ((err
= snd_card_saa7134_new_mixer(chip
)) < 0)
1166 if ((err
= snd_card_saa7134_pcm(chip
, 0)) < 0)
1169 /* End of "creation" */
1171 strscpy(card
->shortname
, "SAA7134", sizeof(card
->shortname
));
1172 sprintf(card
->longname
, "%s at 0x%lx irq %d",
1173 chip
->dev
->name
, chip
->iobase
, chip
->irq
);
1175 pr_info("%s/alsa: %s registered as card %d\n",
1176 dev
->name
, card
->longname
, index
[devnum
]);
1178 if ((err
= snd_card_register(card
)) == 0) {
1179 snd_saa7134_cards
[devnum
] = card
;
1184 snd_card_free(card
);
1189 static int alsa_device_init(struct saa7134_dev
*dev
)
1191 dev
->dmasound
.priv_data
= dev
;
1192 alsa_card_saa7134_create(dev
,dev
->nr
);
1196 static int alsa_device_exit(struct saa7134_dev
*dev
)
1198 if (!snd_saa7134_cards
[dev
->nr
])
1201 snd_card_free(snd_saa7134_cards
[dev
->nr
]);
1202 snd_saa7134_cards
[dev
->nr
] = NULL
;
1207 * Module initializer
1209 * Loops through present saa7134 cards, and assigns an ALSA device
1214 static int saa7134_alsa_init(void)
1216 struct saa7134_dev
*dev
= NULL
;
1217 struct list_head
*list
;
1219 saa7134_dmasound_init
= alsa_device_init
;
1220 saa7134_dmasound_exit
= alsa_device_exit
;
1222 pr_info("saa7134 ALSA driver for DMA sound loaded\n");
1224 list_for_each(list
,&saa7134_devlist
) {
1225 dev
= list_entry(list
, struct saa7134_dev
, devlist
);
1226 if (dev
->pci
->device
== PCI_DEVICE_ID_PHILIPS_SAA7130
)
1227 pr_info("%s/alsa: %s doesn't support digital audio\n",
1228 dev
->name
, saa7134_boards
[dev
->board
].name
);
1230 alsa_device_init(dev
);
1234 pr_info("saa7134 ALSA: no saa7134 cards found\n");
1244 static void saa7134_alsa_exit(void)
1248 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1249 if (snd_saa7134_cards
[idx
])
1250 snd_card_free(snd_saa7134_cards
[idx
]);
1253 saa7134_dmasound_init
= NULL
;
1254 saa7134_dmasound_exit
= NULL
;
1255 pr_info("saa7134 ALSA driver for DMA sound unloaded\n");
1260 /* We initialize this late, to make sure the sound system is up and running */
1261 late_initcall(saa7134_alsa_init
);
1262 module_exit(saa7134_alsa_exit
);
1263 MODULE_LICENSE("GPL");
1264 MODULE_AUTHOR("Ricardo Cerqueira");