3 * Support for audio capture
4 * PCI function #1 of the cx2388x.
6 * (c) 2007 Trent Piepho <xyzzy@speakeasy.org>
7 * (c) 2005,2006 Ricardo Cerqueira <v4l@cerqueira.org>
8 * (c) 2005 Mauro Carvalho Chehab <mchehab@infradead.org>
9 * Based on a dummy cx88 module by Gerd Knorr <kraxel@bytesex.org>
10 * Based on dummy.c by Jaroslav Kysela <perex@perex.cz>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #include <linux/module.h>
28 #include <linux/init.h>
29 #include <linux/device.h>
30 #include <linux/interrupt.h>
31 #include <linux/vmalloc.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/pci.h>
34 #include <linux/slab.h>
36 #include <asm/delay.h>
37 #include <sound/core.h>
38 #include <sound/pcm.h>
39 #include <sound/pcm_params.h>
40 #include <sound/control.h>
41 #include <sound/initval.h>
42 #include <sound/tlv.h>
43 #include <media/wm8775.h>
48 #define dprintk(level, fmt, arg...) do { \
49 if (debug + 1 > level) \
50 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg);\
53 #define dprintk_core(level, fmt, arg...) do { \
54 if (debug + 1 > level) \
55 printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg);\
58 /****************************************************************************
59 Data type declarations - Can be moded to a header file later
60 ****************************************************************************/
62 struct cx88_audio_buffer
{
64 struct btcx_riscmem risc
;
65 struct videobuf_dmabuf dma
;
68 struct cx88_audio_dev
{
69 struct cx88_core
*core
;
70 struct cx88_dmaqueue q
;
78 struct snd_card
*card
;
83 unsigned int dma_size
;
84 unsigned int period_size
;
85 unsigned int num_periods
;
87 struct videobuf_dmabuf
*dma_risc
;
89 struct cx88_audio_buffer
*buf
;
91 struct snd_pcm_substream
*substream
;
93 typedef struct cx88_audio_dev snd_cx88_card_t
;
97 /****************************************************************************
98 Module global static vars
99 ****************************************************************************/
101 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
102 static const char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
103 static bool enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 1};
105 module_param_array(enable
, bool, NULL
, 0444);
106 MODULE_PARM_DESC(enable
, "Enable cx88x soundcard. default enabled.");
108 module_param_array(index
, int, NULL
, 0444);
109 MODULE_PARM_DESC(index
, "Index value for cx88x capture interface(s).");
112 /****************************************************************************
114 ****************************************************************************/
116 MODULE_DESCRIPTION("ALSA driver module for cx2388x based TV cards");
117 MODULE_AUTHOR("Ricardo Cerqueira");
118 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
119 MODULE_LICENSE("GPL");
120 MODULE_VERSION(CX88_VERSION
);
122 MODULE_SUPPORTED_DEVICE("{{Conexant,23881},"
124 "{{Conexant,23883}");
125 static unsigned int debug
;
126 module_param(debug
,int,0644);
127 MODULE_PARM_DESC(debug
,"enable debug messages");
129 /****************************************************************************
130 Module specific funtions
131 ****************************************************************************/
134 * BOARD Specific: Sets audio DMA
137 static int _cx88_start_audio_dma(snd_cx88_card_t
*chip
)
139 struct cx88_audio_buffer
*buf
= chip
->buf
;
140 struct cx88_core
*core
=chip
->core
;
141 const struct sram_channel
*audio_ch
= &cx88_sram_channels
[SRAM_CH25
];
143 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
144 cx_clear(MO_AUD_DMACNTRL
, 0x11);
146 /* setup fifo + format - out channel */
147 cx88_sram_channel_setup(chip
->core
, audio_ch
, buf
->bpl
, buf
->risc
.dma
);
150 cx_write(MO_AUDD_LNGTH
, buf
->bpl
);
153 cx_write(MO_AUDD_GPCNTRL
, GP_COUNT_CONTROL_RESET
);
154 atomic_set(&chip
->count
, 0);
156 dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d "
157 "byte buffer\n", buf
->bpl
, cx_read(audio_ch
->cmds_start
+ 8)>>1,
158 chip
->num_periods
, buf
->bpl
* chip
->num_periods
);
160 /* Enables corresponding bits at AUD_INT_STAT */
161 cx_write(MO_AUD_INTMSK
, AUD_INT_OPC_ERR
| AUD_INT_DN_SYNC
|
162 AUD_INT_DN_RISCI2
| AUD_INT_DN_RISCI1
);
164 /* Clean any pending interrupt bits already set */
165 cx_write(MO_AUD_INTSTAT
, ~0);
167 /* enable audio irqs */
168 cx_set(MO_PCI_INTMSK
, chip
->core
->pci_irqmask
| PCI_INT_AUDINT
);
171 cx_set(MO_DEV_CNTRL2
, (1<<5)); /* Enables Risc Processor */
172 cx_set(MO_AUD_DMACNTRL
, 0x11); /* audio downstream FIFO and RISC enable */
175 cx88_sram_channel_dump(chip
->core
, audio_ch
);
181 * BOARD Specific: Resets audio DMA
183 static int _cx88_stop_audio_dma(snd_cx88_card_t
*chip
)
185 struct cx88_core
*core
=chip
->core
;
186 dprintk(1, "Stopping audio DMA\n");
189 cx_clear(MO_AUD_DMACNTRL
, 0x11);
192 cx_clear(MO_PCI_INTMSK
, PCI_INT_AUDINT
);
193 cx_clear(MO_AUD_INTMSK
, AUD_INT_OPC_ERR
| AUD_INT_DN_SYNC
|
194 AUD_INT_DN_RISCI2
| AUD_INT_DN_RISCI1
);
197 cx88_sram_channel_dump(chip
->core
, &cx88_sram_channels
[SRAM_CH25
]);
202 #define MAX_IRQ_LOOP 50
205 * BOARD Specific: IRQ dma bits
207 static const char *cx88_aud_irqs
[32] = {
208 "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */
210 "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */
212 "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */
214 "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */
216 "opc_err", "par_err", "rip_err", /* 16-18 */
217 "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */
221 * BOARD Specific: Threats IRQ audio specific calls
223 static void cx8801_aud_irq(snd_cx88_card_t
*chip
)
225 struct cx88_core
*core
= chip
->core
;
228 status
= cx_read(MO_AUD_INTSTAT
);
229 mask
= cx_read(MO_AUD_INTMSK
);
230 if (0 == (status
& mask
))
232 cx_write(MO_AUD_INTSTAT
, status
);
233 if (debug
> 1 || (status
& mask
& ~0xff))
234 cx88_print_irqbits(core
->name
, "irq aud",
235 cx88_aud_irqs
, ARRAY_SIZE(cx88_aud_irqs
),
237 /* risc op code error */
238 if (status
& AUD_INT_OPC_ERR
) {
239 printk(KERN_WARNING
"%s/1: Audio risc op code error\n",core
->name
);
240 cx_clear(MO_AUD_DMACNTRL
, 0x11);
241 cx88_sram_channel_dump(core
, &cx88_sram_channels
[SRAM_CH25
]);
243 if (status
& AUD_INT_DN_SYNC
) {
244 dprintk(1, "Downstream sync error\n");
245 cx_write(MO_AUDD_GPCNTRL
, GP_COUNT_CONTROL_RESET
);
248 /* risc1 downstream */
249 if (status
& AUD_INT_DN_RISCI1
) {
250 atomic_set(&chip
->count
, cx_read(MO_AUDD_GPCNT
));
251 snd_pcm_period_elapsed(chip
->substream
);
253 /* FIXME: Any other status should deserve a special handling? */
257 * BOARD Specific: Handles IRQ calls
259 static irqreturn_t
cx8801_irq(int irq
, void *dev_id
)
261 snd_cx88_card_t
*chip
= dev_id
;
262 struct cx88_core
*core
= chip
->core
;
264 int loop
, handled
= 0;
266 for (loop
= 0; loop
< MAX_IRQ_LOOP
; loop
++) {
267 status
= cx_read(MO_PCI_INTSTAT
) &
268 (core
->pci_irqmask
| PCI_INT_AUDINT
);
271 dprintk(3, "cx8801_irq loop %d/%d, status %x\n",
272 loop
, MAX_IRQ_LOOP
, status
);
274 cx_write(MO_PCI_INTSTAT
, status
);
276 if (status
& core
->pci_irqmask
)
277 cx88_core_irq(core
, status
);
278 if (status
& PCI_INT_AUDINT
)
279 cx8801_aud_irq(chip
);
282 if (MAX_IRQ_LOOP
== loop
) {
284 "%s/1: IRQ loop detected, disabling interrupts\n",
286 cx_clear(MO_PCI_INTMSK
, PCI_INT_AUDINT
);
290 return IRQ_RETVAL(handled
);
294 static int dsp_buffer_free(snd_cx88_card_t
*chip
)
296 BUG_ON(!chip
->dma_size
);
298 dprintk(2,"Freeing buffer\n");
299 videobuf_dma_unmap(&chip
->pci
->dev
, chip
->dma_risc
);
300 videobuf_dma_free(chip
->dma_risc
);
301 btcx_riscmem_free(chip
->pci
,&chip
->buf
->risc
);
304 chip
->dma_risc
= NULL
;
310 /****************************************************************************
312 ****************************************************************************/
315 * Digital hardware definition
317 #define DEFAULT_FIFO_SIZE 4096
318 static const struct snd_pcm_hardware snd_cx88_digital_hw
= {
319 .info
= SNDRV_PCM_INFO_MMAP
|
320 SNDRV_PCM_INFO_INTERLEAVED
|
321 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
322 SNDRV_PCM_INFO_MMAP_VALID
,
323 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
325 .rates
= SNDRV_PCM_RATE_48000
,
330 /* Analog audio output will be full of clicks and pops if there
331 are not exactly four lines in the SRAM FIFO buffer. */
332 .period_bytes_min
= DEFAULT_FIFO_SIZE
/4,
333 .period_bytes_max
= DEFAULT_FIFO_SIZE
/4,
336 .buffer_bytes_max
= (1024*1024),
340 * audio pcm capture open callback
342 static int snd_cx88_pcm_open(struct snd_pcm_substream
*substream
)
344 snd_cx88_card_t
*chip
= snd_pcm_substream_chip(substream
);
345 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
349 printk(KERN_ERR
"BUG: cx88 can't find device struct."
350 " Can't proceed with open\n");
354 err
= snd_pcm_hw_constraint_pow2(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
);
358 chip
->substream
= substream
;
360 runtime
->hw
= snd_cx88_digital_hw
;
362 if (cx88_sram_channels
[SRAM_CH25
].fifo_size
!= DEFAULT_FIFO_SIZE
) {
363 unsigned int bpl
= cx88_sram_channels
[SRAM_CH25
].fifo_size
/ 4;
364 bpl
&= ~7; /* must be multiple of 8 */
365 runtime
->hw
.period_bytes_min
= bpl
;
366 runtime
->hw
.period_bytes_max
= bpl
;
371 dprintk(1,"Error opening PCM!\n");
376 * audio close callback
378 static int snd_cx88_close(struct snd_pcm_substream
*substream
)
386 static int snd_cx88_hw_params(struct snd_pcm_substream
* substream
,
387 struct snd_pcm_hw_params
* hw_params
)
389 snd_cx88_card_t
*chip
= snd_pcm_substream_chip(substream
);
390 struct videobuf_dmabuf
*dma
;
392 struct cx88_audio_buffer
*buf
;
395 if (substream
->runtime
->dma_area
) {
396 dsp_buffer_free(chip
);
397 substream
->runtime
->dma_area
= NULL
;
400 chip
->period_size
= params_period_bytes(hw_params
);
401 chip
->num_periods
= params_periods(hw_params
);
402 chip
->dma_size
= chip
->period_size
* params_periods(hw_params
);
404 BUG_ON(!chip
->dma_size
);
405 BUG_ON(chip
->num_periods
& (chip
->num_periods
-1));
407 buf
= kzalloc(sizeof(*buf
), GFP_KERNEL
);
411 buf
->bpl
= chip
->period_size
;
414 videobuf_dma_init(dma
);
415 ret
= videobuf_dma_init_kernel(dma
, PCI_DMA_FROMDEVICE
,
416 (PAGE_ALIGN(chip
->dma_size
) >> PAGE_SHIFT
));
420 ret
= videobuf_dma_map(&chip
->pci
->dev
, dma
);
424 ret
= cx88_risc_databuffer(chip
->pci
, &buf
->risc
, dma
->sglist
,
425 chip
->period_size
, chip
->num_periods
, 1);
429 /* Loop back to start of program */
430 buf
->risc
.jmp
[0] = cpu_to_le32(RISC_JUMP
|RISC_IRQ1
|RISC_CNT_INC
);
431 buf
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
434 chip
->dma_risc
= dma
;
436 substream
->runtime
->dma_area
= chip
->dma_risc
->vaddr
;
437 substream
->runtime
->dma_bytes
= chip
->dma_size
;
438 substream
->runtime
->dma_addr
= 0;
449 static int snd_cx88_hw_free(struct snd_pcm_substream
* substream
)
452 snd_cx88_card_t
*chip
= snd_pcm_substream_chip(substream
);
454 if (substream
->runtime
->dma_area
) {
455 dsp_buffer_free(chip
);
456 substream
->runtime
->dma_area
= NULL
;
465 static int snd_cx88_prepare(struct snd_pcm_substream
*substream
)
473 static int snd_cx88_card_trigger(struct snd_pcm_substream
*substream
, int cmd
)
475 snd_cx88_card_t
*chip
= snd_pcm_substream_chip(substream
);
478 /* Local interrupts are already disabled by ALSA */
479 spin_lock(&chip
->reg_lock
);
482 case SNDRV_PCM_TRIGGER_START
:
483 err
=_cx88_start_audio_dma(chip
);
485 case SNDRV_PCM_TRIGGER_STOP
:
486 err
=_cx88_stop_audio_dma(chip
);
493 spin_unlock(&chip
->reg_lock
);
501 static snd_pcm_uframes_t
snd_cx88_pointer(struct snd_pcm_substream
*substream
)
503 snd_cx88_card_t
*chip
= snd_pcm_substream_chip(substream
);
504 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
507 count
= atomic_read(&chip
->count
);
509 // dprintk(2, "%s - count %d (+%u), period %d, frame %lu\n", __func__,
510 // count, new, count & (runtime->periods-1),
511 // runtime->period_size * (count & (runtime->periods-1)));
512 return runtime
->period_size
* (count
& (runtime
->periods
-1));
516 * page callback (needed for mmap)
518 static struct page
*snd_cx88_page(struct snd_pcm_substream
*substream
,
519 unsigned long offset
)
521 void *pageptr
= substream
->runtime
->dma_area
+ offset
;
522 return vmalloc_to_page(pageptr
);
528 static struct snd_pcm_ops snd_cx88_pcm_ops
= {
529 .open
= snd_cx88_pcm_open
,
530 .close
= snd_cx88_close
,
531 .ioctl
= snd_pcm_lib_ioctl
,
532 .hw_params
= snd_cx88_hw_params
,
533 .hw_free
= snd_cx88_hw_free
,
534 .prepare
= snd_cx88_prepare
,
535 .trigger
= snd_cx88_card_trigger
,
536 .pointer
= snd_cx88_pointer
,
537 .page
= snd_cx88_page
,
541 * create a PCM device
543 static int snd_cx88_pcm(snd_cx88_card_t
*chip
, int device
, const char *name
)
548 err
= snd_pcm_new(chip
->card
, name
, device
, 0, 1, &pcm
);
551 pcm
->private_data
= chip
;
552 strcpy(pcm
->name
, name
);
553 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_cx88_pcm_ops
);
558 /****************************************************************************
560 ****************************************************************************/
561 static int snd_cx88_volume_info(struct snd_kcontrol
*kcontrol
,
562 struct snd_ctl_elem_info
*info
)
564 info
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
566 info
->value
.integer
.min
= 0;
567 info
->value
.integer
.max
= 0x3f;
572 static int snd_cx88_volume_get(struct snd_kcontrol
*kcontrol
,
573 struct snd_ctl_elem_value
*value
)
575 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
576 struct cx88_core
*core
=chip
->core
;
577 int vol
= 0x3f - (cx_read(AUD_VOL_CTL
) & 0x3f),
578 bal
= cx_read(AUD_BAL_CTL
);
580 value
->value
.integer
.value
[(bal
& 0x40) ? 0 : 1] = vol
;
582 value
->value
.integer
.value
[(bal
& 0x40) ? 1 : 0] = vol
< 0 ? 0 : vol
;
587 static void snd_cx88_wm8775_volume_put(struct snd_kcontrol
*kcontrol
,
588 struct snd_ctl_elem_value
*value
)
590 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
591 struct cx88_core
*core
= chip
->core
;
592 int left
= value
->value
.integer
.value
[0];
593 int right
= value
->value
.integer
.value
[1];
596 /* Pass volume & balance onto any WM8775 */
599 b
= left
? (0x8000 * right
) / left
: 0x8000;
602 b
= right
? 0xffff - (0x8000 * left
) / right
: 0x8000;
604 wm8775_s_ctrl(core
, V4L2_CID_AUDIO_VOLUME
, v
);
605 wm8775_s_ctrl(core
, V4L2_CID_AUDIO_BALANCE
, b
);
608 /* OK - TODO: test it */
609 static int snd_cx88_volume_put(struct snd_kcontrol
*kcontrol
,
610 struct snd_ctl_elem_value
*value
)
612 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
613 struct cx88_core
*core
=chip
->core
;
614 int left
, right
, v
, b
;
618 if (core
->board
.audio_chip
== V4L2_IDENT_WM8775
)
619 snd_cx88_wm8775_volume_put(kcontrol
, value
);
621 left
= value
->value
.integer
.value
[0] & 0x3f;
622 right
= value
->value
.integer
.value
[1] & 0x3f;
630 /* Do we really know this will always be called with IRQs on? */
631 spin_lock_irq(&chip
->reg_lock
);
632 old
= cx_read(AUD_VOL_CTL
);
633 if (v
!= (old
& 0x3f)) {
634 cx_swrite(SHADOW_AUD_VOL_CTL
, AUD_VOL_CTL
, (old
& ~0x3f) | v
);
637 if ((cx_read(AUD_BAL_CTL
) & 0x7f) != b
) {
638 cx_write(AUD_BAL_CTL
, b
);
641 spin_unlock_irq(&chip
->reg_lock
);
646 static const DECLARE_TLV_DB_SCALE(snd_cx88_db_scale
, -6300, 100, 0);
648 static const struct snd_kcontrol_new snd_cx88_volume
= {
649 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
650 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
|
651 SNDRV_CTL_ELEM_ACCESS_TLV_READ
,
652 .name
= "Analog-TV Volume",
653 .info
= snd_cx88_volume_info
,
654 .get
= snd_cx88_volume_get
,
655 .put
= snd_cx88_volume_put
,
656 .tlv
.p
= snd_cx88_db_scale
,
659 static int snd_cx88_switch_get(struct snd_kcontrol
*kcontrol
,
660 struct snd_ctl_elem_value
*value
)
662 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
663 struct cx88_core
*core
= chip
->core
;
664 u32 bit
= kcontrol
->private_value
;
666 value
->value
.integer
.value
[0] = !(cx_read(AUD_VOL_CTL
) & bit
);
670 static int snd_cx88_switch_put(struct snd_kcontrol
*kcontrol
,
671 struct snd_ctl_elem_value
*value
)
673 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
674 struct cx88_core
*core
= chip
->core
;
675 u32 bit
= kcontrol
->private_value
;
679 spin_lock_irq(&chip
->reg_lock
);
680 vol
= cx_read(AUD_VOL_CTL
);
681 if (value
->value
.integer
.value
[0] != !(vol
& bit
)) {
683 cx_swrite(SHADOW_AUD_VOL_CTL
, AUD_VOL_CTL
, vol
);
684 /* Pass mute onto any WM8775 */
685 if ((core
->board
.audio_chip
== V4L2_IDENT_WM8775
) &&
687 wm8775_s_ctrl(core
, V4L2_CID_AUDIO_MUTE
, 0 != (vol
& bit
));
690 spin_unlock_irq(&chip
->reg_lock
);
694 static const struct snd_kcontrol_new snd_cx88_dac_switch
= {
695 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
696 .name
= "Audio-Out Switch",
697 .info
= snd_ctl_boolean_mono_info
,
698 .get
= snd_cx88_switch_get
,
699 .put
= snd_cx88_switch_put
,
700 .private_value
= (1<<8),
703 static const struct snd_kcontrol_new snd_cx88_source_switch
= {
704 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
705 .name
= "Analog-TV Switch",
706 .info
= snd_ctl_boolean_mono_info
,
707 .get
= snd_cx88_switch_get
,
708 .put
= snd_cx88_switch_put
,
709 .private_value
= (1<<6),
712 static int snd_cx88_alc_get(struct snd_kcontrol
*kcontrol
,
713 struct snd_ctl_elem_value
*value
)
715 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
716 struct cx88_core
*core
= chip
->core
;
719 val
= wm8775_g_ctrl(core
, V4L2_CID_AUDIO_LOUDNESS
);
720 value
->value
.integer
.value
[0] = val
? 1 : 0;
724 static int snd_cx88_alc_put(struct snd_kcontrol
*kcontrol
,
725 struct snd_ctl_elem_value
*value
)
727 snd_cx88_card_t
*chip
= snd_kcontrol_chip(kcontrol
);
728 struct cx88_core
*core
= chip
->core
;
729 struct v4l2_control client_ctl
;
731 memset(&client_ctl
, 0, sizeof(client_ctl
));
732 client_ctl
.value
= 0 != value
->value
.integer
.value
[0];
733 client_ctl
.id
= V4L2_CID_AUDIO_LOUDNESS
;
734 call_hw(core
, WM8775_GID
, core
, s_ctrl
, &client_ctl
);
739 static struct snd_kcontrol_new snd_cx88_alc_switch
= {
740 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
741 .name
= "Line-In ALC Switch",
742 .info
= snd_ctl_boolean_mono_info
,
743 .get
= snd_cx88_alc_get
,
744 .put
= snd_cx88_alc_put
,
747 /****************************************************************************
748 Basic Flow for Sound Devices
749 ****************************************************************************/
752 * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio
753 * Only boards with eeprom and byte 1 at eeprom=1 have it
756 static const struct pci_device_id cx88_audio_pci_tbl
[] = {
757 {0x14f1,0x8801,PCI_ANY_ID
,PCI_ANY_ID
,0,0,0},
758 {0x14f1,0x8811,PCI_ANY_ID
,PCI_ANY_ID
,0,0,0},
761 MODULE_DEVICE_TABLE(pci
, cx88_audio_pci_tbl
);
764 * Chip-specific destructor
767 static int snd_cx88_free(snd_cx88_card_t
*chip
)
771 free_irq(chip
->irq
, chip
);
773 cx88_core_put(chip
->core
,chip
->pci
);
775 pci_disable_device(chip
->pci
);
780 * Component Destructor
782 static void snd_cx88_dev_free(struct snd_card
* card
)
784 snd_cx88_card_t
*chip
= card
->private_data
;
791 * Alsa Constructor - Component probe
795 static int snd_cx88_create(struct snd_card
*card
, struct pci_dev
*pci
,
796 snd_cx88_card_t
**rchip
,
797 struct cx88_core
**core_ptr
)
799 snd_cx88_card_t
*chip
;
800 struct cx88_core
*core
;
802 unsigned char pci_lat
;
806 err
= pci_enable_device(pci
);
812 chip
= card
->private_data
;
814 core
= cx88_core_get(pci
);
820 if (!pci_dma_supported(pci
,DMA_BIT_MASK(32))) {
821 dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core
->name
);
823 cx88_core_put(core
, pci
);
832 spin_lock_init(&chip
->reg_lock
);
837 err
= request_irq(chip
->pci
->irq
, cx8801_irq
,
838 IRQF_SHARED
| IRQF_DISABLED
, chip
->core
->name
, chip
);
840 dprintk(0, "%s: can't get IRQ %d\n",
841 chip
->core
->name
, chip
->pci
->irq
);
846 pci_read_config_byte(pci
, PCI_LATENCY_TIMER
, &pci_lat
);
848 dprintk(1,"ALSA %s/%i: found at %s, rev: %d, irq: %d, "
849 "latency: %d, mmio: 0x%llx\n", core
->name
, devno
,
850 pci_name(pci
), pci
->revision
, pci
->irq
,
851 pci_lat
, (unsigned long long)pci_resource_start(pci
,0));
853 chip
->irq
= pci
->irq
;
854 synchronize_irq(chip
->irq
);
856 snd_card_set_dev(card
, &pci
->dev
);
864 static int cx88_audio_initdev(struct pci_dev
*pci
,
865 const struct pci_device_id
*pci_id
)
867 struct snd_card
*card
;
868 snd_cx88_card_t
*chip
;
869 struct cx88_core
*core
= NULL
;
872 if (devno
>= SNDRV_CARDS
)
875 if (!enable
[devno
]) {
880 err
= snd_card_create(index
[devno
], id
[devno
], THIS_MODULE
,
881 sizeof(snd_cx88_card_t
), &card
);
885 card
->private_free
= snd_cx88_dev_free
;
887 err
= snd_cx88_create(card
, pci
, &chip
, &core
);
891 err
= snd_cx88_pcm(chip
, 0, "CX88 Digital");
895 err
= snd_ctl_add(card
, snd_ctl_new1(&snd_cx88_volume
, chip
));
898 err
= snd_ctl_add(card
, snd_ctl_new1(&snd_cx88_dac_switch
, chip
));
901 err
= snd_ctl_add(card
, snd_ctl_new1(&snd_cx88_source_switch
, chip
));
905 /* If there's a wm8775 then add a Line-In ALC switch */
906 if (core
->board
.audio_chip
== V4L2_IDENT_WM8775
)
907 snd_ctl_add(card
, snd_ctl_new1(&snd_cx88_alc_switch
, chip
));
909 strcpy (card
->driver
, "CX88x");
910 sprintf(card
->shortname
, "Conexant CX%x", pci
->device
);
911 sprintf(card
->longname
, "%s at %#llx",
912 card
->shortname
,(unsigned long long)pci_resource_start(pci
, 0));
913 strcpy (card
->mixername
, "CX88");
915 dprintk (0, "%s/%i: ALSA support for cx2388x boards\n",
918 err
= snd_card_register(card
);
921 pci_set_drvdata(pci
,card
);
933 static void cx88_audio_finidev(struct pci_dev
*pci
)
935 struct cx88_audio_dev
*card
= pci_get_drvdata(pci
);
937 snd_card_free((void *)card
);
939 pci_set_drvdata(pci
, NULL
);
945 * PCI driver definition
948 static struct pci_driver cx88_audio_pci_driver
= {
949 .name
= "cx88_audio",
950 .id_table
= cx88_audio_pci_tbl
,
951 .probe
= cx88_audio_initdev
,
952 .remove
= cx88_audio_finidev
,
955 /****************************************************************************
957 ****************************************************************************/
962 static int __init
cx88_audio_init(void)
964 printk(KERN_INFO
"cx2388x alsa driver version %s loaded\n",
966 return pci_register_driver(&cx88_audio_pci_driver
);
972 static void __exit
cx88_audio_fini(void)
974 pci_unregister_driver(&cx88_audio_pci_driver
);
977 module_init(cx88_audio_init
);
978 module_exit(cx88_audio_fini
);