1b162ee8c8c670fb8cfe78dd07a6c2a13073c688
[deliverable/linux.git] / drivers / media / pci / cx23885 / cx23885-alsa.c
1 /*
2 *
3 * Support for CX23885 analog audio capture
4 *
5 * (c) 2008 Mijhail Moreyra <mijhail.moreyra@gmail.com>
6 * Adapted from cx88-alsa.c
7 * (c) 2009 Steven Toth <stoth@kernellabs.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/device.h>
23 #include <linux/interrupt.h>
24 #include <linux/vmalloc.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/pci.h>
27
28 #include <asm/delay.h>
29
30 #include <sound/core.h>
31 #include <sound/pcm.h>
32 #include <sound/pcm_params.h>
33 #include <sound/control.h>
34 #include <sound/initval.h>
35
36 #include <sound/tlv.h>
37
38
39 #include "cx23885.h"
40 #include "cx23885-reg.h"
41
42 #define AUDIO_SRAM_CHANNEL SRAM_CH07
43
44 #define dprintk(level, fmt, arg...) do { \
45 if (audio_debug + 1 > level) \
46 printk(KERN_INFO "%s: " fmt, chip->dev->name , ## arg); \
47 } while(0)
48
49 #define dprintk_core(level, fmt, arg...) if (audio_debug >= level) \
50 printk(KERN_DEBUG "%s: " fmt, chip->dev->name , ## arg)
51
52 /****************************************************************************
53 Module global static vars
54 ****************************************************************************/
55
56 static unsigned int disable_analog_audio;
57 module_param(disable_analog_audio, int, 0644);
58 MODULE_PARM_DESC(disable_analog_audio, "disable analog audio ALSA driver");
59
60 static unsigned int audio_debug;
61 module_param(audio_debug, int, 0644);
62 MODULE_PARM_DESC(audio_debug, "enable debug messages [analog audio]");
63
64 /****************************************************************************
65 Board specific funtions
66 ****************************************************************************/
67
68 /* Constants taken from cx88-reg.h */
69 #define AUD_INT_DN_RISCI1 (1 << 0)
70 #define AUD_INT_UP_RISCI1 (1 << 1)
71 #define AUD_INT_RDS_DN_RISCI1 (1 << 2)
72 #define AUD_INT_DN_RISCI2 (1 << 4) /* yes, 3 is skipped */
73 #define AUD_INT_UP_RISCI2 (1 << 5)
74 #define AUD_INT_RDS_DN_RISCI2 (1 << 6)
75 #define AUD_INT_DN_SYNC (1 << 12)
76 #define AUD_INT_UP_SYNC (1 << 13)
77 #define AUD_INT_RDS_DN_SYNC (1 << 14)
78 #define AUD_INT_OPC_ERR (1 << 16)
79 #define AUD_INT_BER_IRQ (1 << 20)
80 #define AUD_INT_MCHG_IRQ (1 << 21)
81 #define GP_COUNT_CONTROL_RESET 0x3
82
83 static int cx23885_alsa_dma_init(struct cx23885_audio_dev *chip, int nr_pages)
84 {
85 struct cx23885_audio_buffer *buf = chip->buf;
86 struct page *pg;
87 int i;
88
89 buf->vaddr = vmalloc_32(nr_pages << PAGE_SHIFT);
90 if (NULL == buf->vaddr) {
91 dprintk(1, "vmalloc_32(%d pages) failed\n", nr_pages);
92 return -ENOMEM;
93 }
94
95 dprintk(1, "vmalloc is at addr 0x%08lx, size=%d\n",
96 (unsigned long)buf->vaddr,
97 nr_pages << PAGE_SHIFT);
98
99 memset(buf->vaddr, 0, nr_pages << PAGE_SHIFT);
100 buf->nr_pages = nr_pages;
101
102 buf->sglist = vzalloc(buf->nr_pages * sizeof(*buf->sglist));
103 if (NULL == buf->sglist)
104 goto vzalloc_err;
105
106 sg_init_table(buf->sglist, buf->nr_pages);
107 for (i = 0; i < buf->nr_pages; i++) {
108 pg = vmalloc_to_page(buf->vaddr + i * PAGE_SIZE);
109 if (NULL == pg)
110 goto vmalloc_to_page_err;
111 sg_set_page(&buf->sglist[i], pg, PAGE_SIZE, 0);
112 }
113 return 0;
114
115 vmalloc_to_page_err:
116 vfree(buf->sglist);
117 buf->sglist = NULL;
118 vzalloc_err:
119 vfree(buf->vaddr);
120 buf->vaddr = NULL;
121 return -ENOMEM;
122 }
123
124 static int cx23885_alsa_dma_map(struct cx23885_audio_dev *dev)
125 {
126 struct cx23885_audio_buffer *buf = dev->buf;
127
128 buf->sglen = dma_map_sg(&dev->pci->dev, buf->sglist,
129 buf->nr_pages, PCI_DMA_FROMDEVICE);
130
131 if (0 == buf->sglen) {
132 pr_warn("%s: cx23885_alsa_map_sg failed\n", __func__);
133 return -ENOMEM;
134 }
135 return 0;
136 }
137
138 static int cx23885_alsa_dma_unmap(struct cx23885_audio_dev *dev)
139 {
140 struct cx23885_audio_buffer *buf = dev->buf;
141
142 if (!buf->sglen)
143 return 0;
144
145 dma_unmap_sg(&dev->pci->dev, buf->sglist, buf->sglen, PCI_DMA_FROMDEVICE);
146 buf->sglen = 0;
147 return 0;
148 }
149
150 static int cx23885_alsa_dma_free(struct cx23885_audio_buffer *buf)
151 {
152 vfree(buf->sglist);
153 buf->sglist = NULL;
154 vfree(buf->vaddr);
155 buf->vaddr = NULL;
156 return 0;
157 }
158
159 /*
160 * BOARD Specific: Sets audio DMA
161 */
162
163 static int cx23885_start_audio_dma(struct cx23885_audio_dev *chip)
164 {
165 struct cx23885_audio_buffer *buf = chip->buf;
166 struct cx23885_dev *dev = chip->dev;
167 struct sram_channel *audio_ch =
168 &dev->sram_channels[AUDIO_SRAM_CHANNEL];
169
170 dprintk(1, "%s()\n", __func__);
171
172 /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */
173 cx_clear(AUD_INT_DMA_CTL, 0x11);
174
175 /* setup fifo + format - out channel */
176 cx23885_sram_channel_setup(chip->dev, audio_ch, buf->bpl,
177 buf->risc.dma);
178
179 /* sets bpl size */
180 cx_write(AUD_INT_A_LNGTH, buf->bpl);
181
182 /* This is required to get good audio (1 seems to be ok) */
183 cx_write(AUD_INT_A_MODE, 1);
184
185 /* reset counter */
186 cx_write(AUD_INT_A_GPCNT_CTL, GP_COUNT_CONTROL_RESET);
187 atomic_set(&chip->count, 0);
188
189 dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d "
190 "byte buffer\n", buf->bpl, cx_read(audio_ch->cmds_start+12)>>1,
191 chip->num_periods, buf->bpl * chip->num_periods);
192
193 /* Enables corresponding bits at AUD_INT_STAT */
194 cx_write(AUDIO_INT_INT_MSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
195 AUD_INT_DN_RISCI1);
196
197 /* Clean any pending interrupt bits already set */
198 cx_write(AUDIO_INT_INT_STAT, ~0);
199
200 /* enable audio irqs */
201 cx_set(PCI_INT_MSK, chip->dev->pci_irqmask | PCI_MSK_AUD_INT);
202
203 /* start dma */
204 cx_set(DEV_CNTRL2, (1<<5)); /* Enables Risc Processor */
205 cx_set(AUD_INT_DMA_CTL, 0x11); /* audio downstream FIFO and
206 RISC enable */
207 if (audio_debug)
208 cx23885_sram_channel_dump(chip->dev, audio_ch);
209
210 return 0;
211 }
212
213 /*
214 * BOARD Specific: Resets audio DMA
215 */
216 static int cx23885_stop_audio_dma(struct cx23885_audio_dev *chip)
217 {
218 struct cx23885_dev *dev = chip->dev;
219 dprintk(1, "Stopping audio DMA\n");
220
221 /* stop dma */
222 cx_clear(AUD_INT_DMA_CTL, 0x11);
223
224 /* disable irqs */
225 cx_clear(PCI_INT_MSK, PCI_MSK_AUD_INT);
226 cx_clear(AUDIO_INT_INT_MSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC |
227 AUD_INT_DN_RISCI1);
228
229 if (audio_debug)
230 cx23885_sram_channel_dump(chip->dev,
231 &dev->sram_channels[AUDIO_SRAM_CHANNEL]);
232
233 return 0;
234 }
235
236 /*
237 * BOARD Specific: Handles audio IRQ
238 */
239 int cx23885_audio_irq(struct cx23885_dev *dev, u32 status, u32 mask)
240 {
241 struct cx23885_audio_dev *chip = dev->audio_dev;
242
243 if (0 == (status & mask))
244 return 0;
245
246 cx_write(AUDIO_INT_INT_STAT, status);
247
248 /* risc op code error */
249 if (status & AUD_INT_OPC_ERR) {
250 printk(KERN_WARNING "%s/1: Audio risc op code error\n",
251 dev->name);
252 cx_clear(AUD_INT_DMA_CTL, 0x11);
253 cx23885_sram_channel_dump(dev,
254 &dev->sram_channels[AUDIO_SRAM_CHANNEL]);
255 }
256 if (status & AUD_INT_DN_SYNC) {
257 dprintk(1, "Downstream sync error\n");
258 cx_write(AUD_INT_A_GPCNT_CTL, GP_COUNT_CONTROL_RESET);
259 return 1;
260 }
261 /* risc1 downstream */
262 if (status & AUD_INT_DN_RISCI1) {
263 atomic_set(&chip->count, cx_read(AUD_INT_A_GPCNT));
264 snd_pcm_period_elapsed(chip->substream);
265 }
266 /* FIXME: Any other status should deserve a special handling? */
267
268 return 1;
269 }
270
271 static int dsp_buffer_free(struct cx23885_audio_dev *chip)
272 {
273 BUG_ON(!chip->dma_size);
274
275 dprintk(2, "Freeing buffer\n");
276 cx23885_alsa_dma_unmap(chip);
277 cx23885_alsa_dma_free(chip->buf);
278 btcx_riscmem_free(chip->pci, &chip->buf->risc);
279 kfree(chip->buf);
280
281 chip->buf = NULL;
282 chip->dma_size = 0;
283
284 return 0;
285 }
286
287 /****************************************************************************
288 ALSA PCM Interface
289 ****************************************************************************/
290
291 /*
292 * Digital hardware definition
293 */
294 #define DEFAULT_FIFO_SIZE 4096
295
296 static struct snd_pcm_hardware snd_cx23885_digital_hw = {
297 .info = SNDRV_PCM_INFO_MMAP |
298 SNDRV_PCM_INFO_INTERLEAVED |
299 SNDRV_PCM_INFO_BLOCK_TRANSFER |
300 SNDRV_PCM_INFO_MMAP_VALID,
301 .formats = SNDRV_PCM_FMTBIT_S16_LE,
302
303 .rates = SNDRV_PCM_RATE_48000,
304 .rate_min = 48000,
305 .rate_max = 48000,
306 .channels_min = 2,
307 .channels_max = 2,
308 /* Analog audio output will be full of clicks and pops if there
309 are not exactly four lines in the SRAM FIFO buffer. */
310 .period_bytes_min = DEFAULT_FIFO_SIZE/4,
311 .period_bytes_max = DEFAULT_FIFO_SIZE/4,
312 .periods_min = 1,
313 .periods_max = 1024,
314 .buffer_bytes_max = (1024*1024),
315 };
316
317 /*
318 * audio pcm capture open callback
319 */
320 static int snd_cx23885_pcm_open(struct snd_pcm_substream *substream)
321 {
322 struct cx23885_audio_dev *chip = snd_pcm_substream_chip(substream);
323 struct snd_pcm_runtime *runtime = substream->runtime;
324 int err;
325
326 if (!chip) {
327 printk(KERN_ERR "BUG: cx23885 can't find device struct."
328 " Can't proceed with open\n");
329 return -ENODEV;
330 }
331
332 err = snd_pcm_hw_constraint_pow2(runtime, 0,
333 SNDRV_PCM_HW_PARAM_PERIODS);
334 if (err < 0)
335 goto _error;
336
337 chip->substream = substream;
338
339 runtime->hw = snd_cx23885_digital_hw;
340
341 if (chip->dev->sram_channels[AUDIO_SRAM_CHANNEL].fifo_size !=
342 DEFAULT_FIFO_SIZE) {
343 unsigned int bpl = chip->dev->
344 sram_channels[AUDIO_SRAM_CHANNEL].fifo_size / 4;
345 bpl &= ~7; /* must be multiple of 8 */
346 runtime->hw.period_bytes_min = bpl;
347 runtime->hw.period_bytes_max = bpl;
348 }
349
350 return 0;
351 _error:
352 dprintk(1, "Error opening PCM!\n");
353 return err;
354 }
355
356 /*
357 * audio close callback
358 */
359 static int snd_cx23885_close(struct snd_pcm_substream *substream)
360 {
361 return 0;
362 }
363
364
365 /*
366 * hw_params callback
367 */
368 static int snd_cx23885_hw_params(struct snd_pcm_substream *substream,
369 struct snd_pcm_hw_params *hw_params)
370 {
371 struct cx23885_audio_dev *chip = snd_pcm_substream_chip(substream);
372 struct cx23885_audio_buffer *buf;
373 int ret;
374
375 if (substream->runtime->dma_area) {
376 dsp_buffer_free(chip);
377 substream->runtime->dma_area = NULL;
378 }
379
380 chip->period_size = params_period_bytes(hw_params);
381 chip->num_periods = params_periods(hw_params);
382 chip->dma_size = chip->period_size * params_periods(hw_params);
383
384 BUG_ON(!chip->dma_size);
385 BUG_ON(chip->num_periods & (chip->num_periods-1));
386
387 buf = kzalloc(sizeof(*buf), GFP_KERNEL);
388 if (NULL == buf)
389 return -ENOMEM;
390
391 buf->bpl = chip->period_size;
392 chip->buf = buf;
393
394 ret = cx23885_alsa_dma_init(chip,
395 (PAGE_ALIGN(chip->dma_size) >> PAGE_SHIFT));
396 if (ret < 0)
397 goto error;
398
399 ret = cx23885_alsa_dma_map(chip);
400 if (ret < 0)
401 goto error;
402
403 ret = cx23885_risc_databuffer(chip->pci, &buf->risc, buf->sglist,
404 chip->period_size, chip->num_periods, 1);
405 if (ret < 0)
406 goto error;
407
408 /* Loop back to start of program */
409 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP|RISC_IRQ1|RISC_CNT_INC);
410 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
411 buf->risc.jmp[2] = cpu_to_le32(0); /* bits 63-32 */
412
413 substream->runtime->dma_area = chip->buf->vaddr;
414 substream->runtime->dma_bytes = chip->dma_size;
415 substream->runtime->dma_addr = 0;
416
417 return 0;
418
419 error:
420 kfree(buf);
421 chip->buf = NULL;
422 return ret;
423 }
424
425 /*
426 * hw free callback
427 */
428 static int snd_cx23885_hw_free(struct snd_pcm_substream *substream)
429 {
430
431 struct cx23885_audio_dev *chip = snd_pcm_substream_chip(substream);
432
433 if (substream->runtime->dma_area) {
434 dsp_buffer_free(chip);
435 substream->runtime->dma_area = NULL;
436 }
437
438 return 0;
439 }
440
441 /*
442 * prepare callback
443 */
444 static int snd_cx23885_prepare(struct snd_pcm_substream *substream)
445 {
446 return 0;
447 }
448
449 /*
450 * trigger callback
451 */
452 static int snd_cx23885_card_trigger(struct snd_pcm_substream *substream,
453 int cmd)
454 {
455 struct cx23885_audio_dev *chip = snd_pcm_substream_chip(substream);
456 int err;
457
458 /* Local interrupts are already disabled by ALSA */
459 spin_lock(&chip->lock);
460
461 switch (cmd) {
462 case SNDRV_PCM_TRIGGER_START:
463 err = cx23885_start_audio_dma(chip);
464 break;
465 case SNDRV_PCM_TRIGGER_STOP:
466 err = cx23885_stop_audio_dma(chip);
467 break;
468 default:
469 err = -EINVAL;
470 break;
471 }
472
473 spin_unlock(&chip->lock);
474
475 return err;
476 }
477
478 /*
479 * pointer callback
480 */
481 static snd_pcm_uframes_t snd_cx23885_pointer(
482 struct snd_pcm_substream *substream)
483 {
484 struct cx23885_audio_dev *chip = snd_pcm_substream_chip(substream);
485 struct snd_pcm_runtime *runtime = substream->runtime;
486 u16 count;
487
488 count = atomic_read(&chip->count);
489
490 return runtime->period_size * (count & (runtime->periods-1));
491 }
492
493 /*
494 * page callback (needed for mmap)
495 */
496 static struct page *snd_cx23885_page(struct snd_pcm_substream *substream,
497 unsigned long offset)
498 {
499 void *pageptr = substream->runtime->dma_area + offset;
500 return vmalloc_to_page(pageptr);
501 }
502
503 /*
504 * operators
505 */
506 static struct snd_pcm_ops snd_cx23885_pcm_ops = {
507 .open = snd_cx23885_pcm_open,
508 .close = snd_cx23885_close,
509 .ioctl = snd_pcm_lib_ioctl,
510 .hw_params = snd_cx23885_hw_params,
511 .hw_free = snd_cx23885_hw_free,
512 .prepare = snd_cx23885_prepare,
513 .trigger = snd_cx23885_card_trigger,
514 .pointer = snd_cx23885_pointer,
515 .page = snd_cx23885_page,
516 };
517
518 /*
519 * create a PCM device
520 */
521 static int snd_cx23885_pcm(struct cx23885_audio_dev *chip, int device,
522 char *name)
523 {
524 int err;
525 struct snd_pcm *pcm;
526
527 err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
528 if (err < 0)
529 return err;
530 pcm->private_data = chip;
531 strcpy(pcm->name, name);
532 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cx23885_pcm_ops);
533
534 return 0;
535 }
536
537 /****************************************************************************
538 Basic Flow for Sound Devices
539 ****************************************************************************/
540
541 /*
542 * Alsa Constructor - Component probe
543 */
544
545 struct cx23885_audio_dev *cx23885_audio_register(struct cx23885_dev *dev)
546 {
547 struct snd_card *card;
548 struct cx23885_audio_dev *chip;
549 int err;
550
551 if (disable_analog_audio)
552 return NULL;
553
554 if (dev->sram_channels[AUDIO_SRAM_CHANNEL].cmds_start == 0) {
555 printk(KERN_WARNING "%s(): Missing SRAM channel configuration "
556 "for analog TV Audio\n", __func__);
557 return NULL;
558 }
559
560 err = snd_card_new(&dev->pci->dev,
561 SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
562 THIS_MODULE, sizeof(struct cx23885_audio_dev), &card);
563 if (err < 0)
564 goto error;
565
566 chip = (struct cx23885_audio_dev *) card->private_data;
567 chip->dev = dev;
568 chip->pci = dev->pci;
569 chip->card = card;
570 spin_lock_init(&chip->lock);
571
572 err = snd_cx23885_pcm(chip, 0, "CX23885 Digital");
573 if (err < 0)
574 goto error;
575
576 strcpy(card->driver, "CX23885");
577 sprintf(card->shortname, "Conexant CX23885");
578 sprintf(card->longname, "%s at %s", card->shortname, dev->name);
579
580 err = snd_card_register(card);
581 if (err < 0)
582 goto error;
583
584 dprintk(0, "registered ALSA audio device\n");
585
586 return chip;
587
588 error:
589 snd_card_free(card);
590 printk(KERN_ERR "%s(): Failed to register analog "
591 "audio adapter\n", __func__);
592
593 return NULL;
594 }
595
596 /*
597 * ALSA destructor
598 */
599 void cx23885_audio_unregister(struct cx23885_dev *dev)
600 {
601 struct cx23885_audio_dev *chip = dev->audio_dev;
602
603 snd_card_free(chip->card);
604 }
This page took 0.055091 seconds and 4 git commands to generate.