blob: a2d688ebed90ff978d96c96e0e83e1f994b66b47 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070035
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020036#include <asm/delay.h>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020037#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>
Trent Piephobbaccc02007-09-06 23:02:25 -030042#include <sound/tlv.h>
Lawrence Rust69518032011-02-06 17:46:12 -030043#include <media/wm8775.h>
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020044
45#include "cx88.h"
46#include "cx88-reg.h"
47
48#define dprintk(level,fmt, arg...) if (debug >= level) \
49 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg)
50
51#define dprintk_core(level,fmt, arg...) if (debug >= level) \
52 printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg)
53
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020054/****************************************************************************
55 Data type declarations - Can be moded to a header file later
56 ****************************************************************************/
57
Laurent Pinchartfecfede2010-05-11 10:36:31 -030058struct cx88_audio_buffer {
59 unsigned int bpl;
60 struct btcx_riscmem risc;
61 struct videobuf_dmabuf dma;
62};
63
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020064struct cx88_audio_dev {
65 struct cx88_core *core;
66 struct cx88_dmaqueue q;
67
68 /* pci i/o */
69 struct pci_dev *pci;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020070
71 /* audio controls */
72 int irq;
73
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +010074 struct snd_card *card;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020075
76 spinlock_t reg_lock;
Trent Piepho05b27232007-08-24 01:06:34 -030077 atomic_t count;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020078
79 unsigned int dma_size;
80 unsigned int period_size;
81 unsigned int num_periods;
82
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -030083 struct videobuf_dmabuf *dma_risc;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020084
Laurent Pinchartfecfede2010-05-11 10:36:31 -030085 struct cx88_audio_buffer *buf;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020086
Trent Piepho05b27232007-08-24 01:06:34 -030087 struct snd_pcm_substream *substream;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020088};
89typedef struct cx88_audio_dev snd_cx88_card_t;
90
91
92
93/****************************************************************************
94 Module global static vars
95 ****************************************************************************/
96
97static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
lawrence rust2e4e98e2010-08-25 09:50:20 -030098static const char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -020099static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200100
101module_param_array(enable, bool, NULL, 0444);
102MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled.");
103
104module_param_array(index, int, NULL, 0444);
105MODULE_PARM_DESC(index, "Index value for cx88x capture interface(s).");
106
107
108/****************************************************************************
109 Module macros
110 ****************************************************************************/
111
112MODULE_DESCRIPTION("ALSA driver module for cx2388x based TV cards");
113MODULE_AUTHOR("Ricardo Cerqueira");
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -0300114MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200115MODULE_LICENSE("GPL");
116MODULE_SUPPORTED_DEVICE("{{Conexant,23881},"
117 "{{Conexant,23882},"
118 "{{Conexant,23883}");
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -0200119static unsigned int debug;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200120module_param(debug,int,0644);
121MODULE_PARM_DESC(debug,"enable debug messages");
122
123/****************************************************************************
124 Module specific funtions
125 ****************************************************************************/
126
127/*
128 * BOARD Specific: Sets audio DMA
129 */
130
Mauro Carvalho Chehabbe8a82d2006-02-07 06:49:14 -0200131static int _cx88_start_audio_dma(snd_cx88_card_t *chip)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200132{
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300133 struct cx88_audio_buffer *buf = chip->buf;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200134 struct cx88_core *core=chip->core;
lawrence rust2e4e98e2010-08-25 09:50:20 -0300135 const struct sram_channel *audio_ch = &cx88_sram_channels[SRAM_CH25];
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200136
Trent Piepho59fd8f82007-08-18 22:09:42 -0300137 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
138 cx_clear(MO_AUD_DMACNTRL, 0x11);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200139
140 /* setup fifo + format - out channel */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300141 cx88_sram_channel_setup(chip->core, audio_ch, buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200142
143 /* sets bpl size */
144 cx_write(MO_AUDD_LNGTH, buf->bpl);
145
146 /* reset counter */
Trent Piepho05b27232007-08-24 01:06:34 -0300147 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
148 atomic_set(&chip->count, 0);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200149
Trent Piepho05b27232007-08-24 01:06:34 -0300150 dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d "
151 "byte buffer\n", buf->bpl, cx_read(audio_ch->cmds_start + 8)>>1,
Trent Piepho59fd8f82007-08-18 22:09:42 -0300152 chip->num_periods, buf->bpl * chip->num_periods);
153
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200154 /* Enables corresponding bits at AUD_INT_STAT */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300155 cx_write(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
156 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
157
158 /* Clean any pending interrupt bits already set */
159 cx_write(MO_AUD_INTSTAT, ~0);
160
161 /* enable audio irqs */
162 cx_set(MO_PCI_INTMSK, chip->core->pci_irqmask | PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200163
164 /* start dma */
165 cx_set(MO_DEV_CNTRL2, (1<<5)); /* Enables Risc Processor */
166 cx_set(MO_AUD_DMACNTRL, 0x11); /* audio downstream FIFO and RISC enable */
167
168 if (debug)
Trent Piepho59fd8f82007-08-18 22:09:42 -0300169 cx88_sram_channel_dump(chip->core, audio_ch);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200170
171 return 0;
172}
173
174/*
175 * BOARD Specific: Resets audio DMA
176 */
Mauro Carvalho Chehabbe8a82d2006-02-07 06:49:14 -0200177static int _cx88_stop_audio_dma(snd_cx88_card_t *chip)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200178{
179 struct cx88_core *core=chip->core;
180 dprintk(1, "Stopping audio DMA\n");
181
182 /* stop dma */
183 cx_clear(MO_AUD_DMACNTRL, 0x11);
184
185 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300186 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
Trent Piepho59fd8f82007-08-18 22:09:42 -0300187 cx_clear(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
188 AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200189
190 if (debug)
191 cx88_sram_channel_dump(chip->core, &cx88_sram_channels[SRAM_CH25]);
192
193 return 0;
194}
195
Trent Piepho05b27232007-08-24 01:06:34 -0300196#define MAX_IRQ_LOOP 50
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200197
198/*
199 * BOARD Specific: IRQ dma bits
200 */
lawrence rust2e4e98e2010-08-25 09:50:20 -0300201static const char *cx88_aud_irqs[32] = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200202 "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */
203 NULL, /* reserved */
204 "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */
205 NULL, /* reserved */
206 "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */
207 NULL, /* reserved */
208 "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */
209 NULL, /* reserved */
210 "opc_err", "par_err", "rip_err", /* 16-18 */
211 "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */
212};
213
214/*
215 * BOARD Specific: Threats IRQ audio specific calls
216 */
217static void cx8801_aud_irq(snd_cx88_card_t *chip)
218{
219 struct cx88_core *core = chip->core;
220 u32 status, mask;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200221
222 status = cx_read(MO_AUD_INTSTAT);
223 mask = cx_read(MO_AUD_INTMSK);
Trent Piepho05b27232007-08-24 01:06:34 -0300224 if (0 == (status & mask))
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200225 return;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200226 cx_write(MO_AUD_INTSTAT, status);
227 if (debug > 1 || (status & mask & ~0xff))
228 cx88_print_irqbits(core->name, "irq aud",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300229 cx88_aud_irqs, ARRAY_SIZE(cx88_aud_irqs),
230 status, mask);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200231 /* risc op code error */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300232 if (status & AUD_INT_OPC_ERR) {
Trent Piepho05b27232007-08-24 01:06:34 -0300233 printk(KERN_WARNING "%s/1: Audio risc op code error\n",core->name);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200234 cx_clear(MO_AUD_DMACNTRL, 0x11);
235 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH25]);
236 }
Trent Piepho05b27232007-08-24 01:06:34 -0300237 if (status & AUD_INT_DN_SYNC) {
238 dprintk(1, "Downstream sync error\n");
239 cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET);
240 return;
241 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200242 /* risc1 downstream */
Trent Piepho59fd8f82007-08-18 22:09:42 -0300243 if (status & AUD_INT_DN_RISCI1) {
Trent Piepho05b27232007-08-24 01:06:34 -0300244 atomic_set(&chip->count, cx_read(MO_AUDD_GPCNT));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200245 snd_pcm_period_elapsed(chip->substream);
246 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200247 /* FIXME: Any other status should deserve a special handling? */
248}
249
250/*
251 * BOARD Specific: Handles IRQ calls
252 */
David Howells7d12e782006-10-05 14:55:46 +0100253static irqreturn_t cx8801_irq(int irq, void *dev_id)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200254{
255 snd_cx88_card_t *chip = dev_id;
256 struct cx88_core *core = chip->core;
257 u32 status;
258 int loop, handled = 0;
259
260 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300261 status = cx_read(MO_PCI_INTSTAT) &
262 (core->pci_irqmask | PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200263 if (0 == status)
264 goto out;
Trent Piepho05b27232007-08-24 01:06:34 -0300265 dprintk(3, "cx8801_irq loop %d/%d, status %x\n",
266 loop, MAX_IRQ_LOOP, status);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200267 handled = 1;
268 cx_write(MO_PCI_INTSTAT, status);
269
Trent Piepho5ba862b2007-08-18 07:02:26 -0300270 if (status & core->pci_irqmask)
271 cx88_core_irq(core, status);
Trent Piepho05b27232007-08-24 01:06:34 -0300272 if (status & PCI_INT_AUDINT)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200273 cx8801_aud_irq(chip);
Trent Piepho05b27232007-08-24 01:06:34 -0300274 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200275
276 if (MAX_IRQ_LOOP == loop) {
Trent Piepho05b27232007-08-24 01:06:34 -0300277 printk(KERN_ERR
278 "%s/1: IRQ loop detected, disabling interrupts\n",
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200279 core->name);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300280 cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200281 }
282
283 out:
284 return IRQ_RETVAL(handled);
285}
286
287
288static int dsp_buffer_free(snd_cx88_card_t *chip)
289{
290 BUG_ON(!chip->dma_size);
291
292 dprintk(2,"Freeing buffer\n");
Laurent Pinchart95268402010-05-11 10:36:30 -0300293 videobuf_dma_unmap(&chip->pci->dev, chip->dma_risc);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300294 videobuf_dma_free(chip->dma_risc);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200295 btcx_riscmem_free(chip->pci,&chip->buf->risc);
296 kfree(chip->buf);
297
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300298 chip->dma_risc = NULL;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200299 chip->dma_size = 0;
300
Trent Piepho05b27232007-08-24 01:06:34 -0300301 return 0;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200302}
303
304/****************************************************************************
305 ALSA PCM Interface
306 ****************************************************************************/
307
308/*
309 * Digital hardware definition
310 */
Trent Piepho05b27232007-08-24 01:06:34 -0300311#define DEFAULT_FIFO_SIZE 4096
lawrence rust2e4e98e2010-08-25 09:50:20 -0300312static const struct snd_pcm_hardware snd_cx88_digital_hw = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200313 .info = SNDRV_PCM_INFO_MMAP |
314 SNDRV_PCM_INFO_INTERLEAVED |
315 SNDRV_PCM_INFO_BLOCK_TRANSFER |
316 SNDRV_PCM_INFO_MMAP_VALID,
317 .formats = SNDRV_PCM_FMTBIT_S16_LE,
318
319 .rates = SNDRV_PCM_RATE_48000,
320 .rate_min = 48000,
321 .rate_max = 48000,
Trent Piepho5a5b3b52007-08-18 21:01:40 -0300322 .channels_min = 2,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200323 .channels_max = 2,
Trent Piepho05b27232007-08-24 01:06:34 -0300324 /* Analog audio output will be full of clicks and pops if there
325 are not exactly four lines in the SRAM FIFO buffer. */
326 .period_bytes_min = DEFAULT_FIFO_SIZE/4,
327 .period_bytes_max = DEFAULT_FIFO_SIZE/4,
328 .periods_min = 1,
329 .periods_max = 1024,
330 .buffer_bytes_max = (1024*1024),
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200331};
332
333/*
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200334 * audio pcm capture open callback
335 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100336static int snd_cx88_pcm_open(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200337{
338 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100339 struct snd_pcm_runtime *runtime = substream->runtime;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200340 int err;
341
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300342 if (!chip) {
343 printk(KERN_ERR "BUG: cx88 can't find device struct."
344 " Can't proceed with open\n");
345 return -ENODEV;
346 }
347
Trent Piepho05b27232007-08-24 01:06:34 -0300348 err = snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200349 if (err < 0)
350 goto _error;
351
352 chip->substream = substream;
353
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200354 runtime->hw = snd_cx88_digital_hw;
355
Trent Piepho05b27232007-08-24 01:06:34 -0300356 if (cx88_sram_channels[SRAM_CH25].fifo_size != DEFAULT_FIFO_SIZE) {
357 unsigned int bpl = cx88_sram_channels[SRAM_CH25].fifo_size / 4;
358 bpl &= ~7; /* must be multiple of 8 */
359 runtime->hw.period_bytes_min = bpl;
360 runtime->hw.period_bytes_max = bpl;
361 }
362
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200363 return 0;
364_error:
365 dprintk(1,"Error opening PCM!\n");
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200366 return err;
367}
368
369/*
370 * audio close callback
371 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100372static int snd_cx88_close(struct snd_pcm_substream *substream)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200373{
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200374 return 0;
375}
376
377/*
378 * hw_params callback
379 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100380static int snd_cx88_hw_params(struct snd_pcm_substream * substream,
381 struct snd_pcm_hw_params * hw_params)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200382{
383 snd_cx88_card_t *chip = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300384 struct videobuf_dmabuf *dma;
385
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300386 struct cx88_audio_buffer *buf;
Trent Piepho05b27232007-08-24 01:06:34 -0300387 int ret;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200388
389 if (substream->runtime->dma_area) {
390 dsp_buffer_free(chip);
391 substream->runtime->dma_area = NULL;
392 }
393
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200394 chip->period_size = params_period_bytes(hw_params);
395 chip->num_periods = params_periods(hw_params);
396 chip->dma_size = chip->period_size * params_periods(hw_params);
397
398 BUG_ON(!chip->dma_size);
Trent Piepho05b27232007-08-24 01:06:34 -0300399 BUG_ON(chip->num_periods & (chip->num_periods-1));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200400
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300401 buf = kzalloc(sizeof(*buf), GFP_KERNEL);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200402 if (NULL == buf)
403 return -ENOMEM;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200404
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300405 buf->bpl = chip->period_size;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200406
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300407 dma = &buf->dma;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300408 videobuf_dma_init(dma);
409 ret = videobuf_dma_init_kernel(dma, PCI_DMA_FROMDEVICE,
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300410 (PAGE_ALIGN(chip->dma_size) >> PAGE_SHIFT));
Trent Piepho05b27232007-08-24 01:06:34 -0300411 if (ret < 0)
412 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200413
Laurent Pinchart95268402010-05-11 10:36:30 -0300414 ret = videobuf_dma_map(&chip->pci->dev, dma);
Trent Piepho05b27232007-08-24 01:06:34 -0300415 if (ret < 0)
416 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200417
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300418 ret = cx88_risc_databuffer(chip->pci, &buf->risc, dma->sglist,
Laurent Pinchartfecfede2010-05-11 10:36:31 -0300419 chip->period_size, chip->num_periods, 1);
Trent Piepho05b27232007-08-24 01:06:34 -0300420 if (ret < 0)
421 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200422
Trent Piepho05b27232007-08-24 01:06:34 -0300423 /* Loop back to start of program */
424 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP|RISC_IRQ1|RISC_CNT_INC);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200425 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
426
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
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300430 substream->runtime->dma_area = chip->dma_risc->vaddr;
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 */
lawrence rust2e4e98e2010-08-25 09:50:20 -0300537static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, const char *name)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200538{
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
Lawrence Rust69518032011-02-06 17:46:12 -0300581static void snd_cx88_wm8775_volume_put(struct snd_kcontrol *kcontrol,
582 struct snd_ctl_elem_value *value)
583{
584 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
585 struct cx88_core *core = chip->core;
586 struct v4l2_control client_ctl;
587 int left = value->value.integer.value[0];
588 int right = value->value.integer.value[1];
589 int v, b;
590
591 memset(&client_ctl, 0, sizeof(client_ctl));
592
593 /* Pass volume & balance onto any WM8775 */
594 if (left >= right) {
595 v = left << 10;
596 b = left ? (0x8000 * right) / left : 0x8000;
597 } else {
598 v = right << 10;
599 b = right ? 0xffff - (0x8000 * left) / right : 0x8000;
600 }
601 client_ctl.value = v;
602 client_ctl.id = V4L2_CID_AUDIO_VOLUME;
603 call_hw(core, WM8775_GID, core, s_ctrl, &client_ctl);
604
605 client_ctl.value = b;
606 client_ctl.id = V4L2_CID_AUDIO_BALANCE;
607 call_hw(core, WM8775_GID, core, s_ctrl, &client_ctl);
608}
609
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200610/* OK - TODO: test it */
Trent Piepho54ac0052007-09-06 23:02:23 -0300611static int snd_cx88_volume_put(struct snd_kcontrol *kcontrol,
612 struct snd_ctl_elem_value *value)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200613{
614 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
615 struct cx88_core *core=chip->core;
Clemens Ladischcca80b92010-02-22 06:45:07 -0300616 int left, right, v, b;
Trent Piepho82896f22007-09-06 23:02:23 -0300617 int changed = 0;
618 u32 old;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200619
Lawrence Rust69518032011-02-06 17:46:12 -0300620 if (core->board.audio_chip == V4L2_IDENT_WM8775)
621 snd_cx88_wm8775_volume_put(kcontrol, value);
622
Clemens Ladischcca80b92010-02-22 06:45:07 -0300623 left = value->value.integer.value[0] & 0x3f;
624 right = value->value.integer.value[1] & 0x3f;
625 b = right - left;
Trent Piepho82896f22007-09-06 23:02:23 -0300626 if (b < 0) {
Lawrence Rust69518032011-02-06 17:46:12 -0300627 v = 0x3f - left;
628 b = (-b) | 0x40;
Trent Piepho82896f22007-09-06 23:02:23 -0300629 } else {
Lawrence Rust69518032011-02-06 17:46:12 -0300630 v = 0x3f - right;
Trent Piepho82896f22007-09-06 23:02:23 -0300631 }
Trent Piepho05b27232007-08-24 01:06:34 -0300632 /* Do we really know this will always be called with IRQs on? */
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200633 spin_lock_irq(&chip->reg_lock);
Trent Piepho82896f22007-09-06 23:02:23 -0300634 old = cx_read(AUD_VOL_CTL);
635 if (v != (old & 0x3f)) {
Lawrence Rust69518032011-02-06 17:46:12 -0300636 cx_swrite(SHADOW_AUD_VOL_CTL, AUD_VOL_CTL, (old & ~0x3f) | v);
637 changed = 1;
Trent Piepho82896f22007-09-06 23:02:23 -0300638 }
Lawrence Rust69518032011-02-06 17:46:12 -0300639 if ((cx_read(AUD_BAL_CTL) & 0x7f) != b) {
640 cx_write(AUD_BAL_CTL, b);
641 changed = 1;
Trent Piepho82896f22007-09-06 23:02:23 -0300642 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200643 spin_unlock_irq(&chip->reg_lock);
644
Trent Piepho82896f22007-09-06 23:02:23 -0300645 return changed;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200646}
647
Trent Piephobbaccc02007-09-06 23:02:25 -0300648static const DECLARE_TLV_DB_SCALE(snd_cx88_db_scale, -6300, 100, 0);
649
lawrence rust2e4e98e2010-08-25 09:50:20 -0300650static const struct snd_kcontrol_new snd_cx88_volume = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200651 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Trent Piephobbaccc02007-09-06 23:02:25 -0300652 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
653 SNDRV_CTL_ELEM_ACCESS_TLV_READ,
Lawrence Rust69518032011-02-06 17:46:12 -0300654 .name = "Analog-TV Volume",
Trent Piepho54ac0052007-09-06 23:02:23 -0300655 .info = snd_cx88_volume_info,
656 .get = snd_cx88_volume_get,
657 .put = snd_cx88_volume_put,
Trent Piephobbaccc02007-09-06 23:02:25 -0300658 .tlv.p = snd_cx88_db_scale,
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200659};
660
Trent Piepho54ac0052007-09-06 23:02:23 -0300661static int snd_cx88_switch_get(struct snd_kcontrol *kcontrol,
662 struct snd_ctl_elem_value *value)
663{
664 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
665 struct cx88_core *core = chip->core;
666 u32 bit = kcontrol->private_value;
667
668 value->value.integer.value[0] = !(cx_read(AUD_VOL_CTL) & bit);
669 return 0;
670}
671
672static int snd_cx88_switch_put(struct snd_kcontrol *kcontrol,
673 struct snd_ctl_elem_value *value)
674{
675 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
676 struct cx88_core *core = chip->core;
677 u32 bit = kcontrol->private_value;
678 int ret = 0;
679 u32 vol;
680
681 spin_lock_irq(&chip->reg_lock);
682 vol = cx_read(AUD_VOL_CTL);
683 if (value->value.integer.value[0] != !(vol & bit)) {
684 vol ^= bit;
Lawrence Rust69518032011-02-06 17:46:12 -0300685 cx_swrite(SHADOW_AUD_VOL_CTL, AUD_VOL_CTL, vol);
686 /* Pass mute onto any WM8775 */
687 if ((core->board.audio_chip == V4L2_IDENT_WM8775) &&
688 ((1<<6) == bit)) {
689 struct v4l2_control client_ctl;
690
691 memset(&client_ctl, 0, sizeof(client_ctl));
692 client_ctl.value = 0 != (vol & bit);
693 client_ctl.id = V4L2_CID_AUDIO_MUTE;
694 call_hw(core, WM8775_GID, core, s_ctrl, &client_ctl);
695 }
Trent Piepho54ac0052007-09-06 23:02:23 -0300696 ret = 1;
697 }
698 spin_unlock_irq(&chip->reg_lock);
699 return ret;
700}
701
lawrence rust2e4e98e2010-08-25 09:50:20 -0300702static const struct snd_kcontrol_new snd_cx88_dac_switch = {
Trent Piepho54ac0052007-09-06 23:02:23 -0300703 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Lawrence Rust69518032011-02-06 17:46:12 -0300704 .name = "Audio-Out Switch",
Trent Piepho54ac0052007-09-06 23:02:23 -0300705 .info = snd_ctl_boolean_mono_info,
706 .get = snd_cx88_switch_get,
707 .put = snd_cx88_switch_put,
708 .private_value = (1<<8),
709};
710
lawrence rust2e4e98e2010-08-25 09:50:20 -0300711static const struct snd_kcontrol_new snd_cx88_source_switch = {
Trent Piepho54ac0052007-09-06 23:02:23 -0300712 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Lawrence Rust69518032011-02-06 17:46:12 -0300713 .name = "Analog-TV Switch",
Trent Piepho54ac0052007-09-06 23:02:23 -0300714 .info = snd_ctl_boolean_mono_info,
715 .get = snd_cx88_switch_get,
716 .put = snd_cx88_switch_put,
717 .private_value = (1<<6),
718};
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200719
Lawrence Rust69518032011-02-06 17:46:12 -0300720static int snd_cx88_alc_get(struct snd_kcontrol *kcontrol,
721 struct snd_ctl_elem_value *value)
722{
723 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
724 struct cx88_core *core = chip->core;
725 struct v4l2_control client_ctl;
726
727 memset(&client_ctl, 0, sizeof(client_ctl));
728 client_ctl.id = V4L2_CID_AUDIO_LOUDNESS;
729 call_hw(core, WM8775_GID, core, g_ctrl, &client_ctl);
730 value->value.integer.value[0] = client_ctl.value ? 1 : 0;
731
732 return 0;
733}
734
735static int snd_cx88_alc_put(struct snd_kcontrol *kcontrol,
736 struct snd_ctl_elem_value *value)
737{
738 snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol);
739 struct cx88_core *core = chip->core;
740 struct v4l2_control client_ctl;
741
742 memset(&client_ctl, 0, sizeof(client_ctl));
743 client_ctl.value = 0 != value->value.integer.value[0];
744 client_ctl.id = V4L2_CID_AUDIO_LOUDNESS;
745 call_hw(core, WM8775_GID, core, s_ctrl, &client_ctl);
746
747 return 0;
748}
749
750static struct snd_kcontrol_new snd_cx88_alc_switch = {
751 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
752 .name = "Line-In ALC Switch",
753 .info = snd_ctl_boolean_mono_info,
754 .get = snd_cx88_alc_get,
755 .put = snd_cx88_alc_put,
756};
757
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200758/****************************************************************************
759 Basic Flow for Sound Devices
760 ****************************************************************************/
761
762/*
763 * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio
764 * Only boards with eeprom and byte 1 at eeprom=1 have it
765 */
766
lawrence rust2e4e98e2010-08-25 09:50:20 -0300767static const struct pci_device_id const cx88_audio_pci_tbl[] __devinitdata = {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200768 {0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
769 {0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
770 {0, }
771};
772MODULE_DEVICE_TABLE(pci, cx88_audio_pci_tbl);
773
774/*
775 * Chip-specific destructor
776 */
777
778static int snd_cx88_free(snd_cx88_card_t *chip)
779{
780
Jeff Garzikf000fd82008-04-22 13:50:34 +0200781 if (chip->irq >= 0)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200782 free_irq(chip->irq, chip);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200783
784 cx88_core_put(chip->core,chip->pci);
785
786 pci_disable_device(chip->pci);
787 return 0;
788}
789
790/*
791 * Component Destructor
792 */
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100793static void snd_cx88_dev_free(struct snd_card * card)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200794{
795 snd_cx88_card_t *chip = card->private_data;
796
797 snd_cx88_free(chip);
798}
799
800
801/*
802 * Alsa Constructor - Component probe
803 */
804
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -0200805static int devno;
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100806static int __devinit snd_cx88_create(struct snd_card *card,
807 struct pci_dev *pci,
Lawrence Rust69518032011-02-06 17:46:12 -0300808 snd_cx88_card_t **rchip,
809 struct cx88_core **core_ptr)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200810{
811 snd_cx88_card_t *chip;
812 struct cx88_core *core;
813 int err;
Trent Piepho19453bc2007-08-18 22:54:49 -0300814 unsigned char pci_lat;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200815
816 *rchip = NULL;
817
818 err = pci_enable_device(pci);
819 if (err < 0)
820 return err;
821
822 pci_set_master(pci);
823
Joe Perchesabf84382010-07-12 17:50:03 -0300824 chip = card->private_data;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200825
826 core = cx88_core_get(pci);
Duncan Sands31dcbf92006-03-14 12:12:39 -0300827 if (NULL == core) {
828 err = -EINVAL;
Duncan Sands31dcbf92006-03-14 12:12:39 -0300829 return err;
830 }
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200831
Yang Hongyang284901a2009-04-06 19:01:15 -0700832 if (!pci_dma_supported(pci,DMA_BIT_MASK(32))) {
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200833 dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name);
834 err = -EIO;
Lawrence Rust69518032011-02-06 17:46:12 -0300835 cx88_core_put(core, pci);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200836 return err;
837 }
838
839
840 /* pci init */
841 chip->card = card;
842 chip->pci = pci;
843 chip->irq = -1;
844 spin_lock_init(&chip->reg_lock);
845
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200846 chip->core = core;
847
848 /* get irq */
849 err = request_irq(chip->pci->irq, cx8801_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700850 IRQF_SHARED | IRQF_DISABLED, chip->core->name, chip);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200851 if (err < 0) {
852 dprintk(0, "%s: can't get IRQ %d\n",
853 chip->core->name, chip->pci->irq);
854 return err;
855 }
856
857 /* print pci info */
Trent Piepho19453bc2007-08-18 22:54:49 -0300858 pci_read_config_byte(pci, PCI_LATENCY_TIMER, &pci_lat);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200859
860 dprintk(1,"ALSA %s/%i: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700861 "latency: %d, mmio: 0x%llx\n", core->name, devno,
Trent Piepho19453bc2007-08-18 22:54:49 -0300862 pci_name(pci), pci->revision, pci->irq,
863 pci_lat, (unsigned long long)pci_resource_start(pci,0));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200864
865 chip->irq = pci->irq;
866 synchronize_irq(chip->irq);
867
868 snd_card_set_dev(card, &pci->dev);
869
870 *rchip = chip;
Lawrence Rust69518032011-02-06 17:46:12 -0300871 *core_ptr = core;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200872
873 return 0;
874}
875
876static int __devinit cx88_audio_initdev(struct pci_dev *pci,
877 const struct pci_device_id *pci_id)
878{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100879 struct snd_card *card;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200880 snd_cx88_card_t *chip;
Lawrence Rust69518032011-02-06 17:46:12 -0300881 struct cx88_core *core;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200882 int err;
883
884 if (devno >= SNDRV_CARDS)
885 return (-ENODEV);
886
887 if (!enable[devno]) {
888 ++devno;
889 return (-ENOENT);
890 }
891
Takashi Iwai758021b2009-01-12 15:17:09 +0100892 err = snd_card_create(index[devno], id[devno], THIS_MODULE,
893 sizeof(snd_cx88_card_t), &card);
894 if (err < 0)
895 return err;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200896
897 card->private_free = snd_cx88_dev_free;
898
Lawrence Rust69518032011-02-06 17:46:12 -0300899 err = snd_cx88_create(card, pci, &chip, &core);
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200900 if (err < 0)
Julia Lawalla8782f62008-12-02 19:34:52 -0300901 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200902
903 err = snd_cx88_pcm(chip, 0, "CX88 Digital");
Trent Piepho82896f22007-09-06 23:02:23 -0300904 if (err < 0)
905 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200906
Trent Piepho54ac0052007-09-06 23:02:23 -0300907 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_volume, chip));
908 if (err < 0)
909 goto error;
910 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_dac_switch, chip));
911 if (err < 0)
912 goto error;
913 err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_source_switch, chip));
Trent Piepho82896f22007-09-06 23:02:23 -0300914 if (err < 0)
915 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200916
Lawrence Rust69518032011-02-06 17:46:12 -0300917 /* If there's a wm8775 then add a Line-In ALC switch */
918 if (core->board.audio_chip == V4L2_IDENT_WM8775)
919 snd_ctl_add(card, snd_ctl_new1(&snd_cx88_alc_switch, chip));
920
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200921 strcpy (card->driver, "CX88x");
922 sprintf(card->shortname, "Conexant CX%x", pci->device);
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700923 sprintf(card->longname, "%s at %#llx",
924 card->shortname,(unsigned long long)pci_resource_start(pci, 0));
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200925 strcpy (card->mixername, "CX88");
926
927 dprintk (0, "%s/%i: ALSA support for cx2388x boards\n",
928 card->driver,devno);
929
930 err = snd_card_register(card);
Trent Piepho82896f22007-09-06 23:02:23 -0300931 if (err < 0)
932 goto error;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200933 pci_set_drvdata(pci,card);
934
935 devno++;
936 return 0;
Trent Piepho82896f22007-09-06 23:02:23 -0300937
938error:
939 snd_card_free(card);
940 return err;
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200941}
942/*
943 * ALSA destructor
944 */
945static void __devexit cx88_audio_finidev(struct pci_dev *pci)
946{
947 struct cx88_audio_dev *card = pci_get_drvdata(pci);
948
949 snd_card_free((void *)card);
950
951 pci_set_drvdata(pci, NULL);
952
953 devno--;
954}
955
956/*
957 * PCI driver definition
958 */
959
960static struct pci_driver cx88_audio_pci_driver = {
961 .name = "cx88_audio",
962 .id_table = cx88_audio_pci_tbl,
963 .probe = cx88_audio_initdev,
Jean Delvaree36bc312009-06-04 11:07:16 -0300964 .remove = __devexit_p(cx88_audio_finidev),
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200965};
966
967/****************************************************************************
968 LINUX MODULE INIT
969 ****************************************************************************/
970
971/*
972 * module init
973 */
Jean Delvaree36bc312009-06-04 11:07:16 -0300974static int __init cx88_audio_init(void)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200975{
976 printk(KERN_INFO "cx2388x alsa driver version %d.%d.%d loaded\n",
977 (CX88_VERSION_CODE >> 16) & 0xff,
978 (CX88_VERSION_CODE >> 8) & 0xff,
979 CX88_VERSION_CODE & 0xff);
980#ifdef SNAPSHOT
981 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
982 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
983#endif
984 return pci_register_driver(&cx88_audio_pci_driver);
985}
986
987/*
988 * module remove
989 */
Jean Delvaree36bc312009-06-04 11:07:16 -0300990static void __exit cx88_audio_fini(void)
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200991{
Mauro Carvalho Chehabb7f355d2006-01-09 15:32:44 -0200992 pci_unregister_driver(&cx88_audio_pci_driver);
993}
994
995module_init(cx88_audio_init);
996module_exit(cx88_audio_fini);
997
998/* ----------------------------------------------------------- */
999/*
1000 * Local variables:
1001 * c-basic-offset: 8
1002 * End:
1003 */