blob: 80c8883e54b5c6ef853d5e8560da3424044376e3 [file] [log] [blame]
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -02001/*
2 *
3 * Support for audio capture
4 * PCI function #1 of the cx2388x.
5 *
Trent Piepho05b27232007-08-24 01:06:34 -03006 * (c) 2007 Trent Piepho <xyzzy@speakeasy.org>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -02007 * (c) 2005,2006 Ricardo Cerqueira <v4l@cerqueira.org>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03008 * (c) 2005 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -02009 * Based on a dummy cx88 module by Gerd Knorr <kraxel@bytesex.org>
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020010 * Based on dummy.c by Jaroslav Kysela <perex@perex.cz>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020011 *
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.
16 *
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.
21 *
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.
25 */
26
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/device.h>
30#include <linux/interrupt.h>
Trent Piephof6210c92007-08-24 01:06:36 -030031#include <linux/vmalloc.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070032#include <linux/dma-mapping.h>
Trent Piepho19453bc2007-08-18 22:54:49 -030033#include <linux/pci.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070034
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020035#include <asm/delay.h>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020036#include <sound/core.h>
37#include <sound/pcm.h>
38#include <sound/pcm_params.h>
39#include <sound/control.h>
40#include <sound/initval.h>
Trent Piephobbaccc02007-09-06 23:02:25 -030041#include <sound/tlv.h>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020042
43#include "cx88.h"
44#include "cx88-reg.h"
45
46#define dprintk(level,fmt, arg...) if (debug >= level) \
47 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg)
48
49#define dprintk_core(level,fmt, arg...) if (debug >= level) \
50 printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg)
51
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020052/****************************************************************************
53 Data type declarations - Can be moded to a header file later
54 ****************************************************************************/
55
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020056struct cx88_audio_dev {
57 struct cx88_core *core;
58 struct cx88_dmaqueue q;
59
60 /* pci i/o */
61 struct pci_dev *pci;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020062
63 /* audio controls */
64 int irq;
65
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +010066 struct snd_card *card;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020067
68 spinlock_t reg_lock;
Trent Piepho05b27232007-08-24 01:06:34 -030069 atomic_t count;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020070
71 unsigned int dma_size;
72 unsigned int period_size;
73 unsigned int num_periods;
74
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -030075 struct videobuf_dmabuf *dma_risc;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020076
Trent Piepho05b27232007-08-24 01:06:34 -030077 struct cx88_buffer *buf;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020078
Trent Piepho05b27232007-08-24 01:06:34 -030079 struct snd_pcm_substream *substream;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020080};
81typedef struct cx88_audio_dev snd_cx88_card_t;
82
83
84
Trent Piepho54ac0052007-09-06 23:02:23 -030085
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020086/****************************************************************************
87 Module global static vars
88 ****************************************************************************/
89
90static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
91static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
92static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020093
94module_param_array(enable, bool, NULL, 0444);
95MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled.");
96
97module_param_array(index, int, NULL, 0444);
98MODULE_PARM_DESC(index, "Index value for cx88x capture interface(s).");
99
100
101/****************************************************************************
102 Module macros
103 ****************************************************************************/
104
105MODULE_DESCRIPTION("ALSA driver module for cx2388x based TV cards");
106MODULE_AUTHOR("Ricardo Cerqueira");
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -0300107MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200108MODULE_LICENSE("GPL");
109MODULE_SUPPORTED_DEVICE("{{Conexant,23881},"
110 "{{Conexant,23882},"
111 "{{Conexant,23883}");
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -0200112static unsigned int debug;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200113module_param(debug,int,0644);
114MODULE_PARM_DESC(debug,"enable debug messages");
115
116/****************************************************************************
117 Module specific funtions
118 ****************************************************************************/
119
120/*
121 * BOARD Specific: Sets audio DMA
122 */
123
Mauro Carvalho Chehabbe8a82d2006-02-07 06:49:14 -0200124static int _cx88_start_audio_dma(snd_cx88_card_t *chip)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200125{
126 struct cx88_buffer *buf = chip->buf;
127 struct cx88_core *core=chip->core;
128 struct sram_channel *audio_ch = &cx88_sram_channels[SRAM_CH25];
129
Trent Piepho59fd8f82007-08-18 22:09:42 -0300130 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
131 cx_clear(MO_AUD_DMACNTRL, 0x11);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200132
133 /* setup fifo + format - out channel */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300134 cx88_sram_channel_setup(chip->core, audio_ch, buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200135
136 /* sets bpl size */
137 cx_write(MO_AUDD_LNGTH, buf->bpl);
138
139 /* reset counter */
Trent Piepho05b27232007-08-24 01:06:34 -0300140 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
141 atomic_set(&chip->count, 0);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200142
Trent Piepho05b27232007-08-24 01:06:34 -0300143 dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d "
144 "byte buffer\n", buf->bpl, cx_read(audio_ch->cmds_start + 8)>>1,
Trent Piepho59fd8f82007-08-18 22:09:42 -0300145 chip->num_periods, buf->bpl * chip->num_periods);
146
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200147 /* Enables corresponding bits at AUD_INT_STAT */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300148 cx_write(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
149 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
150
151 /* Clean any pending interrupt bits already set */
152 cx_write(MO_AUD_INTSTAT, ~0);
153
154 /* enable audio irqs */
155 cx_set(MO_PCI_INTMSK, chip->core->pci_irqmask | PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200156
157 /* start dma */
158 cx_set(MO_DEV_CNTRL2, (1<<5)); /* Enables Risc Processor */
159 cx_set(MO_AUD_DMACNTRL, 0x11); /* audio downstream FIFO and RISC enable */
160
161 if (debug)
Trent Piepho59fd8f82007-08-18 22:09:42 -0300162 cx88_sram_channel_dump(chip->core, audio_ch);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200163
164 return 0;
165}
166
167/*
168 * BOARD Specific: Resets audio DMA
169 */
Mauro Carvalho Chehabbe8a82d2006-02-07 06:49:14 -0200170static int _cx88_stop_audio_dma(snd_cx88_card_t *chip)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200171{
172 struct cx88_core *core=chip->core;
173 dprintk(1, "Stopping audio DMA\n");
174
175 /* stop dma */
176 cx_clear(MO_AUD_DMACNTRL, 0x11);
177
178 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300179 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
Trent Piepho59fd8f82007-08-18 22:09:42 -0300180 cx_clear(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
181 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200182
183 if (debug)
184 cx88_sram_channel_dump(chip->core, &cx88_sram_channels[SRAM_CH25]);
185
186 return 0;
187}
188
Trent Piepho05b27232007-08-24 01:06:34 -0300189#define MAX_IRQ_LOOP 50
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200190
191/*
192 * BOARD Specific: IRQ dma bits
193 */
194static char *cx88_aud_irqs[32] = {
195 "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */
196 NULL, /* reserved */
197 "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */
198 NULL, /* reserved */
199 "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */
200 NULL, /* reserved */
201 "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */
202 NULL, /* reserved */
203 "opc_err", "par_err", "rip_err", /* 16-18 */
204 "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */
205};
206
207/*
208 * BOARD Specific: Threats IRQ audio specific calls
209 */
210static void cx8801_aud_irq(snd_cx88_card_t *chip)
211{
212 struct cx88_core *core = chip->core;
213 u32 status, mask;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200214
215 status = cx_read(MO_AUD_INTSTAT);
216 mask = cx_read(MO_AUD_INTMSK);
Trent Piepho05b27232007-08-24 01:06:34 -0300217 if (0 == (status & mask))
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200218 return;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200219 cx_write(MO_AUD_INTSTAT, status);
220 if (debug > 1 || (status & mask & ~0xff))
221 cx88_print_irqbits(core->name, "irq aud",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300222 cx88_aud_irqs, ARRAY_SIZE(cx88_aud_irqs),
223 status, mask);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200224 /* risc op code error */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300225 if (status & AUD_INT_OPC_ERR) {
Trent Piepho05b27232007-08-24 01:06:34 -0300226 printk(KERN_WARNING "%s/1: Audio risc op code error\n",core->name);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200227 cx_clear(MO_AUD_DMACNTRL, 0x11);
228 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH25]);
229 }
Trent Piepho05b27232007-08-24 01:06:34 -0300230 if (status & AUD_INT_DN_SYNC) {
231 dprintk(1, "Downstream sync error\n");
232 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
233 return;
234 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200235 /* risc1 downstream */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300236 if (status & AUD_INT_DN_RISCI1) {
Trent Piepho05b27232007-08-24 01:06:34 -0300237 atomic_set(&chip->count, cx_read(MO_AUDD_GPCNT));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200238 snd_pcm_period_elapsed(chip->substream);
239 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200240 /* FIXME: Any other status should deserve a special handling? */
241}
242
243/*
244 * BOARD Specific: Handles IRQ calls
245 */
David Howells7d12e782006-10-05 14:55:46 +0100246static irqreturn_t cx8801_irq(int irq, void *dev_id)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200247{
248 snd_cx88_card_t *chip = dev_id;
249 struct cx88_core *core = chip->core;
250 u32 status;
251 int loop, handled = 0;
252
253 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300254 status = cx_read(MO_PCI_INTSTAT) &
255 (core->pci_irqmask | PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200256 if (0 == status)
257 goto out;
Trent Piepho05b27232007-08-24 01:06:34 -0300258 dprintk(3, "cx8801_irq loop %d/%d, status %x\n",
259 loop, MAX_IRQ_LOOP, status);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200260 handled = 1;
261 cx_write(MO_PCI_INTSTAT, status);
262
Trent Piepho5ba862b2007-08-18 07:02:26 -0300263 if (status & core->pci_irqmask)
264 cx88_core_irq(core, status);
Trent Piepho05b27232007-08-24 01:06:34 -0300265 if (status & PCI_INT_AUDINT)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200266 cx8801_aud_irq(chip);
Trent Piepho05b27232007-08-24 01:06:34 -0300267 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200268
269 if (MAX_IRQ_LOOP == loop) {
Trent Piepho05b27232007-08-24 01:06:34 -0300270 printk(KERN_ERR
271 "%s/1: IRQ loop detected, disabling interrupts\n",
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200272 core->name);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300273 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200274 }
275
276 out:
277 return IRQ_RETVAL(handled);
278}
279
280
281static int dsp_buffer_free(snd_cx88_card_t *chip)
282{
283 BUG_ON(!chip->dma_size);
284
285 dprintk(2,"Freeing buffer\n");
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300286 videobuf_sg_dma_unmap(&chip->pci->dev, chip->dma_risc);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300287 videobuf_dma_free(chip->dma_risc);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200288 btcx_riscmem_free(chip->pci,&chip->buf->risc);
289 kfree(chip->buf);
290
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300291 chip->dma_risc = NULL;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200292 chip->dma_size = 0;
293
Trent Piepho05b27232007-08-24 01:06:34 -0300294 return 0;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200295}
296
297/****************************************************************************
298 ALSA PCM Interface
299 ****************************************************************************/
300
301/*
302 * Digital hardware definition
303 */
Trent Piepho05b27232007-08-24 01:06:34 -0300304#define DEFAULT_FIFO_SIZE 4096
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100305static struct snd_pcm_hardware snd_cx88_digital_hw = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200306 .info = SNDRV_PCM_INFO_MMAP |
307 SNDRV_PCM_INFO_INTERLEAVED |
308 SNDRV_PCM_INFO_BLOCK_TRANSFER |
309 SNDRV_PCM_INFO_MMAP_VALID,
310 .formats = SNDRV_PCM_FMTBIT_S16_LE,
311
312 .rates = SNDRV_PCM_RATE_48000,
313 .rate_min = 48000,
314 .rate_max = 48000,
Trent Piepho5a5b3b52007-08-18 21:01:40 -0300315 .channels_min = 2,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200316 .channels_max = 2,
Trent Piepho05b27232007-08-24 01:06:34 -0300317 /* Analog audio output will be full of clicks and pops if there
318 are not exactly four lines in the SRAM FIFO buffer. */
319 .period_bytes_min = DEFAULT_FIFO_SIZE/4,
320 .period_bytes_max = DEFAULT_FIFO_SIZE/4,
321 .periods_min = 1,
322 .periods_max = 1024,
323 .buffer_bytes_max = (1024*1024),
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200324};
325
326/*
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200327 * audio pcm capture open callback
328 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100329static int snd_cx88_pcm_open(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200330{
331 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100332 struct snd_pcm_runtime *runtime = substream->runtime;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200333 int err;
334
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300335 if (!chip) {
336 printk(KERN_ERR "BUG: cx88 can't find device struct."
337 " Can't proceed with open\n");
338 return -ENODEV;
339 }
340
Trent Piepho05b27232007-08-24 01:06:34 -0300341 err = snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200342 if (err < 0)
343 goto _error;
344
345 chip->substream = substream;
346
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200347 runtime->hw = snd_cx88_digital_hw;
348
Trent Piepho05b27232007-08-24 01:06:34 -0300349 if (cx88_sram_channels[SRAM_CH25].fifo_size != DEFAULT_FIFO_SIZE) {
350 unsigned int bpl = cx88_sram_channels[SRAM_CH25].fifo_size / 4;
351 bpl &= ~7; /* must be multiple of 8 */
352 runtime->hw.period_bytes_min = bpl;
353 runtime->hw.period_bytes_max = bpl;
354 }
355
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200356 return 0;
357_error:
358 dprintk(1,"Error opening PCM!\n");
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200359 return err;
360}
361
362/*
363 * audio close callback
364 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100365static int snd_cx88_close(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200366{
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200367 return 0;
368}
369
370/*
371 * hw_params callback
372 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100373static int snd_cx88_hw_params(struct snd_pcm_substream * substream,
374 struct snd_pcm_hw_params * hw_params)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200375{
376 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300377 struct videobuf_dmabuf *dma;
378
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200379 struct cx88_buffer *buf;
Trent Piepho05b27232007-08-24 01:06:34 -0300380 int ret;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200381
382 if (substream->runtime->dma_area) {
383 dsp_buffer_free(chip);
384 substream->runtime->dma_area = NULL;
385 }
386
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200387 chip->period_size = params_period_bytes(hw_params);
388 chip->num_periods = params_periods(hw_params);
389 chip->dma_size = chip->period_size * params_periods(hw_params);
390
391 BUG_ON(!chip->dma_size);
Trent Piepho05b27232007-08-24 01:06:34 -0300392 BUG_ON(chip->num_periods & (chip->num_periods-1));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200393
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300394 buf = videobuf_sg_alloc(sizeof(*buf));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200395 if (NULL == buf)
396 return -ENOMEM;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200397
398 buf->vb.memory = V4L2_MEMORY_MMAP;
Trent Piepho05b27232007-08-24 01:06:34 -0300399 buf->vb.field = V4L2_FIELD_NONE;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200400 buf->vb.width = chip->period_size;
Trent Piepho05b27232007-08-24 01:06:34 -0300401 buf->bpl = chip->period_size;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200402 buf->vb.height = chip->num_periods;
403 buf->vb.size = chip->dma_size;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200404
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300405 dma = videobuf_to_dma(&buf->vb);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300406 videobuf_dma_init(dma);
407 ret = videobuf_dma_init_kernel(dma, PCI_DMA_FROMDEVICE,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200408 (PAGE_ALIGN(buf->vb.size) >> PAGE_SHIFT));
Trent Piepho05b27232007-08-24 01:06:34 -0300409 if (ret < 0)
410 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200411
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300412 ret = videobuf_sg_dma_map(&chip->pci->dev, dma);
Trent Piepho05b27232007-08-24 01:06:34 -0300413 if (ret < 0)
414 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200415
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300416 ret = cx88_risc_databuffer(chip->pci, &buf->risc, dma->sglist,
Trent Piepho05b27232007-08-24 01:06:34 -0300417 buf->vb.width, buf->vb.height, 1);
418 if (ret < 0)
419 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200420
Trent Piepho05b27232007-08-24 01:06:34 -0300421 /* Loop back to start of program */
422 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP|RISC_IRQ1|RISC_CNT_INC);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200423 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
424
Brandon Philips0fc06862007-11-06 20:02:36 -0300425 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200426
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200427 chip->buf = buf;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300428 chip->dma_risc = dma;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200429
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300430 substream->runtime->dma_area = chip->dma_risc->vmalloc;
Trent Piephof6210c92007-08-24 01:06:36 -0300431 substream->runtime->dma_bytes = chip->dma_size;
432 substream->runtime->dma_addr = 0;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200433 return 0;
Trent Piepho05b27232007-08-24 01:06:34 -0300434
435error:
436 kfree(buf);
437 return ret;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200438}
439
440/*
441 * hw free callback
442 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100443static int snd_cx88_hw_free(struct snd_pcm_substream * substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200444{
445
446 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
447
448 if (substream->runtime->dma_area) {
449 dsp_buffer_free(chip);
450 substream->runtime->dma_area = NULL;
451 }
452
453 return 0;
454}
455
456/*
457 * prepare callback
458 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100459static int snd_cx88_prepare(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200460{
461 return 0;
462}
463
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200464/*
465 * trigger callback
466 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100467static int snd_cx88_card_trigger(struct snd_pcm_substream *substream, int cmd)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200468{
469 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
470 int err;
471
Trent Piepho05b27232007-08-24 01:06:34 -0300472 /* Local interrupts are already disabled by ALSA */
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200473 spin_lock(&chip->reg_lock);
474
475 switch (cmd) {
476 case SNDRV_PCM_TRIGGER_START:
477 err=_cx88_start_audio_dma(chip);
478 break;
479 case SNDRV_PCM_TRIGGER_STOP:
480 err=_cx88_stop_audio_dma(chip);
481 break;
482 default:
483 err=-EINVAL;
484 break;
485 }
486
487 spin_unlock(&chip->reg_lock);
488
489 return err;
490}
491
492/*
493 * pointer callback
494 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100495static snd_pcm_uframes_t snd_cx88_pointer(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200496{
497 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100498 struct snd_pcm_runtime *runtime = substream->runtime;
Trent Piepho05b27232007-08-24 01:06:34 -0300499 u16 count;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200500
Trent Piepho05b27232007-08-24 01:06:34 -0300501 count = atomic_read(&chip->count);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200502
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300503// dprintk(2, "%s - count %d (+%u), period %d, frame %lu\n", __func__,
Trent Piepho05b27232007-08-24 01:06:34 -0300504// count, new, count & (runtime->periods-1),
505// runtime->period_size * (count & (runtime->periods-1)));
506 return runtime->period_size * (count & (runtime->periods-1));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200507}
508
509/*
Trent Piephof6210c92007-08-24 01:06:36 -0300510 * page callback (needed for mmap)
511 */
512static struct page *snd_cx88_page(struct snd_pcm_substream *substream,
513 unsigned long offset)
514{
515 void *pageptr = substream->runtime->dma_area + offset;
516 return vmalloc_to_page(pageptr);
517}
518
519/*
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200520 * operators
521 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100522static struct snd_pcm_ops snd_cx88_pcm_ops = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200523 .open = snd_cx88_pcm_open,
524 .close = snd_cx88_close,
525 .ioctl = snd_pcm_lib_ioctl,
526 .hw_params = snd_cx88_hw_params,
527 .hw_free = snd_cx88_hw_free,
528 .prepare = snd_cx88_prepare,
529 .trigger = snd_cx88_card_trigger,
530 .pointer = snd_cx88_pointer,
Trent Piephof6210c92007-08-24 01:06:36 -0300531 .page = snd_cx88_page,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200532};
533
534/*
535 * create a PCM device
536 */
537static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name)
538{
539 int err;
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100540 struct snd_pcm *pcm;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200541
542 err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
543 if (err < 0)
544 return err;
545 pcm->private_data = chip;
546 strcpy(pcm->name, name);
547 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cx88_pcm_ops);
548
549 return 0;
550}
551
552/****************************************************************************
553 CONTROL INTERFACE
554 ****************************************************************************/
Trent Piepho54ac0052007-09-06 23:02:23 -0300555static int snd_cx88_volume_info(struct snd_kcontrol *kcontrol,
556 struct snd_ctl_elem_info *info)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200557{
558 info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Trent Piepho82896f22007-09-06 23:02:23 -0300559 info->count = 2;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200560 info->value.integer.min = 0;
561 info->value.integer.max = 0x3f;
562
563 return 0;
564}
565
Trent Piepho54ac0052007-09-06 23:02:23 -0300566static int snd_cx88_volume_get(struct snd_kcontrol *kcontrol,
567 struct snd_ctl_elem_value *value)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200568{
569 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
570 struct cx88_core *core=chip->core;
Trent Piepho82896f22007-09-06 23:02:23 -0300571 int vol = 0x3f - (cx_read(AUD_VOL_CTL) & 0x3f),
572 bal = cx_read(AUD_BAL_CTL);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200573
Trent Piepho82896f22007-09-06 23:02:23 -0300574 value->value.integer.value[(bal & 0x40) ? 0 : 1] = vol;
575 vol -= (bal & 0x3f);
576 value->value.integer.value[(bal & 0x40) ? 1 : 0] = vol < 0 ? 0 : vol;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200577
578 return 0;
579}
580
581/* OK - TODO: test it */
Trent Piepho54ac0052007-09-06 23:02:23 -0300582static int snd_cx88_volume_put(struct snd_kcontrol *kcontrol,
583 struct snd_ctl_elem_value *value)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200584{
585 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
586 struct cx88_core *core=chip->core;
Trent Piepho82896f22007-09-06 23:02:23 -0300587 int v, b;
588 int changed = 0;
589 u32 old;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200590
Trent Piepho82896f22007-09-06 23:02:23 -0300591 b = value->value.integer.value[1] - value->value.integer.value[0];
592 if (b < 0) {
593 v = 0x3f - value->value.integer.value[0];
594 b = (-b) | 0x40;
595 } else {
596 v = 0x3f - value->value.integer.value[1];
597 }
Trent Piepho05b27232007-08-24 01:06:34 -0300598 /* Do we really know this will always be called with IRQs on? */
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200599 spin_lock_irq(&chip->reg_lock);
Trent Piepho82896f22007-09-06 23:02:23 -0300600 old = cx_read(AUD_VOL_CTL);
601 if (v != (old & 0x3f)) {
602 cx_write(AUD_VOL_CTL, (old & ~0x3f) | v);
603 changed = 1;
604 }
605 if (cx_read(AUD_BAL_CTL) != b) {
606 cx_write(AUD_BAL_CTL, b);
607 changed = 1;
608 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200609 spin_unlock_irq(&chip->reg_lock);
610
Trent Piepho82896f22007-09-06 23:02:23 -0300611 return changed;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200612}
613
Trent Piephobbaccc02007-09-06 23:02:25 -0300614static const DECLARE_TLV_DB_SCALE(snd_cx88_db_scale, -6300, 100, 0);
615
Trent Piepho54ac0052007-09-06 23:02:23 -0300616static struct snd_kcontrol_new snd_cx88_volume = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200617 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Trent Piephobbaccc02007-09-06 23:02:25 -0300618 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
619 SNDRV_CTL_ELEM_ACCESS_TLV_READ,
Trent Piepho54ac0052007-09-06 23:02:23 -0300620 .name = "Playback Volume",
621 .info = snd_cx88_volume_info,
622 .get = snd_cx88_volume_get,
623 .put = snd_cx88_volume_put,
Trent Piephobbaccc02007-09-06 23:02:25 -0300624 .tlv.p = snd_cx88_db_scale,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200625};
626
Trent Piepho54ac0052007-09-06 23:02:23 -0300627static int snd_cx88_switch_get(struct snd_kcontrol *kcontrol,
628 struct snd_ctl_elem_value *value)
629{
630 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
631 struct cx88_core *core = chip->core;
632 u32 bit = kcontrol->private_value;
633
634 value->value.integer.value[0] = !(cx_read(AUD_VOL_CTL) & bit);
635 return 0;
636}
637
638static int snd_cx88_switch_put(struct snd_kcontrol *kcontrol,
639 struct snd_ctl_elem_value *value)
640{
641 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
642 struct cx88_core *core = chip->core;
643 u32 bit = kcontrol->private_value;
644 int ret = 0;
645 u32 vol;
646
647 spin_lock_irq(&chip->reg_lock);
648 vol = cx_read(AUD_VOL_CTL);
649 if (value->value.integer.value[0] != !(vol & bit)) {
650 vol ^= bit;
651 cx_write(AUD_VOL_CTL, vol);
652 ret = 1;
653 }
654 spin_unlock_irq(&chip->reg_lock);
655 return ret;
656}
657
658static struct snd_kcontrol_new snd_cx88_dac_switch = {
659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
660 .name = "Playback Switch",
661 .info = snd_ctl_boolean_mono_info,
662 .get = snd_cx88_switch_get,
663 .put = snd_cx88_switch_put,
664 .private_value = (1<<8),
665};
666
667static struct snd_kcontrol_new snd_cx88_source_switch = {
668 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
669 .name = "Capture Switch",
670 .info = snd_ctl_boolean_mono_info,
671 .get = snd_cx88_switch_get,
672 .put = snd_cx88_switch_put,
673 .private_value = (1<<6),
674};
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200675
676/****************************************************************************
677 Basic Flow for Sound Devices
678 ****************************************************************************/
679
680/*
681 * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio
682 * Only boards with eeprom and byte 1 at eeprom=1 have it
683 */
684
Henrik Kretzschmar396c9b92006-04-24 15:59:04 +0200685static struct pci_device_id cx88_audio_pci_tbl[] __devinitdata = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200686 {0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
687 {0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
688 {0, }
689};
690MODULE_DEVICE_TABLE(pci, cx88_audio_pci_tbl);
691
692/*
693 * Chip-specific destructor
694 */
695
696static int snd_cx88_free(snd_cx88_card_t *chip)
697{
698
Jeff Garzikf000fd82008-04-22 13:50:34 +0200699 if (chip->irq >= 0)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200700 free_irq(chip->irq, chip);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200701
702 cx88_core_put(chip->core,chip->pci);
703
704 pci_disable_device(chip->pci);
705 return 0;
706}
707
708/*
709 * Component Destructor
710 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100711static void snd_cx88_dev_free(struct snd_card * card)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200712{
713 snd_cx88_card_t *chip = card->private_data;
714
715 snd_cx88_free(chip);
716}
717
718
719/*
720 * Alsa Constructor - Component probe
721 */
722
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -0200723static int devno;
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100724static int __devinit snd_cx88_create(struct snd_card *card,
725 struct pci_dev *pci,
726 snd_cx88_card_t **rchip)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200727{
728 snd_cx88_card_t *chip;
729 struct cx88_core *core;
730 int err;
Trent Piepho19453bc2007-08-18 22:54:49 -0300731 unsigned char pci_lat;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200732
733 *rchip = NULL;
734
735 err = pci_enable_device(pci);
736 if (err < 0)
737 return err;
738
739 pci_set_master(pci);
740
741 chip = (snd_cx88_card_t *) card->private_data;
742
743 core = cx88_core_get(pci);
Duncan Sands31dcbf92006-03-14 12:12:39 -0300744 if (NULL == core) {
745 err = -EINVAL;
746 kfree (chip);
747 return err;
748 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200749
Mauro Carvalho Chehabaaa40cb2007-03-30 10:58:01 -0300750 if (!pci_dma_supported(pci,DMA_32BIT_MASK)) {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200751 dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name);
752 err = -EIO;
753 cx88_core_put(core,pci);
754 return err;
755 }
756
757
758 /* pci init */
759 chip->card = card;
760 chip->pci = pci;
761 chip->irq = -1;
762 spin_lock_init(&chip->reg_lock);
763
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200764 chip->core = core;
765
766 /* get irq */
767 err = request_irq(chip->pci->irq, cx8801_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700768 IRQF_SHARED | IRQF_DISABLED, chip->core->name, chip);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200769 if (err < 0) {
770 dprintk(0, "%s: can't get IRQ %d\n",
771 chip->core->name, chip->pci->irq);
772 return err;
773 }
774
775 /* print pci info */
Trent Piepho19453bc2007-08-18 22:54:49 -0300776 pci_read_config_byte(pci, PCI_LATENCY_TIMER, &pci_lat);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200777
778 dprintk(1,"ALSA %s/%i: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700779 "latency: %d, mmio: 0x%llx\n", core->name, devno,
Trent Piepho19453bc2007-08-18 22:54:49 -0300780 pci_name(pci), pci->revision, pci->irq,
781 pci_lat, (unsigned long long)pci_resource_start(pci,0));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200782
783 chip->irq = pci->irq;
784 synchronize_irq(chip->irq);
785
786 snd_card_set_dev(card, &pci->dev);
787
788 *rchip = chip;
789
790 return 0;
791}
792
793static int __devinit cx88_audio_initdev(struct pci_dev *pci,
794 const struct pci_device_id *pci_id)
795{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100796 struct snd_card *card;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200797 snd_cx88_card_t *chip;
798 int err;
799
800 if (devno >= SNDRV_CARDS)
801 return (-ENODEV);
802
803 if (!enable[devno]) {
804 ++devno;
805 return (-ENOENT);
806 }
807
808 card = snd_card_new(index[devno], id[devno], THIS_MODULE, sizeof(snd_cx88_card_t));
809 if (!card)
810 return (-ENOMEM);
811
812 card->private_free = snd_cx88_dev_free;
813
814 err = snd_cx88_create(card, pci, &chip);
815 if (err < 0)
816 return (err);
817
818 err = snd_cx88_pcm(chip, 0, "CX88 Digital");
Trent Piepho82896f22007-09-06 23:02:23 -0300819 if (err < 0)
820 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200821
Trent Piepho54ac0052007-09-06 23:02:23 -0300822 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_volume, chip));
823 if (err < 0)
824 goto error;
825 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_dac_switch, chip));
826 if (err < 0)
827 goto error;
828 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_source_switch, chip));
Trent Piepho82896f22007-09-06 23:02:23 -0300829 if (err < 0)
830 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200831
832 strcpy (card->driver, "CX88x");
833 sprintf(card->shortname, "Conexant CX%x", pci->device);
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700834 sprintf(card->longname, "%s at %#llx",
835 card->shortname,(unsigned long long)pci_resource_start(pci, 0));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200836 strcpy (card->mixername, "CX88");
837
838 dprintk (0, "%s/%i: ALSA support for cx2388x boards\n",
839 card->driver,devno);
840
841 err = snd_card_register(card);
Trent Piepho82896f22007-09-06 23:02:23 -0300842 if (err < 0)
843 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200844 pci_set_drvdata(pci,card);
845
846 devno++;
847 return 0;
Trent Piepho82896f22007-09-06 23:02:23 -0300848
849error:
850 snd_card_free(card);
851 return err;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200852}
853/*
854 * ALSA destructor
855 */
856static void __devexit cx88_audio_finidev(struct pci_dev *pci)
857{
858 struct cx88_audio_dev *card = pci_get_drvdata(pci);
859
860 snd_card_free((void *)card);
861
862 pci_set_drvdata(pci, NULL);
863
864 devno--;
865}
866
867/*
868 * PCI driver definition
869 */
870
871static struct pci_driver cx88_audio_pci_driver = {
872 .name = "cx88_audio",
873 .id_table = cx88_audio_pci_tbl,
874 .probe = cx88_audio_initdev,
875 .remove = cx88_audio_finidev,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200876};
877
878/****************************************************************************
879 LINUX MODULE INIT
880 ****************************************************************************/
881
882/*
883 * module init
884 */
885static int cx88_audio_init(void)
886{
887 printk(KERN_INFO "cx2388x alsa driver version %d.%d.%d loaded\n",
888 (CX88_VERSION_CODE >> 16) & 0xff,
889 (CX88_VERSION_CODE >> 8) & 0xff,
890 CX88_VERSION_CODE & 0xff);
891#ifdef SNAPSHOT
892 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
893 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
894#endif
895 return pci_register_driver(&cx88_audio_pci_driver);
896}
897
898/*
899 * module remove
900 */
901static void cx88_audio_fini(void)
902{
903
904 pci_unregister_driver(&cx88_audio_pci_driver);
905}
906
907module_init(cx88_audio_init);
908module_exit(cx88_audio_fini);
909
910/* ----------------------------------------------------------- */
911/*
912 * Local variables:
913 * c-basic-offset: 8
914 * End:
915 */