[media] saa7134: coding style cleanups
[linux-2.6-block.git] / drivers / media / pci / saa7134 / saa7134-alsa.c
... / ...
CommitLineData
1/*
2 * SAA713x ALSA support for V4L
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 */
18
19#include <linux/init.h>
20#include <linux/slab.h>
21#include <linux/time.h>
22#include <linux/wait.h>
23#include <linux/module.h>
24#include <sound/core.h>
25#include <sound/control.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/initval.h>
29#include <linux/interrupt.h>
30
31#include "saa7134.h"
32#include "saa7134-reg.h"
33
34static unsigned int debug;
35module_param(debug, int, 0644);
36MODULE_PARM_DESC(debug,"enable debug messages [alsa]");
37
38/*
39 * Configuration macros
40 */
41
42/* defaults */
43#define MIXER_ADDR_UNSELECTED -1
44#define MIXER_ADDR_TVTUNER 0
45#define MIXER_ADDR_LINE1 1
46#define MIXER_ADDR_LINE2 2
47#define MIXER_ADDR_LAST 2
48
49
50static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
51static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
52static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
53
54module_param_array(index, int, NULL, 0444);
55module_param_array(enable, int, NULL, 0444);
56MODULE_PARM_DESC(index, "Index value for SAA7134 capture interface(s).");
57MODULE_PARM_DESC(enable, "Enable (or not) the SAA7134 capture interface(s).");
58
59#define dprintk(fmt, arg...) if (debug) \
60 printk(KERN_DEBUG "%s/alsa: " fmt, dev->name , ##arg)
61
62
63
64/*
65 * Main chip structure
66 */
67
68typedef struct snd_card_saa7134 {
69 struct snd_card *card;
70 spinlock_t mixer_lock;
71 int mixer_volume[MIXER_ADDR_LAST+1][2];
72 int capture_source_addr;
73 int capture_source[2];
74 struct snd_kcontrol *capture_ctl[MIXER_ADDR_LAST+1];
75 struct pci_dev *pci;
76 struct saa7134_dev *dev;
77
78 unsigned long iobase;
79 s16 irq;
80 u16 mute_was_on;
81
82 spinlock_t lock;
83} snd_card_saa7134_t;
84
85
86/*
87 * PCM structure
88 */
89
90typedef struct snd_card_saa7134_pcm {
91 struct saa7134_dev *dev;
92
93 spinlock_t lock;
94
95 struct snd_pcm_substream *substream;
96} snd_card_saa7134_pcm_t;
97
98static struct snd_card *snd_saa7134_cards[SNDRV_CARDS];
99
100
101/*
102 * saa7134 DMA audio stop
103 *
104 * Called when the capture device is released or the buffer overflows
105 *
106 * - Copied verbatim from saa7134-oss's dsp_dma_stop.
107 *
108 */
109
110static void saa7134_dma_stop(struct saa7134_dev *dev)
111{
112 dev->dmasound.dma_blk = -1;
113 dev->dmasound.dma_running = 0;
114 saa7134_set_dmabits(dev);
115}
116
117/*
118 * saa7134 DMA audio start
119 *
120 * Called when preparing the capture device for use
121 *
122 * - Copied verbatim from saa7134-oss's dsp_dma_start.
123 *
124 */
125
126static void saa7134_dma_start(struct saa7134_dev *dev)
127{
128 dev->dmasound.dma_blk = 0;
129 dev->dmasound.dma_running = 1;
130 saa7134_set_dmabits(dev);
131}
132
133/*
134 * saa7134 audio DMA IRQ handler
135 *
136 * Called whenever we get an SAA7134_IRQ_REPORT_DONE_RA3 interrupt
137 * Handles shifting between the 2 buffers, manages the read counters,
138 * and notifies ALSA when periods elapse
139 *
140 * - Mostly copied from saa7134-oss's saa7134_irq_oss_done.
141 *
142 */
143
144static void saa7134_irq_alsa_done(struct saa7134_dev *dev,
145 unsigned long status)
146{
147 int next_blk, reg = 0;
148
149 spin_lock(&dev->slock);
150 if (UNSET == dev->dmasound.dma_blk) {
151 dprintk("irq: recording stopped\n");
152 goto done;
153 }
154 if (0 != (status & 0x0f000000))
155 dprintk("irq: lost %ld\n", (status >> 24) & 0x0f);
156 if (0 == (status & 0x10000000)) {
157 /* odd */
158 if (0 == (dev->dmasound.dma_blk & 0x01))
159 reg = SAA7134_RS_BA1(6);
160 } else {
161 /* even */
162 if (1 == (dev->dmasound.dma_blk & 0x01))
163 reg = SAA7134_RS_BA2(6);
164 }
165 if (0 == reg) {
166 dprintk("irq: field oops [%s]\n",
167 (status & 0x10000000) ? "even" : "odd");
168 goto done;
169 }
170
171 if (dev->dmasound.read_count >= dev->dmasound.blksize * (dev->dmasound.blocks-2)) {
172 dprintk("irq: overrun [full=%d/%d] - Blocks in %d\n",dev->dmasound.read_count,
173 dev->dmasound.bufsize, dev->dmasound.blocks);
174 spin_unlock(&dev->slock);
175 snd_pcm_stream_lock(dev->dmasound.substream);
176 snd_pcm_stop(dev->dmasound.substream,SNDRV_PCM_STATE_XRUN);
177 snd_pcm_stream_unlock(dev->dmasound.substream);
178 return;
179 }
180
181 /* next block addr */
182 next_blk = (dev->dmasound.dma_blk + 2) % dev->dmasound.blocks;
183 saa_writel(reg,next_blk * dev->dmasound.blksize);
184 if (debug > 2)
185 dprintk("irq: ok, %s, next_blk=%d, addr=%x, blocks=%u, size=%u, read=%u\n",
186 (status & 0x10000000) ? "even" : "odd ", next_blk,
187 next_blk * dev->dmasound.blksize, dev->dmasound.blocks, dev->dmasound.blksize, dev->dmasound.read_count);
188
189 /* update status & wake waiting readers */
190 dev->dmasound.dma_blk = (dev->dmasound.dma_blk + 1) % dev->dmasound.blocks;
191 dev->dmasound.read_count += dev->dmasound.blksize;
192
193 dev->dmasound.recording_on = reg;
194
195 if (dev->dmasound.read_count >= snd_pcm_lib_period_bytes(dev->dmasound.substream)) {
196 spin_unlock(&dev->slock);
197 snd_pcm_period_elapsed(dev->dmasound.substream);
198 spin_lock(&dev->slock);
199 }
200
201 done:
202 spin_unlock(&dev->slock);
203
204}
205
206/*
207 * IRQ request handler
208 *
209 * Runs along with saa7134's IRQ handler, discards anything that isn't
210 * DMA sound
211 *
212 */
213
214static irqreturn_t saa7134_alsa_irq(int irq, void *dev_id)
215{
216 struct saa7134_dmasound *dmasound = dev_id;
217 struct saa7134_dev *dev = dmasound->priv_data;
218
219 unsigned long report, status;
220 int loop, handled = 0;
221
222 for (loop = 0; loop < 10; loop++) {
223 report = saa_readl(SAA7134_IRQ_REPORT);
224 status = saa_readl(SAA7134_IRQ_STATUS);
225
226 if (report & SAA7134_IRQ_REPORT_DONE_RA3) {
227 handled = 1;
228 saa_writel(SAA7134_IRQ_REPORT,
229 SAA7134_IRQ_REPORT_DONE_RA3);
230 saa7134_irq_alsa_done(dev, status);
231 } else {
232 goto out;
233 }
234 }
235
236 if (loop == 10) {
237 dprintk("error! looping IRQ!");
238 }
239
240out:
241 return IRQ_RETVAL(handled);
242}
243
244/*
245 * ALSA capture trigger
246 *
247 * - One of the ALSA capture callbacks.
248 *
249 * Called whenever a capture is started or stopped. Must be defined,
250 * but there's nothing we want to do here
251 *
252 */
253
254static int snd_card_saa7134_capture_trigger(struct snd_pcm_substream * substream,
255 int cmd)
256{
257 struct snd_pcm_runtime *runtime = substream->runtime;
258 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
259 struct saa7134_dev *dev=pcm->dev;
260 int err = 0;
261
262 spin_lock(&dev->slock);
263 if (cmd == SNDRV_PCM_TRIGGER_START) {
264 /* start dma */
265 saa7134_dma_start(dev);
266 } else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
267 /* stop dma */
268 saa7134_dma_stop(dev);
269 } else {
270 err = -EINVAL;
271 }
272 spin_unlock(&dev->slock);
273
274 return err;
275}
276
277/*
278 * DMA buffer initialization
279 *
280 * Uses V4L functions to initialize the DMA. Shouldn't be necessary in
281 * ALSA, but I was unable to use ALSA's own DMA, and had to force the
282 * usage of V4L's
283 *
284 * - Copied verbatim from saa7134-oss.
285 *
286 */
287
288static int dsp_buffer_init(struct saa7134_dev *dev)
289{
290 int err;
291
292 BUG_ON(!dev->dmasound.bufsize);
293
294 videobuf_dma_init(&dev->dmasound.dma);
295 err = videobuf_dma_init_kernel(&dev->dmasound.dma, PCI_DMA_FROMDEVICE,
296 (dev->dmasound.bufsize + PAGE_SIZE) >> PAGE_SHIFT);
297 if (0 != err)
298 return err;
299 return 0;
300}
301
302/*
303 * DMA buffer release
304 *
305 * Called after closing the device, during snd_card_saa7134_capture_close
306 *
307 */
308
309static int dsp_buffer_free(struct saa7134_dev *dev)
310{
311 BUG_ON(!dev->dmasound.blksize);
312
313 videobuf_dma_free(&dev->dmasound.dma);
314
315 dev->dmasound.blocks = 0;
316 dev->dmasound.blksize = 0;
317 dev->dmasound.bufsize = 0;
318
319 return 0;
320}
321
322/*
323 * Setting the capture source and updating the ALSA controls
324 */
325static int snd_saa7134_capsrc_set(struct snd_kcontrol *kcontrol,
326 int left, int right, bool force_notify)
327{
328 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
329 int change = 0, addr = kcontrol->private_value;
330 int active, old_addr;
331 u32 anabar, xbarin;
332 int analog_io, rate;
333 struct saa7134_dev *dev;
334
335 dev = chip->dev;
336
337 spin_lock_irq(&chip->mixer_lock);
338
339 active = left != 0 || right != 0;
340 old_addr = chip->capture_source_addr;
341
342 /* The active capture source cannot be deactivated */
343 if (active) {
344 change = old_addr != addr ||
345 chip->capture_source[0] != left ||
346 chip->capture_source[1] != right;
347
348 chip->capture_source[0] = left;
349 chip->capture_source[1] = right;
350 chip->capture_source_addr = addr;
351 dev->dmasound.input = addr;
352 }
353 spin_unlock_irq(&chip->mixer_lock);
354
355 if (change) {
356 switch (dev->pci->device) {
357
358 case PCI_DEVICE_ID_PHILIPS_SAA7134:
359 switch (addr) {
360 case MIXER_ADDR_TVTUNER:
361 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL,
362 0xc0, 0xc0);
363 saa_andorb(SAA7134_SIF_SAMPLE_FREQ,
364 0x03, 0x00);
365 break;
366 case MIXER_ADDR_LINE1:
367 case MIXER_ADDR_LINE2:
368 analog_io = (MIXER_ADDR_LINE1 == addr) ?
369 0x00 : 0x08;
370 rate = (32000 == dev->dmasound.rate) ?
371 0x01 : 0x03;
372 saa_andorb(SAA7134_ANALOG_IO_SELECT,
373 0x08, analog_io);
374 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL,
375 0xc0, 0x80);
376 saa_andorb(SAA7134_SIF_SAMPLE_FREQ,
377 0x03, rate);
378 break;
379 }
380
381 break;
382 case PCI_DEVICE_ID_PHILIPS_SAA7133:
383 case PCI_DEVICE_ID_PHILIPS_SAA7135:
384 xbarin = 0x03; /* adc */
385 anabar = 0;
386 switch (addr) {
387 case MIXER_ADDR_TVTUNER:
388 xbarin = 0; /* Demodulator */
389 anabar = 2; /* DACs */
390 break;
391 case MIXER_ADDR_LINE1:
392 anabar = 0; /* aux1, aux1 */
393 break;
394 case MIXER_ADDR_LINE2:
395 anabar = 9; /* aux2, aux2 */
396 break;
397 }
398
399 /* output xbar always main channel */
400 saa_dsp_writel(dev, SAA7133_DIGITAL_OUTPUT_SEL1,
401 0xbbbb10);
402
403 if (left || right) {
404 /* We've got data, turn the input on */
405 saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1,
406 xbarin);
407 saa_writel(SAA7133_ANALOG_IO_SELECT, anabar);
408 } else {
409 saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1,
410 0);
411 saa_writel(SAA7133_ANALOG_IO_SELECT, 0);
412 }
413 break;
414 }
415 }
416
417 if (change) {
418 if (force_notify)
419 snd_ctl_notify(chip->card,
420 SNDRV_CTL_EVENT_MASK_VALUE,
421 &chip->capture_ctl[addr]->id);
422
423 if (old_addr != MIXER_ADDR_UNSELECTED && old_addr != addr)
424 snd_ctl_notify(chip->card,
425 SNDRV_CTL_EVENT_MASK_VALUE,
426 &chip->capture_ctl[old_addr]->id);
427 }
428
429 return change;
430}
431
432/*
433 * ALSA PCM preparation
434 *
435 * - One of the ALSA capture callbacks.
436 *
437 * Called right after the capture device is opened, this function configures
438 * the buffer using the previously defined functions, allocates the memory,
439 * sets up the hardware registers, and then starts the DMA. When this function
440 * returns, the audio should be flowing.
441 *
442 */
443
444static int snd_card_saa7134_capture_prepare(struct snd_pcm_substream * substream)
445{
446 struct snd_pcm_runtime *runtime = substream->runtime;
447 int bswap, sign;
448 u32 fmt, control;
449 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
450 struct saa7134_dev *dev;
451 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
452
453 pcm->dev->dmasound.substream = substream;
454
455 dev = saa7134->dev;
456
457 if (snd_pcm_format_width(runtime->format) == 8)
458 fmt = 0x00;
459 else
460 fmt = 0x01;
461
462 if (snd_pcm_format_signed(runtime->format))
463 sign = 1;
464 else
465 sign = 0;
466
467 if (snd_pcm_format_big_endian(runtime->format))
468 bswap = 1;
469 else
470 bswap = 0;
471
472 switch (dev->pci->device) {
473 case PCI_DEVICE_ID_PHILIPS_SAA7134:
474 if (1 == runtime->channels)
475 fmt |= (1 << 3);
476 if (2 == runtime->channels)
477 fmt |= (3 << 3);
478 if (sign)
479 fmt |= 0x04;
480
481 fmt |= (MIXER_ADDR_TVTUNER == dev->dmasound.input) ? 0xc0 : 0x80;
482 saa_writeb(SAA7134_NUM_SAMPLES0, ((dev->dmasound.blksize - 1) & 0x0000ff));
483 saa_writeb(SAA7134_NUM_SAMPLES1, ((dev->dmasound.blksize - 1) & 0x00ff00) >> 8);
484 saa_writeb(SAA7134_NUM_SAMPLES2, ((dev->dmasound.blksize - 1) & 0xff0000) >> 16);
485 saa_writeb(SAA7134_AUDIO_FORMAT_CTRL, fmt);
486
487 break;
488 case PCI_DEVICE_ID_PHILIPS_SAA7133:
489 case PCI_DEVICE_ID_PHILIPS_SAA7135:
490 if (1 == runtime->channels)
491 fmt |= (1 << 4);
492 if (2 == runtime->channels)
493 fmt |= (2 << 4);
494 if (!sign)
495 fmt |= 0x04;
496 saa_writel(SAA7133_NUM_SAMPLES, dev->dmasound.blksize -1);
497 saa_writel(SAA7133_AUDIO_CHANNEL, 0x543210 | (fmt << 24));
498 break;
499 }
500
501 dprintk("rec_start: afmt=%d ch=%d => fmt=0x%x swap=%c\n",
502 runtime->format, runtime->channels, fmt,
503 bswap ? 'b' : '-');
504 /* dma: setup channel 6 (= AUDIO) */
505 control = SAA7134_RS_CONTROL_BURST_16 |
506 SAA7134_RS_CONTROL_ME |
507 (dev->dmasound.pt.dma >> 12);
508 if (bswap)
509 control |= SAA7134_RS_CONTROL_BSWAP;
510
511 saa_writel(SAA7134_RS_BA1(6),0);
512 saa_writel(SAA7134_RS_BA2(6),dev->dmasound.blksize);
513 saa_writel(SAA7134_RS_PITCH(6),0);
514 saa_writel(SAA7134_RS_CONTROL(6),control);
515
516 dev->dmasound.rate = runtime->rate;
517
518 /* Setup and update the card/ALSA controls */
519 snd_saa7134_capsrc_set(saa7134->capture_ctl[dev->dmasound.input], 1, 1,
520 true);
521
522 return 0;
523
524}
525
526/*
527 * ALSA pointer fetching
528 *
529 * - One of the ALSA capture callbacks.
530 *
531 * Called whenever a period elapses, it must return the current hardware
532 * position of the buffer.
533 * Also resets the read counter used to prevent overruns
534 *
535 */
536
537static snd_pcm_uframes_t
538snd_card_saa7134_capture_pointer(struct snd_pcm_substream * substream)
539{
540 struct snd_pcm_runtime *runtime = substream->runtime;
541 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
542 struct saa7134_dev *dev=pcm->dev;
543
544 if (dev->dmasound.read_count) {
545 dev->dmasound.read_count -= snd_pcm_lib_period_bytes(substream);
546 dev->dmasound.read_offset += snd_pcm_lib_period_bytes(substream);
547 if (dev->dmasound.read_offset == dev->dmasound.bufsize)
548 dev->dmasound.read_offset = 0;
549 }
550
551 return bytes_to_frames(runtime, dev->dmasound.read_offset);
552}
553
554/*
555 * ALSA hardware capabilities definition
556 *
557 * Report only 32kHz for ALSA:
558 *
559 * - SAA7133/35 uses DDEP (DemDec Easy Programming mode), which works in 32kHz
560 * only
561 * - SAA7134 for TV mode uses DemDec mode (32kHz)
562 * - Radio works in 32kHz only
563 * - When recording 48kHz from Line1/Line2, switching of capture source to TV
564 * means
565 * switching to 32kHz without any frequency translation
566 */
567
568static struct snd_pcm_hardware snd_card_saa7134_capture =
569{
570 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
571 SNDRV_PCM_INFO_BLOCK_TRANSFER |
572 SNDRV_PCM_INFO_MMAP_VALID),
573 .formats = SNDRV_PCM_FMTBIT_S16_LE | \
574 SNDRV_PCM_FMTBIT_S16_BE | \
575 SNDRV_PCM_FMTBIT_S8 | \
576 SNDRV_PCM_FMTBIT_U8 | \
577 SNDRV_PCM_FMTBIT_U16_LE | \
578 SNDRV_PCM_FMTBIT_U16_BE,
579 .rates = SNDRV_PCM_RATE_32000,
580 .rate_min = 32000,
581 .rate_max = 32000,
582 .channels_min = 1,
583 .channels_max = 2,
584 .buffer_bytes_max = (256*1024),
585 .period_bytes_min = 64,
586 .period_bytes_max = (256*1024),
587 .periods_min = 4,
588 .periods_max = 1024,
589};
590
591static void snd_card_saa7134_runtime_free(struct snd_pcm_runtime *runtime)
592{
593 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
594
595 kfree(pcm);
596}
597
598
599/*
600 * ALSA hardware params
601 *
602 * - One of the ALSA capture callbacks.
603 *
604 * Called on initialization, right before the PCM preparation
605 *
606 */
607
608static int snd_card_saa7134_hw_params(struct snd_pcm_substream * substream,
609 struct snd_pcm_hw_params * hw_params)
610{
611 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
612 struct saa7134_dev *dev;
613 unsigned int period_size, periods;
614 int err;
615
616 period_size = params_period_bytes(hw_params);
617 periods = params_periods(hw_params);
618
619 if (period_size < 0x100 || period_size > 0x10000)
620 return -EINVAL;
621 if (periods < 4)
622 return -EINVAL;
623 if (period_size * periods > 1024 * 1024)
624 return -EINVAL;
625
626 dev = saa7134->dev;
627
628 if (dev->dmasound.blocks == periods &&
629 dev->dmasound.blksize == period_size)
630 return 0;
631
632 /* release the old buffer */
633 if (substream->runtime->dma_area) {
634 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
635 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
636 dsp_buffer_free(dev);
637 substream->runtime->dma_area = NULL;
638 }
639 dev->dmasound.blocks = periods;
640 dev->dmasound.blksize = period_size;
641 dev->dmasound.bufsize = period_size * periods;
642
643 err = dsp_buffer_init(dev);
644 if (0 != err) {
645 dev->dmasound.blocks = 0;
646 dev->dmasound.blksize = 0;
647 dev->dmasound.bufsize = 0;
648 return err;
649 }
650
651 err = videobuf_dma_map(&dev->pci->dev, &dev->dmasound.dma);
652 if (err) {
653 dsp_buffer_free(dev);
654 return err;
655 }
656 err = saa7134_pgtable_alloc(dev->pci, &dev->dmasound.pt);
657 if (err) {
658 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
659 dsp_buffer_free(dev);
660 return err;
661 }
662 err = saa7134_pgtable_build(dev->pci, &dev->dmasound.pt,
663 dev->dmasound.sglist, dev->dmasound.sglen, 0);
664 if (err) {
665 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
666 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
667 dsp_buffer_free(dev);
668 return err;
669 }
670
671 /* I should be able to use runtime->dma_addr in the control
672 byte, but it doesn't work. So I allocate the DMA using the
673 V4L functions, and force ALSA to use that as the DMA area */
674
675 substream->runtime->dma_area = dev->dmasound.dma.vaddr;
676 substream->runtime->dma_bytes = dev->dmasound.bufsize;
677 substream->runtime->dma_addr = 0;
678
679 return 0;
680
681}
682
683/*
684 * ALSA hardware release
685 *
686 * - One of the ALSA capture callbacks.
687 *
688 * Called after closing the device, but before snd_card_saa7134_capture_close
689 * It stops the DMA audio and releases the buffers.
690 *
691 */
692
693static int snd_card_saa7134_hw_free(struct snd_pcm_substream * substream)
694{
695 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
696 struct saa7134_dev *dev;
697
698 dev = saa7134->dev;
699
700 if (substream->runtime->dma_area) {
701 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
702 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
703 dsp_buffer_free(dev);
704 substream->runtime->dma_area = NULL;
705 }
706
707 return 0;
708}
709
710/*
711 * ALSA capture finish
712 *
713 * - One of the ALSA capture callbacks.
714 *
715 * Called after closing the device.
716 *
717 */
718
719static int snd_card_saa7134_capture_close(struct snd_pcm_substream * substream)
720{
721 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
722 struct saa7134_dev *dev = saa7134->dev;
723
724 if (saa7134->mute_was_on) {
725 dev->ctl_mute = 1;
726 saa7134_tvaudio_setmute(dev);
727 }
728 return 0;
729}
730
731/*
732 * ALSA capture start
733 *
734 * - One of the ALSA capture callbacks.
735 *
736 * Called when opening the device. It creates and populates the PCM
737 * structure
738 *
739 */
740
741static int snd_card_saa7134_capture_open(struct snd_pcm_substream * substream)
742{
743 struct snd_pcm_runtime *runtime = substream->runtime;
744 snd_card_saa7134_pcm_t *pcm;
745 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
746 struct saa7134_dev *dev;
747 int amux, err;
748
749 if (!saa7134) {
750 printk(KERN_ERR "BUG: saa7134 can't find device struct."
751 " Can't proceed with open\n");
752 return -ENODEV;
753 }
754 dev = saa7134->dev;
755 mutex_lock(&dev->dmasound.lock);
756
757 dev->dmasound.read_count = 0;
758 dev->dmasound.read_offset = 0;
759
760 amux = dev->input->amux;
761 if ((amux < 1) || (amux > 3))
762 amux = 1;
763 dev->dmasound.input = amux - 1;
764
765 mutex_unlock(&dev->dmasound.lock);
766
767 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
768 if (pcm == NULL)
769 return -ENOMEM;
770
771 pcm->dev=saa7134->dev;
772
773 spin_lock_init(&pcm->lock);
774
775 pcm->substream = substream;
776 runtime->private_data = pcm;
777 runtime->private_free = snd_card_saa7134_runtime_free;
778 runtime->hw = snd_card_saa7134_capture;
779
780 if (dev->ctl_mute != 0) {
781 saa7134->mute_was_on = 1;
782 dev->ctl_mute = 0;
783 saa7134_tvaudio_setmute(dev);
784 }
785
786 err = snd_pcm_hw_constraint_integer(runtime,
787 SNDRV_PCM_HW_PARAM_PERIODS);
788 if (err < 0)
789 return err;
790
791 err = snd_pcm_hw_constraint_step(runtime, 0,
792 SNDRV_PCM_HW_PARAM_PERIODS, 2);
793 if (err < 0)
794 return err;
795
796 return 0;
797}
798
799/*
800 * page callback (needed for mmap)
801 */
802
803static struct page *snd_card_saa7134_page(struct snd_pcm_substream *substream,
804 unsigned long offset)
805{
806 void *pageptr = substream->runtime->dma_area + offset;
807 return vmalloc_to_page(pageptr);
808}
809
810/*
811 * ALSA capture callbacks definition
812 */
813
814static struct snd_pcm_ops snd_card_saa7134_capture_ops = {
815 .open = snd_card_saa7134_capture_open,
816 .close = snd_card_saa7134_capture_close,
817 .ioctl = snd_pcm_lib_ioctl,
818 .hw_params = snd_card_saa7134_hw_params,
819 .hw_free = snd_card_saa7134_hw_free,
820 .prepare = snd_card_saa7134_capture_prepare,
821 .trigger = snd_card_saa7134_capture_trigger,
822 .pointer = snd_card_saa7134_capture_pointer,
823 .page = snd_card_saa7134_page,
824};
825
826/*
827 * ALSA PCM setup
828 *
829 * Called when initializing the board. Sets up the name and hooks up
830 * the callbacks
831 *
832 */
833
834static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device)
835{
836 struct snd_pcm *pcm;
837 int err;
838
839 if ((err = snd_pcm_new(saa7134->card, "SAA7134 PCM", device, 0, 1, &pcm)) < 0)
840 return err;
841 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_card_saa7134_capture_ops);
842 pcm->private_data = saa7134;
843 pcm->info_flags = 0;
844 strcpy(pcm->name, "SAA7134 PCM");
845 return 0;
846}
847
848#define SAA713x_VOLUME(xname, xindex, addr) \
849{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
850 .info = snd_saa7134_volume_info, \
851 .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \
852 .private_value = addr }
853
854static int snd_saa7134_volume_info(struct snd_kcontrol * kcontrol,
855 struct snd_ctl_elem_info * uinfo)
856{
857 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
858 uinfo->count = 2;
859 uinfo->value.integer.min = 0;
860 uinfo->value.integer.max = 20;
861 return 0;
862}
863
864static int snd_saa7134_volume_get(struct snd_kcontrol * kcontrol,
865 struct snd_ctl_elem_value * ucontrol)
866{
867 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
868 int addr = kcontrol->private_value;
869
870 ucontrol->value.integer.value[0] = chip->mixer_volume[addr][0];
871 ucontrol->value.integer.value[1] = chip->mixer_volume[addr][1];
872 return 0;
873}
874
875static int snd_saa7134_volume_put(struct snd_kcontrol * kcontrol,
876 struct snd_ctl_elem_value * ucontrol)
877{
878 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
879 struct saa7134_dev *dev = chip->dev;
880
881 int change, addr = kcontrol->private_value;
882 int left, right;
883
884 left = ucontrol->value.integer.value[0];
885 if (left < 0)
886 left = 0;
887 if (left > 20)
888 left = 20;
889 right = ucontrol->value.integer.value[1];
890 if (right < 0)
891 right = 0;
892 if (right > 20)
893 right = 20;
894 spin_lock_irq(&chip->mixer_lock);
895 change = 0;
896 if (chip->mixer_volume[addr][0] != left) {
897 change = 1;
898 right = left;
899 }
900 if (chip->mixer_volume[addr][1] != right) {
901 change = 1;
902 left = right;
903 }
904 if (change) {
905 switch (dev->pci->device) {
906 case PCI_DEVICE_ID_PHILIPS_SAA7134:
907 switch (addr) {
908 case MIXER_ADDR_TVTUNER:
909 left = 20;
910 break;
911 case MIXER_ADDR_LINE1:
912 saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x10,
913 (left > 10) ? 0x00 : 0x10);
914 break;
915 case MIXER_ADDR_LINE2:
916 saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x20,
917 (left > 10) ? 0x00 : 0x20);
918 break;
919 }
920 break;
921 case PCI_DEVICE_ID_PHILIPS_SAA7133:
922 case PCI_DEVICE_ID_PHILIPS_SAA7135:
923 switch (addr) {
924 case MIXER_ADDR_TVTUNER:
925 left = 20;
926 break;
927 case MIXER_ADDR_LINE1:
928 saa_andorb(0x0594, 0x10,
929 (left > 10) ? 0x00 : 0x10);
930 break;
931 case MIXER_ADDR_LINE2:
932 saa_andorb(0x0594, 0x20,
933 (left > 10) ? 0x00 : 0x20);
934 break;
935 }
936 break;
937 }
938 chip->mixer_volume[addr][0] = left;
939 chip->mixer_volume[addr][1] = right;
940 }
941 spin_unlock_irq(&chip->mixer_lock);
942 return change;
943}
944
945#define SAA713x_CAPSRC(xname, xindex, addr) \
946{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
947 .info = snd_saa7134_capsrc_info, \
948 .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \
949 .private_value = addr }
950
951static int snd_saa7134_capsrc_info(struct snd_kcontrol * kcontrol,
952 struct snd_ctl_elem_info * uinfo)
953{
954 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
955 uinfo->count = 2;
956 uinfo->value.integer.min = 0;
957 uinfo->value.integer.max = 1;
958 return 0;
959}
960
961static int snd_saa7134_capsrc_get(struct snd_kcontrol * kcontrol,
962 struct snd_ctl_elem_value * ucontrol)
963{
964 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
965 int addr = kcontrol->private_value;
966
967 spin_lock_irq(&chip->mixer_lock);
968 if (chip->capture_source_addr == addr) {
969 ucontrol->value.integer.value[0] = chip->capture_source[0];
970 ucontrol->value.integer.value[1] = chip->capture_source[1];
971 } else {
972 ucontrol->value.integer.value[0] = 0;
973 ucontrol->value.integer.value[1] = 0;
974 }
975 spin_unlock_irq(&chip->mixer_lock);
976
977 return 0;
978}
979
980static int snd_saa7134_capsrc_put(struct snd_kcontrol * kcontrol,
981 struct snd_ctl_elem_value * ucontrol)
982{
983 int left, right;
984 left = ucontrol->value.integer.value[0] & 1;
985 right = ucontrol->value.integer.value[1] & 1;
986
987 return snd_saa7134_capsrc_set(kcontrol, left, right, false);
988}
989
990static struct snd_kcontrol_new snd_saa7134_volume_controls[] = {
991SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER),
992SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1),
993SAA713x_VOLUME("Line Volume", 2, MIXER_ADDR_LINE2),
994};
995
996static struct snd_kcontrol_new snd_saa7134_capture_controls[] = {
997SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER),
998SAA713x_CAPSRC("Line Capture Switch", 1, MIXER_ADDR_LINE1),
999SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2),
1000};
1001
1002/*
1003 * ALSA mixer setup
1004 *
1005 * Called when initializing the board. Sets up the name and hooks up
1006 * the callbacks
1007 *
1008 */
1009
1010static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip)
1011{
1012 struct snd_card *card = chip->card;
1013 struct snd_kcontrol *kcontrol;
1014 unsigned int idx;
1015 int err, addr;
1016
1017 strcpy(card->mixername, "SAA7134 Mixer");
1018
1019 for (idx = 0; idx < ARRAY_SIZE(snd_saa7134_volume_controls); idx++) {
1020 kcontrol = snd_ctl_new1(&snd_saa7134_volume_controls[idx],
1021 chip);
1022 err = snd_ctl_add(card, kcontrol);
1023 if (err < 0)
1024 return err;
1025 }
1026
1027 for (idx = 0; idx < ARRAY_SIZE(snd_saa7134_capture_controls); idx++) {
1028 kcontrol = snd_ctl_new1(&snd_saa7134_capture_controls[idx],
1029 chip);
1030 addr = snd_saa7134_capture_controls[idx].private_value;
1031 chip->capture_ctl[addr] = kcontrol;
1032 err = snd_ctl_add(card, kcontrol);
1033 if (err < 0)
1034 return err;
1035 }
1036
1037 chip->capture_source_addr = MIXER_ADDR_UNSELECTED;
1038 return 0;
1039}
1040
1041static void snd_saa7134_free(struct snd_card * card)
1042{
1043 snd_card_saa7134_t *chip = card->private_data;
1044
1045 if (chip->dev->dmasound.priv_data == NULL)
1046 return;
1047
1048 if (chip->irq >= 0)
1049 free_irq(chip->irq, &chip->dev->dmasound);
1050
1051 chip->dev->dmasound.priv_data = NULL;
1052
1053}
1054
1055/*
1056 * ALSA initialization
1057 *
1058 * Called by the init routine, once for each saa7134 device present,
1059 * it creates the basic structures and registers the ALSA devices
1060 *
1061 */
1062
1063static int alsa_card_saa7134_create(struct saa7134_dev *dev, int devnum)
1064{
1065
1066 struct snd_card *card;
1067 snd_card_saa7134_t *chip;
1068 int err;
1069
1070
1071 if (devnum >= SNDRV_CARDS)
1072 return -ENODEV;
1073 if (!enable[devnum])
1074 return -ENODEV;
1075
1076 err = snd_card_new(&dev->pci->dev, index[devnum], id[devnum],
1077 THIS_MODULE, sizeof(snd_card_saa7134_t), &card);
1078 if (err < 0)
1079 return err;
1080
1081 strcpy(card->driver, "SAA7134");
1082
1083 /* Card "creation" */
1084
1085 card->private_free = snd_saa7134_free;
1086 chip = card->private_data;
1087
1088 spin_lock_init(&chip->lock);
1089 spin_lock_init(&chip->mixer_lock);
1090
1091 chip->dev = dev;
1092
1093 chip->card = card;
1094
1095 chip->pci = dev->pci;
1096 chip->iobase = pci_resource_start(dev->pci, 0);
1097
1098
1099 err = request_irq(dev->pci->irq, saa7134_alsa_irq,
1100 IRQF_SHARED, dev->name,
1101 (void*) &dev->dmasound);
1102
1103 if (err < 0) {
1104 printk(KERN_ERR "%s: can't get IRQ %d for ALSA\n",
1105 dev->name, dev->pci->irq);
1106 goto __nodev;
1107 }
1108
1109 chip->irq = dev->pci->irq;
1110
1111 mutex_init(&dev->dmasound.lock);
1112
1113 if ((err = snd_card_saa7134_new_mixer(chip)) < 0)
1114 goto __nodev;
1115
1116 if ((err = snd_card_saa7134_pcm(chip, 0)) < 0)
1117 goto __nodev;
1118
1119 /* End of "creation" */
1120
1121 strcpy(card->shortname, "SAA7134");
1122 sprintf(card->longname, "%s at 0x%lx irq %d",
1123 chip->dev->name, chip->iobase, chip->irq);
1124
1125 printk(KERN_INFO "%s/alsa: %s registered as card %d\n",dev->name,card->longname,index[devnum]);
1126
1127 if ((err = snd_card_register(card)) == 0) {
1128 snd_saa7134_cards[devnum] = card;
1129 return 0;
1130 }
1131
1132__nodev:
1133 snd_card_free(card);
1134 return err;
1135}
1136
1137
1138static int alsa_device_init(struct saa7134_dev *dev)
1139{
1140 dev->dmasound.priv_data = dev;
1141 alsa_card_saa7134_create(dev,dev->nr);
1142 return 1;
1143}
1144
1145static int alsa_device_exit(struct saa7134_dev *dev)
1146{
1147
1148 snd_card_free(snd_saa7134_cards[dev->nr]);
1149 snd_saa7134_cards[dev->nr] = NULL;
1150 return 1;
1151}
1152
1153/*
1154 * Module initializer
1155 *
1156 * Loops through present saa7134 cards, and assigns an ALSA device
1157 * to each one
1158 *
1159 */
1160
1161static int saa7134_alsa_init(void)
1162{
1163 struct saa7134_dev *dev = NULL;
1164 struct list_head *list;
1165
1166 saa7134_dmasound_init = alsa_device_init;
1167 saa7134_dmasound_exit = alsa_device_exit;
1168
1169 printk(KERN_INFO "saa7134 ALSA driver for DMA sound loaded\n");
1170
1171 list_for_each(list,&saa7134_devlist) {
1172 dev = list_entry(list, struct saa7134_dev, devlist);
1173 if (dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7130)
1174 printk(KERN_INFO "%s/alsa: %s doesn't support digital audio\n",
1175 dev->name, saa7134_boards[dev->board].name);
1176 else
1177 alsa_device_init(dev);
1178 }
1179
1180 if (dev == NULL)
1181 printk(KERN_INFO "saa7134 ALSA: no saa7134 cards found\n");
1182
1183 return 0;
1184
1185}
1186
1187/*
1188 * Module destructor
1189 */
1190
1191static void saa7134_alsa_exit(void)
1192{
1193 int idx;
1194
1195 for (idx = 0; idx < SNDRV_CARDS; idx++) {
1196 snd_card_free(snd_saa7134_cards[idx]);
1197 }
1198
1199 saa7134_dmasound_init = NULL;
1200 saa7134_dmasound_exit = NULL;
1201 printk(KERN_INFO "saa7134 ALSA driver for DMA sound unloaded\n");
1202
1203 return;
1204}
1205
1206/* We initialize this late, to make sure the sound system is up and running */
1207late_initcall(saa7134_alsa_init);
1208module_exit(saa7134_alsa_exit);
1209MODULE_LICENSE("GPL");
1210MODULE_AUTHOR("Ricardo Cerqueira");