1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for the Conexant CX25821 PCIe bridge
5 * Copyright (C) 2009 Conexant Systems Inc.
6 * Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
7 * Based on SAA713x ALSA driver and CX88 driver
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/device.h>
15 #include <linux/interrupt.h>
16 #include <linux/vmalloc.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/pci.h>
19 #include <linux/slab.h>
21 #include <linux/delay.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/control.h>
26 #include <sound/initval.h>
27 #include <sound/tlv.h>
30 #include "cx25821-reg.h"
32 #define AUDIO_SRAM_CHANNEL SRAM_CH08
34 #define dprintk(level, fmt, arg...) \
37 pr_info("%s/1: " fmt, chip->dev->name, ##arg); \
39 #define dprintk_core(level, fmt, arg...) \
42 printk(KERN_DEBUG "%s/1: " fmt, chip->dev->name, ##arg); \
45 /****************************************************************************
46 Data type declarations - Can be moded to a header file later
47 ****************************************************************************/
51 struct cx25821_audio_buffer
{
53 struct cx25821_riscmem risc
;
55 struct scatterlist
*sglist
;
57 unsigned long nr_pages
;
60 struct cx25821_audio_dev
{
61 struct cx25821_dev
*dev
;
62 struct cx25821_dmaqueue q
;
70 struct snd_card
*card
;
76 unsigned int dma_size
;
77 unsigned int period_size
;
78 unsigned int num_periods
;
80 struct cx25821_audio_buffer
*buf
;
82 struct snd_pcm_substream
*substream
;
86 /****************************************************************************
87 Module global static vars
88 ****************************************************************************/
90 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
91 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
92 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;
94 module_param_array(enable
, bool, NULL
, 0444);
95 MODULE_PARM_DESC(enable
, "Enable cx25821 soundcard. default enabled.");
97 module_param_array(index
, int, NULL
, 0444);
98 MODULE_PARM_DESC(index
, "Index value for cx25821 capture interface(s).");
100 /****************************************************************************
102 ****************************************************************************/
104 MODULE_DESCRIPTION("ALSA driver module for cx25821 based capture cards");
105 MODULE_AUTHOR("Hiep Huynh");
106 MODULE_LICENSE("GPL");
107 MODULE_SUPPORTED_DEVICE("{{Conexant,25821}"); /* "{{Conexant,23881}," */
109 static unsigned int debug
;
110 module_param(debug
, int, 0644);
111 MODULE_PARM_DESC(debug
, "enable debug messages");
113 /****************************************************************************
114 Module specific functions
115 ****************************************************************************/
116 /* Constants taken from cx88-reg.h */
117 #define AUD_INT_DN_RISCI1 (1 << 0)
118 #define AUD_INT_UP_RISCI1 (1 << 1)
119 #define AUD_INT_RDS_DN_RISCI1 (1 << 2)
120 #define AUD_INT_DN_RISCI2 (1 << 4) /* yes, 3 is skipped */
121 #define AUD_INT_UP_RISCI2 (1 << 5)
122 #define AUD_INT_RDS_DN_RISCI2 (1 << 6)
123 #define AUD_INT_DN_SYNC (1 << 12)
124 #define AUD_INT_UP_SYNC (1 << 13)
125 #define AUD_INT_RDS_DN_SYNC (1 << 14)
126 #define AUD_INT_OPC_ERR (1 << 16)
127 #define AUD_INT_BER_IRQ (1 << 20)
128 #define AUD_INT_MCHG_IRQ (1 << 21)
129 #define GP_COUNT_CONTROL_RESET 0x3
131 #define PCI_MSK_AUD_EXT (1 << 4)
132 #define PCI_MSK_AUD_INT (1 << 3)
134 static int cx25821_alsa_dma_init(struct cx25821_audio_dev
*chip
,
135 unsigned long nr_pages
)
137 struct cx25821_audio_buffer
*buf
= chip
->buf
;
141 buf
->vaddr
= vmalloc_32(nr_pages
<< PAGE_SHIFT
);
142 if (NULL
== buf
->vaddr
) {
143 dprintk(1, "vmalloc_32(%lu pages) failed\n", nr_pages
);
147 dprintk(1, "vmalloc is at addr 0x%p, size=%lu\n",
149 nr_pages
<< PAGE_SHIFT
);
151 memset(buf
->vaddr
, 0, nr_pages
<< PAGE_SHIFT
);
152 buf
->nr_pages
= nr_pages
;
154 buf
->sglist
= vzalloc(array_size(sizeof(*buf
->sglist
), buf
->nr_pages
));
155 if (NULL
== buf
->sglist
)
158 sg_init_table(buf
->sglist
, buf
->nr_pages
);
159 for (i
= 0; i
< buf
->nr_pages
; i
++) {
160 pg
= vmalloc_to_page(buf
->vaddr
+ i
* PAGE_SIZE
);
162 goto vmalloc_to_page_err
;
163 sg_set_page(&buf
->sglist
[i
], pg
, PAGE_SIZE
, 0);
176 static int cx25821_alsa_dma_map(struct cx25821_audio_dev
*dev
)
178 struct cx25821_audio_buffer
*buf
= dev
->buf
;
180 buf
->sglen
= dma_map_sg(&dev
->pci
->dev
, buf
->sglist
,
181 buf
->nr_pages
, DMA_FROM_DEVICE
);
183 if (0 == buf
->sglen
) {
184 pr_warn("%s: cx25821_alsa_map_sg failed\n", __func__
);
190 static int cx25821_alsa_dma_unmap(struct cx25821_audio_dev
*dev
)
192 struct cx25821_audio_buffer
*buf
= dev
->buf
;
197 dma_unmap_sg(&dev
->pci
->dev
, buf
->sglist
, buf
->nr_pages
, DMA_FROM_DEVICE
);
202 static int cx25821_alsa_dma_free(struct cx25821_audio_buffer
*buf
)
212 * BOARD Specific: Sets audio DMA
215 static int _cx25821_start_audio_dma(struct cx25821_audio_dev
*chip
)
217 struct cx25821_audio_buffer
*buf
= chip
->buf
;
218 struct cx25821_dev
*dev
= chip
->dev
;
219 const struct sram_channel
*audio_ch
=
220 &cx25821_sram_channels
[AUDIO_SRAM_CHANNEL
];
223 /* enable output on the GPIO 0 for the MCLK ADC (Audio) */
224 cx25821_set_gpiopin_direction(chip
->dev
, 0, 0);
226 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
227 cx_clear(AUD_INT_DMA_CTL
,
228 FLD_AUD_DST_A_RISC_EN
| FLD_AUD_DST_A_FIFO_EN
);
230 /* setup fifo + format - out channel */
231 cx25821_sram_channel_setup_audio(chip
->dev
, audio_ch
, buf
->bpl
,
235 cx_write(AUD_A_LNGTH
, buf
->bpl
);
238 /* GP_COUNT_CONTROL_RESET = 0x3 */
239 cx_write(AUD_A_GPCNT_CTL
, GP_COUNT_CONTROL_RESET
);
240 atomic_set(&chip
->count
, 0);
242 /* Set the input mode to 16-bit */
243 tmp
= cx_read(AUD_A_CFG
);
244 cx_write(AUD_A_CFG
, tmp
| FLD_AUD_DST_PK_MODE
| FLD_AUD_DST_ENABLE
|
248 pr_info("DEBUG: Start audio DMA, %d B/line, cmds_start(0x%x)= %d lines/FIFO, %d periods, %d byte buffer\n",
249 buf->bpl, audio_ch->cmds_start,
250 cx_read(audio_ch->cmds_start + 12)>>1,
251 chip->num_periods, buf->bpl * chip->num_periods);
254 /* Enables corresponding bits at AUD_INT_STAT */
255 cx_write(AUD_A_INT_MSK
, FLD_AUD_DST_RISCI1
| FLD_AUD_DST_OF
|
256 FLD_AUD_DST_SYNC
| FLD_AUD_DST_OPC_ERR
);
258 /* Clean any pending interrupt bits already set */
259 cx_write(AUD_A_INT_STAT
, ~0);
261 /* enable audio irqs */
262 cx_set(PCI_INT_MSK
, chip
->dev
->pci_irqmask
| PCI_MSK_AUD_INT
);
264 /* Turn on audio downstream fifo and risc enable 0x101 */
265 tmp
= cx_read(AUD_INT_DMA_CTL
);
266 cx_set(AUD_INT_DMA_CTL
, tmp
|
267 (FLD_AUD_DST_A_RISC_EN
| FLD_AUD_DST_A_FIFO_EN
));
274 * BOARD Specific: Resets audio DMA
276 static int _cx25821_stop_audio_dma(struct cx25821_audio_dev
*chip
)
278 struct cx25821_dev
*dev
= chip
->dev
;
281 cx_clear(AUD_INT_DMA_CTL
,
282 FLD_AUD_DST_A_RISC_EN
| FLD_AUD_DST_A_FIFO_EN
);
285 cx_clear(PCI_INT_MSK
, PCI_MSK_AUD_INT
);
286 cx_clear(AUD_A_INT_MSK
, AUD_INT_OPC_ERR
| AUD_INT_DN_SYNC
|
287 AUD_INT_DN_RISCI2
| AUD_INT_DN_RISCI1
);
292 #define MAX_IRQ_LOOP 50
295 * BOARD Specific: IRQ dma bits
297 static char *cx25821_aud_irqs
[32] = {
298 "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */
300 "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */
302 "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */
304 "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */
306 "opc_err", "par_err", "rip_err", /* 16-18 */
307 "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */
311 * BOARD Specific: Threats IRQ audio specific calls
313 static void cx25821_aud_irq(struct cx25821_audio_dev
*chip
, u32 status
,
316 struct cx25821_dev
*dev
= chip
->dev
;
318 if (0 == (status
& mask
))
321 cx_write(AUD_A_INT_STAT
, status
);
322 if (debug
> 1 || (status
& mask
& ~0xff))
323 cx25821_print_irqbits(dev
->name
, "irq aud", cx25821_aud_irqs
,
324 ARRAY_SIZE(cx25821_aud_irqs
), status
, mask
);
326 /* risc op code error */
327 if (status
& AUD_INT_OPC_ERR
) {
328 pr_warn("WARNING %s/1: Audio risc op code error\n", dev
->name
);
330 cx_clear(AUD_INT_DMA_CTL
,
331 FLD_AUD_DST_A_RISC_EN
| FLD_AUD_DST_A_FIFO_EN
);
332 cx25821_sram_channel_dump_audio(dev
,
333 &cx25821_sram_channels
[AUDIO_SRAM_CHANNEL
]);
335 if (status
& AUD_INT_DN_SYNC
) {
336 pr_warn("WARNING %s: Downstream sync error!\n", dev
->name
);
337 cx_write(AUD_A_GPCNT_CTL
, GP_COUNT_CONTROL_RESET
);
341 /* risc1 downstream */
342 if (status
& AUD_INT_DN_RISCI1
) {
343 atomic_set(&chip
->count
, cx_read(AUD_A_GPCNT
));
344 snd_pcm_period_elapsed(chip
->substream
);
349 * BOARD Specific: Handles IRQ calls
351 static irqreturn_t
cx25821_irq(int irq
, void *dev_id
)
353 struct cx25821_audio_dev
*chip
= dev_id
;
354 struct cx25821_dev
*dev
= chip
->dev
;
355 u32 status
, pci_status
;
356 u32 audint_status
, audint_mask
;
357 int loop
, handled
= 0;
359 audint_status
= cx_read(AUD_A_INT_STAT
);
360 audint_mask
= cx_read(AUD_A_INT_MSK
);
361 status
= cx_read(PCI_INT_STAT
);
363 for (loop
= 0; loop
< 1; loop
++) {
364 status
= cx_read(PCI_INT_STAT
);
366 status
= cx_read(PCI_INT_STAT
);
367 audint_status
= cx_read(AUD_A_INT_STAT
);
368 audint_mask
= cx_read(AUD_A_INT_MSK
);
372 cx_write(PCI_INT_STAT
, status
);
374 cx25821_aud_irq(chip
, audint_status
,
383 cx_write(PCI_INT_STAT
, status
);
385 cx25821_aud_irq(chip
, audint_status
, audint_mask
);
388 pci_status
= cx_read(PCI_INT_STAT
);
391 cx_write(PCI_INT_STAT
, pci_status
);
394 return IRQ_RETVAL(handled
);
397 static int dsp_buffer_free(struct cx25821_audio_dev
*chip
)
399 struct cx25821_riscmem
*risc
= &chip
->buf
->risc
;
401 BUG_ON(!chip
->dma_size
);
403 dprintk(2, "Freeing buffer\n");
404 cx25821_alsa_dma_unmap(chip
);
405 cx25821_alsa_dma_free(chip
->buf
);
406 pci_free_consistent(chip
->pci
, risc
->size
, risc
->cpu
, risc
->dma
);
415 /****************************************************************************
417 ****************************************************************************/
420 * Digital hardware definition
422 #define DEFAULT_FIFO_SIZE 384
423 static const struct snd_pcm_hardware snd_cx25821_digital_hw
= {
424 .info
= SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
425 SNDRV_PCM_INFO_BLOCK_TRANSFER
| SNDRV_PCM_INFO_MMAP_VALID
,
426 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
428 .rates
= SNDRV_PCM_RATE_48000
,
433 /* Analog audio output will be full of clicks and pops if there
434 are not exactly four lines in the SRAM FIFO buffer. */
435 .period_bytes_min
= DEFAULT_FIFO_SIZE
/ 3,
436 .period_bytes_max
= DEFAULT_FIFO_SIZE
/ 3,
438 .periods_max
= AUDIO_LINE_SIZE
,
439 /* 128 * 128 = 16384 = 1024 * 16 */
440 .buffer_bytes_max
= (AUDIO_LINE_SIZE
* AUDIO_LINE_SIZE
),
444 * audio pcm capture open callback
446 static int snd_cx25821_pcm_open(struct snd_pcm_substream
*substream
)
448 struct cx25821_audio_dev
*chip
= snd_pcm_substream_chip(substream
);
449 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
451 unsigned int bpl
= 0;
454 pr_err("DEBUG: cx25821 can't find device struct. Can't proceed with open\n");
458 err
= snd_pcm_hw_constraint_pow2(runtime
, 0,
459 SNDRV_PCM_HW_PARAM_PERIODS
);
463 chip
->substream
= substream
;
465 runtime
->hw
= snd_cx25821_digital_hw
;
467 if (cx25821_sram_channels
[AUDIO_SRAM_CHANNEL
].fifo_size
!=
469 /* since there are 3 audio Clusters */
470 bpl
= cx25821_sram_channels
[AUDIO_SRAM_CHANNEL
].fifo_size
/ 3;
471 bpl
&= ~7; /* must be multiple of 8 */
473 if (bpl
> AUDIO_LINE_SIZE
)
474 bpl
= AUDIO_LINE_SIZE
;
476 runtime
->hw
.period_bytes_min
= bpl
;
477 runtime
->hw
.period_bytes_max
= bpl
;
482 dprintk(1, "Error opening PCM!\n");
487 * audio close callback
489 static int snd_cx25821_close(struct snd_pcm_substream
*substream
)
497 static int snd_cx25821_hw_params(struct snd_pcm_substream
*substream
,
498 struct snd_pcm_hw_params
*hw_params
)
500 struct cx25821_audio_dev
*chip
= snd_pcm_substream_chip(substream
);
501 struct cx25821_audio_buffer
*buf
;
504 if (substream
->runtime
->dma_area
) {
505 dsp_buffer_free(chip
);
506 substream
->runtime
->dma_area
= NULL
;
509 chip
->period_size
= params_period_bytes(hw_params
);
510 chip
->num_periods
= params_periods(hw_params
);
511 chip
->dma_size
= chip
->period_size
* params_periods(hw_params
);
513 BUG_ON(!chip
->dma_size
);
514 BUG_ON(chip
->num_periods
& (chip
->num_periods
- 1));
516 buf
= kzalloc(sizeof(*buf
), GFP_KERNEL
);
520 if (chip
->period_size
> AUDIO_LINE_SIZE
)
521 chip
->period_size
= AUDIO_LINE_SIZE
;
523 buf
->bpl
= chip
->period_size
;
526 ret
= cx25821_alsa_dma_init(chip
,
527 (PAGE_ALIGN(chip
->dma_size
) >> PAGE_SHIFT
));
531 ret
= cx25821_alsa_dma_map(chip
);
535 ret
= cx25821_risc_databuffer_audio(chip
->pci
, &buf
->risc
, buf
->sglist
,
536 chip
->period_size
, chip
->num_periods
, 1);
538 pr_info("DEBUG: ERROR after cx25821_risc_databuffer_audio()\n");
542 /* Loop back to start of program */
543 buf
->risc
.jmp
[0] = cpu_to_le32(RISC_JUMP
| RISC_IRQ1
| RISC_CNT_INC
);
544 buf
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
545 buf
->risc
.jmp
[2] = cpu_to_le32(0); /* bits 63-32 */
547 substream
->runtime
->dma_area
= chip
->buf
->vaddr
;
548 substream
->runtime
->dma_bytes
= chip
->dma_size
;
549 substream
->runtime
->dma_addr
= 0;
562 static int snd_cx25821_hw_free(struct snd_pcm_substream
*substream
)
564 struct cx25821_audio_dev
*chip
= snd_pcm_substream_chip(substream
);
566 if (substream
->runtime
->dma_area
) {
567 dsp_buffer_free(chip
);
568 substream
->runtime
->dma_area
= NULL
;
577 static int snd_cx25821_prepare(struct snd_pcm_substream
*substream
)
585 static int snd_cx25821_card_trigger(struct snd_pcm_substream
*substream
,
588 struct cx25821_audio_dev
*chip
= snd_pcm_substream_chip(substream
);
591 /* Local interrupts are already disabled by ALSA */
592 spin_lock(&chip
->reg_lock
);
595 case SNDRV_PCM_TRIGGER_START
:
596 err
= _cx25821_start_audio_dma(chip
);
598 case SNDRV_PCM_TRIGGER_STOP
:
599 err
= _cx25821_stop_audio_dma(chip
);
606 spin_unlock(&chip
->reg_lock
);
614 static snd_pcm_uframes_t
snd_cx25821_pointer(struct snd_pcm_substream
617 struct cx25821_audio_dev
*chip
= snd_pcm_substream_chip(substream
);
618 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
621 count
= atomic_read(&chip
->count
);
623 return runtime
->period_size
* (count
& (runtime
->periods
- 1));
627 * page callback (needed for mmap)
629 static struct page
*snd_cx25821_page(struct snd_pcm_substream
*substream
,
630 unsigned long offset
)
632 void *pageptr
= substream
->runtime
->dma_area
+ offset
;
634 return vmalloc_to_page(pageptr
);
640 static const struct snd_pcm_ops snd_cx25821_pcm_ops
= {
641 .open
= snd_cx25821_pcm_open
,
642 .close
= snd_cx25821_close
,
643 .hw_params
= snd_cx25821_hw_params
,
644 .hw_free
= snd_cx25821_hw_free
,
645 .prepare
= snd_cx25821_prepare
,
646 .trigger
= snd_cx25821_card_trigger
,
647 .pointer
= snd_cx25821_pointer
,
648 .page
= snd_cx25821_page
,
652 * ALSA create a PCM device: Called when initializing the board.
653 * Sets up the name and hooks up the callbacks
655 static int snd_cx25821_pcm(struct cx25821_audio_dev
*chip
, int device
,
661 err
= snd_pcm_new(chip
->card
, name
, device
, 0, 1, &pcm
);
663 pr_info("ERROR: FAILED snd_pcm_new() in %s\n", __func__
);
666 pcm
->private_data
= chip
;
668 strscpy(pcm
->name
, name
, sizeof(pcm
->name
));
669 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_cx25821_pcm_ops
);
674 /****************************************************************************
675 Basic Flow for Sound Devices
676 ****************************************************************************/
679 * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio
680 * Only boards with eeprom and byte 1 at eeprom=1 have it
683 static const struct pci_device_id __maybe_unused cx25821_audio_pci_tbl
[] = {
684 {0x14f1, 0x0920, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0},
688 MODULE_DEVICE_TABLE(pci
, cx25821_audio_pci_tbl
);
691 * Alsa Constructor - Component probe
693 static int cx25821_audio_initdev(struct cx25821_dev
*dev
)
695 struct snd_card
*card
;
696 struct cx25821_audio_dev
*chip
;
699 if (devno
>= SNDRV_CARDS
) {
700 pr_info("DEBUG ERROR: devno >= SNDRV_CARDS %s\n", __func__
);
704 if (!enable
[devno
]) {
706 pr_info("DEBUG ERROR: !enable[devno] %s\n", __func__
);
710 err
= snd_card_new(&dev
->pci
->dev
, index
[devno
], id
[devno
],
712 sizeof(struct cx25821_audio_dev
), &card
);
714 pr_info("DEBUG ERROR: cannot create snd_card_new in %s\n",
719 strscpy(card
->driver
, "cx25821", sizeof(card
->driver
));
721 /* Card "creation" */
722 chip
= card
->private_data
;
723 spin_lock_init(&chip
->reg_lock
);
727 chip
->pci
= dev
->pci
;
728 chip
->iobase
= pci_resource_start(dev
->pci
, 0);
730 chip
->irq
= dev
->pci
->irq
;
732 err
= request_irq(dev
->pci
->irq
, cx25821_irq
,
733 IRQF_SHARED
, chip
->dev
->name
, chip
);
736 pr_err("ERROR %s: can't get IRQ %d for ALSA\n", chip
->dev
->name
,
741 err
= snd_cx25821_pcm(chip
, 0, "cx25821 Digital");
743 pr_info("DEBUG ERROR: cannot create snd_cx25821_pcm %s\n",
748 strscpy(card
->shortname
, "cx25821", sizeof(card
->shortname
));
749 sprintf(card
->longname
, "%s at 0x%lx irq %d", chip
->dev
->name
,
750 chip
->iobase
, chip
->irq
);
751 strscpy(card
->mixername
, "CX25821", sizeof(card
->mixername
));
753 pr_info("%s/%i: ALSA support for cx25821 boards\n", card
->driver
,
756 err
= snd_card_register(card
);
758 pr_info("DEBUG ERROR: cannot register sound card %s\n",
772 /****************************************************************************
774 ****************************************************************************/
776 static int cx25821_alsa_exit_callback(struct device
*dev
, void *data
)
778 struct v4l2_device
*v4l2_dev
= dev_get_drvdata(dev
);
779 struct cx25821_dev
*cxdev
= get_cx25821(v4l2_dev
);
781 snd_card_free(cxdev
->card
);
785 static void cx25821_audio_fini(void)
787 struct device_driver
*drv
= driver_find("cx25821", &pci_bus_type
);
790 ret
= driver_for_each_device(drv
, NULL
, NULL
, cx25821_alsa_exit_callback
);
792 pr_err("%s failed to find a cx25821 driver.\n", __func__
);
795 static int cx25821_alsa_init_callback(struct device
*dev
, void *data
)
797 struct v4l2_device
*v4l2_dev
= dev_get_drvdata(dev
);
798 struct cx25821_dev
*cxdev
= get_cx25821(v4l2_dev
);
800 cx25821_audio_initdev(cxdev
);
807 * Loops through present saa7134 cards, and assigns an ALSA device
811 static int cx25821_alsa_init(void)
813 struct device_driver
*drv
= driver_find("cx25821", &pci_bus_type
);
815 return driver_for_each_device(drv
, NULL
, NULL
, cx25821_alsa_init_callback
);
819 late_initcall(cx25821_alsa_init
);
820 module_exit(cx25821_audio_fini
);