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>
35 #include <asm/delay.h>
36 #include <sound/driver.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>
47 #define dprintk(level,fmt, arg...) if (debug >= level) \
48 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg)
50 #define dprintk_core(level,fmt, arg...) if (debug >= level) \
51 printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg)
53 /****************************************************************************
54 Data type declarations - Can be moded to a header file later
55 ****************************************************************************/
57 struct cx88_audio_dev {
58 struct cx88_core *core;
59 struct cx88_dmaqueue q;
67 struct snd_card *card;
72 unsigned int dma_size;
73 unsigned int period_size;
74 unsigned int num_periods;
76 struct videobuf_dmabuf *dma_risc;
78 struct cx88_buffer *buf;
80 struct snd_pcm_substream *substream;
82 typedef struct cx88_audio_dev snd_cx88_card_t;
87 /****************************************************************************
88 Module global static vars
89 ****************************************************************************/
91 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
92 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
93 static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
95 module_param_array(enable, bool, NULL, 0444);
96 MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled.");
98 module_param_array(index, int, NULL, 0444);
99 MODULE_PARM_DESC(index, "Index value for cx88x capture interface(s).");
102 /****************************************************************************
104 ****************************************************************************/
106 MODULE_DESCRIPTION("ALSA driver module for cx2388x based TV cards");
107 MODULE_AUTHOR("Ricardo Cerqueira");
108 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
109 MODULE_LICENSE("GPL");
110 MODULE_SUPPORTED_DEVICE("{{Conexant,23881},"
112 "{{Conexant,23883}");
113 static unsigned int debug;
114 module_param(debug,int,0644);
115 MODULE_PARM_DESC(debug,"enable debug messages");
117 /****************************************************************************
118 Module specific funtions
119 ****************************************************************************/
122 * BOARD Specific: Sets audio DMA
125 static int _cx88_start_audio_dma(snd_cx88_card_t *chip)
127 struct cx88_buffer *buf = chip->buf;
128 struct cx88_core *core=chip->core;
129 struct sram_channel *audio_ch = &cx88_sram_channels[SRAM_CH25];
131 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
132 cx_clear(MO_AUD_DMACNTRL, 0x11);
134 /* setup fifo + format - out channel */
135 cx88_sram_channel_setup(chip->core, audio_ch, buf->bpl, buf->risc.dma);
138 cx_write(MO_AUDD_LNGTH, buf->bpl);
141 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
142 atomic_set(&chip->count, 0);
144 dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d "
145 "byte buffer\n", buf->bpl, cx_read(audio_ch->cmds_start + 8)>>1,
146 chip->num_periods, buf->bpl * chip->num_periods);
148 /* Enables corresponding bits at AUD_INT_STAT */
149 cx_write(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
150 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
152 /* Clean any pending interrupt bits already set */
153 cx_write(MO_AUD_INTSTAT, ~0);
155 /* enable audio irqs */
156 cx_set(MO_PCI_INTMSK, chip->core->pci_irqmask | PCI_INT_AUDINT);
159 cx_set(MO_DEV_CNTRL2, (1<<5)); /* Enables Risc Processor */
160 cx_set(MO_AUD_DMACNTRL, 0x11); /* audio downstream FIFO and RISC enable */
163 cx88_sram_channel_dump(chip->core, audio_ch);
169 * BOARD Specific: Resets audio DMA
171 static int _cx88_stop_audio_dma(snd_cx88_card_t *chip)
173 struct cx88_core *core=chip->core;
174 dprintk(1, "Stopping audio DMA\n");
177 cx_clear(MO_AUD_DMACNTRL, 0x11);
180 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
181 cx_clear(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
182 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
185 cx88_sram_channel_dump(chip->core, &cx88_sram_channels[SRAM_CH25]);
190 #define MAX_IRQ_LOOP 50
193 * BOARD Specific: IRQ dma bits
195 static char *cx88_aud_irqs[32] = {
196 "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */
198 "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */
200 "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */
202 "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */
204 "opc_err", "par_err", "rip_err", /* 16-18 */
205 "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */
209 * BOARD Specific: Threats IRQ audio specific calls
211 static void cx8801_aud_irq(snd_cx88_card_t *chip)
213 struct cx88_core *core = chip->core;
216 status = cx_read(MO_AUD_INTSTAT);
217 mask = cx_read(MO_AUD_INTMSK);
218 if (0 == (status & mask))
220 cx_write(MO_AUD_INTSTAT, status);
221 if (debug > 1 || (status & mask & ~0xff))
222 cx88_print_irqbits(core->name, "irq aud",
223 cx88_aud_irqs, ARRAY_SIZE(cx88_aud_irqs),
225 /* risc op code error */
226 if (status & AUD_INT_OPC_ERR) {
227 printk(KERN_WARNING "%s/1: Audio risc op code error\n",core->name);
228 cx_clear(MO_AUD_DMACNTRL, 0x11);
229 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH25]);
231 if (status & AUD_INT_DN_SYNC) {
232 dprintk(1, "Downstream sync error\n");
233 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
236 /* risc1 downstream */
237 if (status & AUD_INT_DN_RISCI1) {
238 atomic_set(&chip->count, cx_read(MO_AUDD_GPCNT));
239 snd_pcm_period_elapsed(chip->substream);
241 /* FIXME: Any other status should deserve a special handling? */
245 * BOARD Specific: Handles IRQ calls
247 static irqreturn_t cx8801_irq(int irq, void *dev_id)
249 snd_cx88_card_t *chip = dev_id;
250 struct cx88_core *core = chip->core;
252 int loop, handled = 0;
254 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
255 status = cx_read(MO_PCI_INTSTAT) &
256 (core->pci_irqmask | PCI_INT_AUDINT);
259 dprintk(3, "cx8801_irq loop %d/%d, status %x\n",
260 loop, MAX_IRQ_LOOP, status);
262 cx_write(MO_PCI_INTSTAT, status);
264 if (status & core->pci_irqmask)
265 cx88_core_irq(core, status);
266 if (status & PCI_INT_AUDINT)
267 cx8801_aud_irq(chip);
270 if (MAX_IRQ_LOOP == loop) {
272 "%s/1: IRQ loop detected, disabling interrupts\n",
274 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
278 return IRQ_RETVAL(handled);
282 static int dsp_buffer_free(snd_cx88_card_t *chip)
284 BUG_ON(!chip->dma_size);
286 dprintk(2,"Freeing buffer\n");
287 videobuf_pci_dma_unmap(chip->pci, chip->dma_risc);
288 videobuf_dma_free(chip->dma_risc);
289 btcx_riscmem_free(chip->pci,&chip->buf->risc);
292 chip->dma_risc = NULL;
298 /****************************************************************************
300 ****************************************************************************/
303 * Digital hardware definition
305 #define DEFAULT_FIFO_SIZE 4096
306 static struct snd_pcm_hardware snd_cx88_digital_hw = {
307 .info = SNDRV_PCM_INFO_MMAP |
308 SNDRV_PCM_INFO_INTERLEAVED |
309 SNDRV_PCM_INFO_BLOCK_TRANSFER |
310 SNDRV_PCM_INFO_MMAP_VALID,
311 .formats = SNDRV_PCM_FMTBIT_S16_LE,
313 .rates = SNDRV_PCM_RATE_48000,
318 /* Analog audio output will be full of clicks and pops if there
319 are not exactly four lines in the SRAM FIFO buffer. */
320 .period_bytes_min = DEFAULT_FIFO_SIZE/4,
321 .period_bytes_max = DEFAULT_FIFO_SIZE/4,
324 .buffer_bytes_max = (1024*1024),
328 * audio pcm capture open callback
330 static int snd_cx88_pcm_open(struct snd_pcm_substream *substream)
332 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
333 struct snd_pcm_runtime *runtime = substream->runtime;
336 err = snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS);
340 chip->substream = substream;
342 runtime->hw = snd_cx88_digital_hw;
344 if (cx88_sram_channels[SRAM_CH25].fifo_size != DEFAULT_FIFO_SIZE) {
345 unsigned int bpl = cx88_sram_channels[SRAM_CH25].fifo_size / 4;
346 bpl &= ~7; /* must be multiple of 8 */
347 runtime->hw.period_bytes_min = bpl;
348 runtime->hw.period_bytes_max = bpl;
353 dprintk(1,"Error opening PCM!\n");
358 * audio close callback
360 static int snd_cx88_close(struct snd_pcm_substream *substream)
368 static int snd_cx88_hw_params(struct snd_pcm_substream * substream,
369 struct snd_pcm_hw_params * hw_params)
371 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
372 struct videobuf_dmabuf *dma;
374 struct cx88_buffer *buf;
377 if (substream->runtime->dma_area) {
378 dsp_buffer_free(chip);
379 substream->runtime->dma_area = NULL;
382 chip->period_size = params_period_bytes(hw_params);
383 chip->num_periods = params_periods(hw_params);
384 chip->dma_size = chip->period_size * params_periods(hw_params);
386 BUG_ON(!chip->dma_size);
387 BUG_ON(chip->num_periods & (chip->num_periods-1));
389 buf = videobuf_pci_alloc(sizeof(*buf));
393 buf->vb.memory = V4L2_MEMORY_MMAP;
394 buf->vb.field = V4L2_FIELD_NONE;
395 buf->vb.width = chip->period_size;
396 buf->bpl = chip->period_size;
397 buf->vb.height = chip->num_periods;
398 buf->vb.size = chip->dma_size;
400 dma=videobuf_to_dma(&buf->vb);
401 videobuf_dma_init(dma);
402 ret = videobuf_dma_init_kernel(dma, PCI_DMA_FROMDEVICE,
403 (PAGE_ALIGN(buf->vb.size) >> PAGE_SHIFT));
407 ret = videobuf_pci_dma_map(chip->pci,dma);
411 ret = cx88_risc_databuffer(chip->pci, &buf->risc, dma->sglist,
412 buf->vb.width, buf->vb.height, 1);
416 /* Loop back to start of program */
417 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP|RISC_IRQ1|RISC_CNT_INC);
418 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
420 buf->vb.state = STATE_PREPARED;
423 chip->dma_risc = dma;
425 substream->runtime->dma_area = chip->dma_risc->vmalloc;
426 substream->runtime->dma_bytes = chip->dma_size;
427 substream->runtime->dma_addr = 0;
438 static int snd_cx88_hw_free(struct snd_pcm_substream * substream)
441 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
443 if (substream->runtime->dma_area) {
444 dsp_buffer_free(chip);
445 substream->runtime->dma_area = NULL;
454 static int snd_cx88_prepare(struct snd_pcm_substream *substream)
462 static int snd_cx88_card_trigger(struct snd_pcm_substream *substream, int cmd)
464 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
467 /* Local interrupts are already disabled by ALSA */
468 spin_lock(&chip->reg_lock);
471 case SNDRV_PCM_TRIGGER_START:
472 err=_cx88_start_audio_dma(chip);
474 case SNDRV_PCM_TRIGGER_STOP:
475 err=_cx88_stop_audio_dma(chip);
482 spin_unlock(&chip->reg_lock);
490 static snd_pcm_uframes_t snd_cx88_pointer(struct snd_pcm_substream *substream)
492 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
493 struct snd_pcm_runtime *runtime = substream->runtime;
496 count = atomic_read(&chip->count);
498 // dprintk(2, "%s - count %d (+%u), period %d, frame %lu\n", __FUNCTION__,
499 // count, new, count & (runtime->periods-1),
500 // runtime->period_size * (count & (runtime->periods-1)));
501 return runtime->period_size * (count & (runtime->periods-1));
505 * page callback (needed for mmap)
507 static struct page *snd_cx88_page(struct snd_pcm_substream *substream,
508 unsigned long offset)
510 void *pageptr = substream->runtime->dma_area + offset;
511 return vmalloc_to_page(pageptr);
517 static struct snd_pcm_ops snd_cx88_pcm_ops = {
518 .open = snd_cx88_pcm_open,
519 .close = snd_cx88_close,
520 .ioctl = snd_pcm_lib_ioctl,
521 .hw_params = snd_cx88_hw_params,
522 .hw_free = snd_cx88_hw_free,
523 .prepare = snd_cx88_prepare,
524 .trigger = snd_cx88_card_trigger,
525 .pointer = snd_cx88_pointer,
526 .page = snd_cx88_page,
530 * create a PCM device
532 static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name)
537 err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
540 pcm->private_data = chip;
541 strcpy(pcm->name, name);
542 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cx88_pcm_ops);
547 /****************************************************************************
549 ****************************************************************************/
550 static int snd_cx88_volume_info(struct snd_kcontrol *kcontrol,
551 struct snd_ctl_elem_info *info)
553 info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
555 info->value.integer.min = 0;
556 info->value.integer.max = 0x3f;
561 static int snd_cx88_volume_get(struct snd_kcontrol *kcontrol,
562 struct snd_ctl_elem_value *value)
564 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
565 struct cx88_core *core=chip->core;
566 int vol = 0x3f - (cx_read(AUD_VOL_CTL) & 0x3f),
567 bal = cx_read(AUD_BAL_CTL);
569 value->value.integer.value[(bal & 0x40) ? 0 : 1] = vol;
571 value->value.integer.value[(bal & 0x40) ? 1 : 0] = vol < 0 ? 0 : vol;
576 /* OK - TODO: test it */
577 static int snd_cx88_volume_put(struct snd_kcontrol *kcontrol,
578 struct snd_ctl_elem_value *value)
580 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
581 struct cx88_core *core=chip->core;
586 b = value->value.integer.value[1] - value->value.integer.value[0];
588 v = 0x3f - value->value.integer.value[0];
591 v = 0x3f - value->value.integer.value[1];
593 /* Do we really know this will always be called with IRQs on? */
594 spin_lock_irq(&chip->reg_lock);
595 old = cx_read(AUD_VOL_CTL);
596 if (v != (old & 0x3f)) {
597 cx_write(AUD_VOL_CTL, (old & ~0x3f) | v);
600 if (cx_read(AUD_BAL_CTL) != b) {
601 cx_write(AUD_BAL_CTL, b);
604 spin_unlock_irq(&chip->reg_lock);
609 static const DECLARE_TLV_DB_SCALE(snd_cx88_db_scale, -6300, 100, 0);
611 static struct snd_kcontrol_new snd_cx88_volume = {
612 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
613 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
614 SNDRV_CTL_ELEM_ACCESS_TLV_READ,
615 .name = "Playback Volume",
616 .info = snd_cx88_volume_info,
617 .get = snd_cx88_volume_get,
618 .put = snd_cx88_volume_put,
619 .tlv.p = snd_cx88_db_scale,
622 static int snd_cx88_switch_get(struct snd_kcontrol *kcontrol,
623 struct snd_ctl_elem_value *value)
625 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
626 struct cx88_core *core = chip->core;
627 u32 bit = kcontrol->private_value;
629 value->value.integer.value[0] = !(cx_read(AUD_VOL_CTL) & bit);
633 static int snd_cx88_switch_put(struct snd_kcontrol *kcontrol,
634 struct snd_ctl_elem_value *value)
636 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
637 struct cx88_core *core = chip->core;
638 u32 bit = kcontrol->private_value;
642 spin_lock_irq(&chip->reg_lock);
643 vol = cx_read(AUD_VOL_CTL);
644 if (value->value.integer.value[0] != !(vol & bit)) {
646 cx_write(AUD_VOL_CTL, vol);
649 spin_unlock_irq(&chip->reg_lock);
653 static struct snd_kcontrol_new snd_cx88_dac_switch = {
654 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
655 .name = "Playback Switch",
656 .info = snd_ctl_boolean_mono_info,
657 .get = snd_cx88_switch_get,
658 .put = snd_cx88_switch_put,
659 .private_value = (1<<8),
662 static struct snd_kcontrol_new snd_cx88_source_switch = {
663 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
664 .name = "Capture Switch",
665 .info = snd_ctl_boolean_mono_info,
666 .get = snd_cx88_switch_get,
667 .put = snd_cx88_switch_put,
668 .private_value = (1<<6),
671 /****************************************************************************
672 Basic Flow for Sound Devices
673 ****************************************************************************/
676 * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio
677 * Only boards with eeprom and byte 1 at eeprom=1 have it
680 static struct pci_device_id cx88_audio_pci_tbl[] __devinitdata = {
681 {0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
682 {0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
685 MODULE_DEVICE_TABLE(pci, cx88_audio_pci_tbl);
688 * Chip-specific destructor
691 static int snd_cx88_free(snd_cx88_card_t *chip)
695 synchronize_irq(chip->irq);
696 free_irq(chip->irq, chip);
699 cx88_core_put(chip->core,chip->pci);
701 pci_disable_device(chip->pci);
706 * Component Destructor
708 static void snd_cx88_dev_free(struct snd_card * card)
710 snd_cx88_card_t *chip = card->private_data;
717 * Alsa Constructor - Component probe
721 static int __devinit snd_cx88_create(struct snd_card *card,
723 snd_cx88_card_t **rchip)
725 snd_cx88_card_t *chip;
726 struct cx88_core *core;
728 unsigned char pci_lat;
732 err = pci_enable_device(pci);
738 chip = (snd_cx88_card_t *) card->private_data;
740 core = cx88_core_get(pci);
747 if (!pci_dma_supported(pci,DMA_32BIT_MASK)) {
748 dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name);
750 cx88_core_put(core,pci);
759 spin_lock_init(&chip->reg_lock);
764 err = request_irq(chip->pci->irq, cx8801_irq,
765 IRQF_SHARED | IRQF_DISABLED, chip->core->name, chip);
767 dprintk(0, "%s: can't get IRQ %d\n",
768 chip->core->name, chip->pci->irq);
773 pci_read_config_byte(pci, PCI_LATENCY_TIMER, &pci_lat);
775 dprintk(1,"ALSA %s/%i: found at %s, rev: %d, irq: %d, "
776 "latency: %d, mmio: 0x%llx\n", core->name, devno,
777 pci_name(pci), pci->revision, pci->irq,
778 pci_lat, (unsigned long long)pci_resource_start(pci,0));
780 chip->irq = pci->irq;
781 synchronize_irq(chip->irq);
783 snd_card_set_dev(card, &pci->dev);
790 static int __devinit cx88_audio_initdev(struct pci_dev *pci,
791 const struct pci_device_id *pci_id)
793 struct snd_card *card;
794 snd_cx88_card_t *chip;
797 if (devno >= SNDRV_CARDS)
800 if (!enable[devno]) {
805 card = snd_card_new(index[devno], id[devno], THIS_MODULE, sizeof(snd_cx88_card_t));
809 card->private_free = snd_cx88_dev_free;
811 err = snd_cx88_create(card, pci, &chip);
815 err = snd_cx88_pcm(chip, 0, "CX88 Digital");
819 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_volume, chip));
822 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_dac_switch, chip));
825 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_source_switch, chip));
829 strcpy (card->driver, "CX88x");
830 sprintf(card->shortname, "Conexant CX%x", pci->device);
831 sprintf(card->longname, "%s at %#llx",
832 card->shortname,(unsigned long long)pci_resource_start(pci, 0));
833 strcpy (card->mixername, "CX88");
835 dprintk (0, "%s/%i: ALSA support for cx2388x boards\n",
838 err = snd_card_register(card);
841 pci_set_drvdata(pci,card);
853 static void __devexit cx88_audio_finidev(struct pci_dev *pci)
855 struct cx88_audio_dev *card = pci_get_drvdata(pci);
857 snd_card_free((void *)card);
859 pci_set_drvdata(pci, NULL);
865 * PCI driver definition
868 static struct pci_driver cx88_audio_pci_driver = {
869 .name = "cx88_audio",
870 .id_table = cx88_audio_pci_tbl,
871 .probe = cx88_audio_initdev,
872 .remove = cx88_audio_finidev,
875 /****************************************************************************
877 ****************************************************************************/
882 static int cx88_audio_init(void)
884 printk(KERN_INFO "cx2388x alsa driver version %d.%d.%d loaded\n",
885 (CX88_VERSION_CODE >> 16) & 0xff,
886 (CX88_VERSION_CODE >> 8) & 0xff,
887 CX88_VERSION_CODE & 0xff);
889 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
890 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
892 return pci_register_driver(&cx88_audio_pci_driver);
898 static void cx88_audio_fini(void)
901 pci_unregister_driver(&cx88_audio_pci_driver);
904 module_init(cx88_audio_init);
905 module_exit(cx88_audio_fini);
907 /* ----------------------------------------------------------- */