ALSA: aaci - Clean up duplicate code
[firewire-audio.git] / sound / arm / aaci.c
blob83b0328d389e7c1e807945a47677f92acea60b8c
1 /*
2 * linux/sound/arm/aaci.c - ARM PrimeCell AACI PL041 driver
4 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Documentation: ARM DDI 0173B
12 #include <linux/module.h>
13 #include <linux/delay.h>
14 #include <linux/init.h>
15 #include <linux/ioport.h>
16 #include <linux/device.h>
17 #include <linux/spinlock.h>
18 #include <linux/interrupt.h>
19 #include <linux/err.h>
20 #include <linux/amba/bus.h>
21 #include <linux/io.h>
23 #include <sound/core.h>
24 #include <sound/initval.h>
25 #include <sound/ac97_codec.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
29 #include "aaci.h"
30 #include "devdma.h"
32 #define DRIVER_NAME "aaci-pl041"
35 * PM support is not complete. Turn it off.
37 #undef CONFIG_PM
39 static void aaci_ac97_select_codec(struct aaci *aaci, struct snd_ac97 *ac97)
41 u32 v, maincr = aaci->maincr | MAINCR_SCRA(ac97->num);
44 * Ensure that the slot 1/2 RX registers are empty.
46 v = readl(aaci->base + AACI_SLFR);
47 if (v & SLFR_2RXV)
48 readl(aaci->base + AACI_SL2RX);
49 if (v & SLFR_1RXV)
50 readl(aaci->base + AACI_SL1RX);
52 writel(maincr, aaci->base + AACI_MAINCR);
56 * P29:
57 * The recommended use of programming the external codec through slot 1
58 * and slot 2 data is to use the channels during setup routines and the
59 * slot register at any other time. The data written into slot 1, slot 2
60 * and slot 12 registers is transmitted only when their corresponding
61 * SI1TxEn, SI2TxEn and SI12TxEn bits are set in the AACI_MAINCR
62 * register.
64 static void aaci_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
65 unsigned short val)
67 struct aaci *aaci = ac97->private_data;
68 u32 v;
69 int timeout = 5000;
71 if (ac97->num >= 4)
72 return;
74 mutex_lock(&aaci->ac97_sem);
76 aaci_ac97_select_codec(aaci, ac97);
79 * P54: You must ensure that AACI_SL2TX is always written
80 * to, if required, before data is written to AACI_SL1TX.
82 writel(val << 4, aaci->base + AACI_SL2TX);
83 writel(reg << 12, aaci->base + AACI_SL1TX);
86 * Wait for the transmission of both slots to complete.
88 do {
89 v = readl(aaci->base + AACI_SLFR);
90 } while ((v & (SLFR_1TXB|SLFR_2TXB)) && --timeout);
92 if (!timeout)
93 dev_err(&aaci->dev->dev,
94 "timeout waiting for write to complete\n");
96 mutex_unlock(&aaci->ac97_sem);
100 * Read an AC'97 register.
102 static unsigned short aaci_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
104 struct aaci *aaci = ac97->private_data;
105 u32 v;
106 int timeout = 5000;
107 int retries = 10;
109 if (ac97->num >= 4)
110 return ~0;
112 mutex_lock(&aaci->ac97_sem);
114 aaci_ac97_select_codec(aaci, ac97);
117 * Write the register address to slot 1.
119 writel((reg << 12) | (1 << 19), aaci->base + AACI_SL1TX);
122 * Wait for the transmission to complete.
124 do {
125 v = readl(aaci->base + AACI_SLFR);
126 } while ((v & SLFR_1TXB) && --timeout);
128 if (!timeout) {
129 dev_err(&aaci->dev->dev, "timeout on slot 1 TX busy\n");
130 v = ~0;
131 goto out;
135 * Give the AC'97 codec more than enough time
136 * to respond. (42us = ~2 frames at 48kHz.)
138 udelay(42);
141 * Wait for slot 2 to indicate data.
143 timeout = 5000;
144 do {
145 cond_resched();
146 v = readl(aaci->base + AACI_SLFR) & (SLFR_1RXV|SLFR_2RXV);
147 } while ((v != (SLFR_1RXV|SLFR_2RXV)) && --timeout);
149 if (!timeout) {
150 dev_err(&aaci->dev->dev, "timeout on RX valid\n");
151 v = ~0;
152 goto out;
155 do {
156 v = readl(aaci->base + AACI_SL1RX) >> 12;
157 if (v == reg) {
158 v = readl(aaci->base + AACI_SL2RX) >> 4;
159 break;
160 } else if (--retries) {
161 dev_warn(&aaci->dev->dev,
162 "ac97 read back fail. retry\n");
163 continue;
164 } else {
165 dev_warn(&aaci->dev->dev,
166 "wrong ac97 register read back (%x != %x)\n",
167 v, reg);
168 v = ~0;
170 } while (retries);
171 out:
172 mutex_unlock(&aaci->ac97_sem);
173 return v;
176 static inline void aaci_chan_wait_ready(struct aaci_runtime *aacirun)
178 u32 val;
179 int timeout = 5000;
181 do {
182 val = readl(aacirun->base + AACI_SR);
183 } while (val & (SR_TXB|SR_RXB) && timeout--);
189 * Interrupt support.
191 static void aaci_fifo_irq(struct aaci *aaci, int channel, u32 mask)
193 if (mask & ISR_ORINTR) {
194 dev_warn(&aaci->dev->dev, "RX overrun on chan %d\n", channel);
195 writel(ICLR_RXOEC1 << channel, aaci->base + AACI_INTCLR);
198 if (mask & ISR_RXTOINTR) {
199 dev_warn(&aaci->dev->dev, "RX timeout on chan %d\n", channel);
200 writel(ICLR_RXTOFEC1 << channel, aaci->base + AACI_INTCLR);
203 if (mask & ISR_RXINTR) {
204 struct aaci_runtime *aacirun = &aaci->capture;
205 void *ptr;
207 if (!aacirun->substream || !aacirun->start) {
208 dev_warn(&aaci->dev->dev, "RX interrupt???\n");
209 writel(0, aacirun->base + AACI_IE);
210 return;
212 ptr = aacirun->ptr;
214 do {
215 unsigned int len = aacirun->fifosz;
216 u32 val;
218 if (aacirun->bytes <= 0) {
219 aacirun->bytes += aacirun->period;
220 aacirun->ptr = ptr;
221 spin_unlock(&aaci->lock);
222 snd_pcm_period_elapsed(aacirun->substream);
223 spin_lock(&aaci->lock);
225 if (!(aacirun->cr & CR_EN))
226 break;
228 val = readl(aacirun->base + AACI_SR);
229 if (!(val & SR_RXHF))
230 break;
231 if (!(val & SR_RXFF))
232 len >>= 1;
234 aacirun->bytes -= len;
236 /* reading 16 bytes at a time */
237 for( ; len > 0; len -= 16) {
238 asm(
239 "ldmia %1, {r0, r1, r2, r3}\n\t"
240 "stmia %0!, {r0, r1, r2, r3}"
241 : "+r" (ptr)
242 : "r" (aacirun->fifo)
243 : "r0", "r1", "r2", "r3", "cc");
245 if (ptr >= aacirun->end)
246 ptr = aacirun->start;
248 } while(1);
249 aacirun->ptr = ptr;
252 if (mask & ISR_URINTR) {
253 dev_dbg(&aaci->dev->dev, "TX underrun on chan %d\n", channel);
254 writel(ICLR_TXUEC1 << channel, aaci->base + AACI_INTCLR);
257 if (mask & ISR_TXINTR) {
258 struct aaci_runtime *aacirun = &aaci->playback;
259 void *ptr;
261 if (!aacirun->substream || !aacirun->start) {
262 dev_warn(&aaci->dev->dev, "TX interrupt???\n");
263 writel(0, aacirun->base + AACI_IE);
264 return;
267 ptr = aacirun->ptr;
268 do {
269 unsigned int len = aacirun->fifosz;
270 u32 val;
272 if (aacirun->bytes <= 0) {
273 aacirun->bytes += aacirun->period;
274 aacirun->ptr = ptr;
275 spin_unlock(&aaci->lock);
276 snd_pcm_period_elapsed(aacirun->substream);
277 spin_lock(&aaci->lock);
279 if (!(aacirun->cr & CR_EN))
280 break;
282 val = readl(aacirun->base + AACI_SR);
283 if (!(val & SR_TXHE))
284 break;
285 if (!(val & SR_TXFE))
286 len >>= 1;
288 aacirun->bytes -= len;
290 /* writing 16 bytes at a time */
291 for ( ; len > 0; len -= 16) {
292 asm(
293 "ldmia %0!, {r0, r1, r2, r3}\n\t"
294 "stmia %1, {r0, r1, r2, r3}"
295 : "+r" (ptr)
296 : "r" (aacirun->fifo)
297 : "r0", "r1", "r2", "r3", "cc");
299 if (ptr >= aacirun->end)
300 ptr = aacirun->start;
302 } while (1);
304 aacirun->ptr = ptr;
308 static irqreturn_t aaci_irq(int irq, void *devid)
310 struct aaci *aaci = devid;
311 u32 mask;
312 int i;
314 spin_lock(&aaci->lock);
315 mask = readl(aaci->base + AACI_ALLINTS);
316 if (mask) {
317 u32 m = mask;
318 for (i = 0; i < 4; i++, m >>= 7) {
319 if (m & 0x7f) {
320 aaci_fifo_irq(aaci, i, m);
324 spin_unlock(&aaci->lock);
326 return mask ? IRQ_HANDLED : IRQ_NONE;
332 * ALSA support.
335 struct aaci_stream {
336 unsigned char codec_idx;
337 unsigned char rate_idx;
340 static struct aaci_stream aaci_streams[] = {
341 [ACSTREAM_FRONT] = {
342 .codec_idx = 0,
343 .rate_idx = AC97_RATES_FRONT_DAC,
345 [ACSTREAM_SURROUND] = {
346 .codec_idx = 0,
347 .rate_idx = AC97_RATES_SURR_DAC,
349 [ACSTREAM_LFE] = {
350 .codec_idx = 0,
351 .rate_idx = AC97_RATES_LFE_DAC,
355 static inline unsigned int aaci_rate_mask(struct aaci *aaci, int streamid)
357 struct aaci_stream *s = aaci_streams + streamid;
358 return aaci->ac97_bus->codec[s->codec_idx]->rates[s->rate_idx];
361 static unsigned int rate_list[] = {
362 5512, 8000, 11025, 16000, 22050, 32000, 44100,
363 48000, 64000, 88200, 96000, 176400, 192000
367 * Double-rate rule: we can support double rate iff channels == 2
368 * (unimplemented)
370 static int
371 aaci_rule_rate_by_channels(struct snd_pcm_hw_params *p, struct snd_pcm_hw_rule *rule)
373 struct aaci *aaci = rule->private;
374 unsigned int rate_mask = SNDRV_PCM_RATE_8000_48000|SNDRV_PCM_RATE_5512;
375 struct snd_interval *c = hw_param_interval(p, SNDRV_PCM_HW_PARAM_CHANNELS);
377 switch (c->max) {
378 case 6:
379 rate_mask &= aaci_rate_mask(aaci, ACSTREAM_LFE);
380 case 4:
381 rate_mask &= aaci_rate_mask(aaci, ACSTREAM_SURROUND);
382 case 2:
383 rate_mask &= aaci_rate_mask(aaci, ACSTREAM_FRONT);
386 return snd_interval_list(hw_param_interval(p, rule->var),
387 ARRAY_SIZE(rate_list), rate_list,
388 rate_mask);
391 static struct snd_pcm_hardware aaci_hw_info = {
392 .info = SNDRV_PCM_INFO_MMAP |
393 SNDRV_PCM_INFO_MMAP_VALID |
394 SNDRV_PCM_INFO_INTERLEAVED |
395 SNDRV_PCM_INFO_BLOCK_TRANSFER |
396 SNDRV_PCM_INFO_RESUME,
399 * ALSA doesn't support 18-bit or 20-bit packed into 32-bit
400 * words. It also doesn't support 12-bit at all.
402 .formats = SNDRV_PCM_FMTBIT_S16_LE,
404 /* should this be continuous or knot? */
405 .rates = SNDRV_PCM_RATE_CONTINUOUS,
406 .rate_max = 48000,
407 .rate_min = 4000,
408 .channels_min = 2,
409 .channels_max = 6,
410 .buffer_bytes_max = 64 * 1024,
411 .period_bytes_min = 256,
412 .period_bytes_max = PAGE_SIZE,
413 .periods_min = 4,
414 .periods_max = PAGE_SIZE / 16,
417 static int __aaci_pcm_open(struct aaci *aaci,
418 struct snd_pcm_substream *substream,
419 struct aaci_runtime *aacirun)
421 struct snd_pcm_runtime *runtime = substream->runtime;
422 int ret;
424 aacirun->substream = substream;
425 runtime->private_data = aacirun;
426 runtime->hw = aaci_hw_info;
429 * FIXME: ALSA specifies fifo_size in bytes. If we're in normal
430 * mode, each 32-bit word contains one sample. If we're in
431 * compact mode, each 32-bit word contains two samples, effectively
432 * halving the FIFO size. However, we don't know for sure which
433 * we'll be using at this point. We set this to the lower limit.
435 runtime->hw.fifo_size = aaci->fifosize * 2;
438 * Add rule describing hardware rate dependency
439 * on the number of channels.
441 ret = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
442 aaci_rule_rate_by_channels, aaci,
443 SNDRV_PCM_HW_PARAM_CHANNELS,
444 SNDRV_PCM_HW_PARAM_RATE, -1);
445 if (ret)
446 goto out;
448 ret = request_irq(aaci->dev->irq[0], aaci_irq, IRQF_SHARED|IRQF_DISABLED,
449 DRIVER_NAME, aaci);
450 if (ret)
451 goto out;
453 return 0;
455 out:
456 return ret;
461 * Common ALSA stuff
463 static int aaci_pcm_close(struct snd_pcm_substream *substream)
465 struct aaci *aaci = substream->private_data;
466 struct aaci_runtime *aacirun = substream->runtime->private_data;
468 WARN_ON(aacirun->cr & CR_EN);
470 aacirun->substream = NULL;
471 free_irq(aaci->dev->irq[0], aaci);
473 return 0;
476 static int aaci_pcm_hw_free(struct snd_pcm_substream *substream)
478 struct aaci_runtime *aacirun = substream->runtime->private_data;
481 * This must not be called with the device enabled.
483 WARN_ON(aacirun->cr & CR_EN);
485 if (aacirun->pcm_open)
486 snd_ac97_pcm_close(aacirun->pcm);
487 aacirun->pcm_open = 0;
490 * Clear out the DMA and any allocated buffers.
492 devdma_hw_free(NULL, substream);
494 return 0;
497 static int aaci_pcm_hw_params(struct snd_pcm_substream *substream,
498 struct aaci_runtime *aacirun,
499 struct snd_pcm_hw_params *params)
501 int err;
503 aaci_pcm_hw_free(substream);
504 if (aacirun->pcm_open) {
505 snd_ac97_pcm_close(aacirun->pcm);
506 aacirun->pcm_open = 0;
509 err = devdma_hw_alloc(NULL, substream,
510 params_buffer_bytes(params));
511 if (err < 0)
512 goto out;
514 err = snd_ac97_pcm_open(aacirun->pcm, params_rate(params),
515 params_channels(params),
516 aacirun->pcm->r[0].slots);
517 if (err)
518 goto out;
520 aacirun->pcm_open = 1;
522 out:
523 return err;
526 static int aaci_pcm_prepare(struct snd_pcm_substream *substream)
528 struct snd_pcm_runtime *runtime = substream->runtime;
529 struct aaci_runtime *aacirun = runtime->private_data;
531 aacirun->start = (void *)runtime->dma_area;
532 aacirun->end = aacirun->start + snd_pcm_lib_buffer_bytes(substream);
533 aacirun->ptr = aacirun->start;
534 aacirun->period =
535 aacirun->bytes = frames_to_bytes(runtime, runtime->period_size);
537 return 0;
540 static snd_pcm_uframes_t aaci_pcm_pointer(struct snd_pcm_substream *substream)
542 struct snd_pcm_runtime *runtime = substream->runtime;
543 struct aaci_runtime *aacirun = runtime->private_data;
544 ssize_t bytes = aacirun->ptr - aacirun->start;
546 return bytes_to_frames(runtime, bytes);
549 static int aaci_pcm_mmap(struct snd_pcm_substream *substream, struct vm_area_struct *vma)
551 return devdma_mmap(NULL, substream, vma);
556 * Playback specific ALSA stuff
558 static const u32 channels_to_txmask[] = {
559 [2] = CR_SL3 | CR_SL4,
560 [4] = CR_SL3 | CR_SL4 | CR_SL7 | CR_SL8,
561 [6] = CR_SL3 | CR_SL4 | CR_SL7 | CR_SL8 | CR_SL6 | CR_SL9,
565 * We can support two and four channel audio. Unfortunately
566 * six channel audio requires a non-standard channel ordering:
567 * 2 -> FL(3), FR(4)
568 * 4 -> FL(3), FR(4), SL(7), SR(8)
569 * 6 -> FL(3), FR(4), SL(7), SR(8), C(6), LFE(9) (required)
570 * FL(3), FR(4), C(6), SL(7), SR(8), LFE(9) (actual)
571 * This requires an ALSA configuration file to correct.
573 static unsigned int channel_list[] = { 2, 4, 6 };
575 static int
576 aaci_rule_channels(struct snd_pcm_hw_params *p, struct snd_pcm_hw_rule *rule)
578 struct aaci *aaci = rule->private;
579 unsigned int chan_mask = 1 << 0, slots;
582 * pcms[0] is the our 5.1 PCM instance.
584 slots = aaci->ac97_bus->pcms[0].r[0].slots;
585 if (slots & (1 << AC97_SLOT_PCM_SLEFT)) {
586 chan_mask |= 1 << 1;
587 if (slots & (1 << AC97_SLOT_LFE))
588 chan_mask |= 1 << 2;
591 return snd_interval_list(hw_param_interval(p, rule->var),
592 ARRAY_SIZE(channel_list), channel_list,
593 chan_mask);
596 static int aaci_pcm_open(struct snd_pcm_substream *substream)
598 struct aaci *aaci = substream->private_data;
599 int ret;
602 * Add rule describing channel dependency.
604 ret = snd_pcm_hw_rule_add(substream->runtime, 0,
605 SNDRV_PCM_HW_PARAM_CHANNELS,
606 aaci_rule_channels, aaci,
607 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
608 if (ret)
609 return ret;
611 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
612 ret = __aaci_pcm_open(aaci, substream, &aaci->playback);
613 } else {
614 ret = __aaci_pcm_open(aaci, substream, &aaci->capture);
616 return ret;
619 static int aaci_pcm_playback_hw_params(struct snd_pcm_substream *substream,
620 struct snd_pcm_hw_params *params)
622 struct aaci *aaci = substream->private_data;
623 struct aaci_runtime *aacirun = substream->runtime->private_data;
624 unsigned int channels = params_channels(params);
625 int ret;
627 WARN_ON(channels >= ARRAY_SIZE(channels_to_txmask) ||
628 !channels_to_txmask[channels]);
630 ret = aaci_pcm_hw_params(substream, aacirun, params);
633 * Enable FIFO, compact mode, 16 bits per sample.
634 * FIXME: double rate slots?
636 if (ret >= 0) {
637 aacirun->cr = CR_FEN | CR_COMPACT | CR_SZ16;
638 aacirun->cr |= channels_to_txmask[channels];
640 aacirun->fifosz = aaci->fifosize * 4;
641 if (aacirun->cr & CR_COMPACT)
642 aacirun->fifosz >>= 1;
644 return ret;
647 static void aaci_pcm_playback_stop(struct aaci_runtime *aacirun)
649 u32 ie;
651 ie = readl(aacirun->base + AACI_IE);
652 ie &= ~(IE_URIE|IE_TXIE);
653 writel(ie, aacirun->base + AACI_IE);
654 aacirun->cr &= ~CR_EN;
655 aaci_chan_wait_ready(aacirun);
656 writel(aacirun->cr, aacirun->base + AACI_TXCR);
659 static void aaci_pcm_playback_start(struct aaci_runtime *aacirun)
661 u32 ie;
663 aaci_chan_wait_ready(aacirun);
664 aacirun->cr |= CR_EN;
666 ie = readl(aacirun->base + AACI_IE);
667 ie |= IE_URIE | IE_TXIE;
668 writel(ie, aacirun->base + AACI_IE);
669 writel(aacirun->cr, aacirun->base + AACI_TXCR);
672 static int aaci_pcm_playback_trigger(struct snd_pcm_substream *substream, int cmd)
674 struct aaci *aaci = substream->private_data;
675 struct aaci_runtime *aacirun = substream->runtime->private_data;
676 unsigned long flags;
677 int ret = 0;
679 spin_lock_irqsave(&aaci->lock, flags);
680 switch (cmd) {
681 case SNDRV_PCM_TRIGGER_START:
682 aaci_pcm_playback_start(aacirun);
683 break;
685 case SNDRV_PCM_TRIGGER_RESUME:
686 aaci_pcm_playback_start(aacirun);
687 break;
689 case SNDRV_PCM_TRIGGER_STOP:
690 aaci_pcm_playback_stop(aacirun);
691 break;
693 case SNDRV_PCM_TRIGGER_SUSPEND:
694 aaci_pcm_playback_stop(aacirun);
695 break;
697 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
698 break;
700 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
701 break;
703 default:
704 ret = -EINVAL;
706 spin_unlock_irqrestore(&aaci->lock, flags);
708 return ret;
711 static struct snd_pcm_ops aaci_playback_ops = {
712 .open = aaci_pcm_open,
713 .close = aaci_pcm_close,
714 .ioctl = snd_pcm_lib_ioctl,
715 .hw_params = aaci_pcm_playback_hw_params,
716 .hw_free = aaci_pcm_hw_free,
717 .prepare = aaci_pcm_prepare,
718 .trigger = aaci_pcm_playback_trigger,
719 .pointer = aaci_pcm_pointer,
720 .mmap = aaci_pcm_mmap,
723 static int aaci_pcm_capture_hw_params(struct snd_pcm_substream *substream,
724 struct snd_pcm_hw_params *params)
726 struct aaci *aaci = substream->private_data;
727 struct aaci_runtime *aacirun = substream->runtime->private_data;
728 int ret;
730 ret = aaci_pcm_hw_params(substream, aacirun, params);
732 if (ret >= 0) {
733 aacirun->cr = CR_FEN | CR_COMPACT | CR_SZ16;
735 /* Line in record: slot 3 and 4 */
736 aacirun->cr |= CR_SL3 | CR_SL4;
738 aacirun->fifosz = aaci->fifosize * 4;
740 if (aacirun->cr & CR_COMPACT)
741 aacirun->fifosz >>= 1;
743 return ret;
746 static void aaci_pcm_capture_stop(struct aaci_runtime *aacirun)
748 u32 ie;
750 aaci_chan_wait_ready(aacirun);
752 ie = readl(aacirun->base + AACI_IE);
753 ie &= ~(IE_ORIE | IE_RXIE);
754 writel(ie, aacirun->base+AACI_IE);
756 aacirun->cr &= ~CR_EN;
758 writel(aacirun->cr, aacirun->base + AACI_RXCR);
761 static void aaci_pcm_capture_start(struct aaci_runtime *aacirun)
763 u32 ie;
765 aaci_chan_wait_ready(aacirun);
767 #ifdef DEBUG
768 /* RX Timeout value: bits 28:17 in RXCR */
769 aacirun->cr |= 0xf << 17;
770 #endif
772 aacirun->cr |= CR_EN;
773 writel(aacirun->cr, aacirun->base + AACI_RXCR);
775 ie = readl(aacirun->base + AACI_IE);
776 ie |= IE_ORIE |IE_RXIE; // overrun and rx interrupt -- half full
777 writel(ie, aacirun->base + AACI_IE);
780 static int aaci_pcm_capture_trigger(struct snd_pcm_substream *substream, int cmd)
782 struct aaci *aaci = substream->private_data;
783 struct aaci_runtime *aacirun = substream->runtime->private_data;
784 unsigned long flags;
785 int ret = 0;
787 spin_lock_irqsave(&aaci->lock, flags);
789 switch (cmd) {
790 case SNDRV_PCM_TRIGGER_START:
791 aaci_pcm_capture_start(aacirun);
792 break;
794 case SNDRV_PCM_TRIGGER_RESUME:
795 aaci_pcm_capture_start(aacirun);
796 break;
798 case SNDRV_PCM_TRIGGER_STOP:
799 aaci_pcm_capture_stop(aacirun);
800 break;
802 case SNDRV_PCM_TRIGGER_SUSPEND:
803 aaci_pcm_capture_stop(aacirun);
804 break;
806 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
807 break;
809 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
810 break;
812 default:
813 ret = -EINVAL;
816 spin_unlock_irqrestore(&aaci->lock, flags);
818 return ret;
821 static int aaci_pcm_capture_prepare(struct snd_pcm_substream *substream)
823 struct snd_pcm_runtime *runtime = substream->runtime;
824 struct aaci *aaci = substream->private_data;
826 aaci_pcm_prepare(substream);
828 /* allow changing of sample rate */
829 aaci_ac97_write(aaci->ac97, AC97_EXTENDED_STATUS, 0x0001); /* VRA */
830 aaci_ac97_write(aaci->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
831 aaci_ac97_write(aaci->ac97, AC97_PCM_MIC_ADC_RATE, runtime->rate);
833 /* Record select: Mic: 0, Aux: 3, Line: 4 */
834 aaci_ac97_write(aaci->ac97, AC97_REC_SEL, 0x0404);
836 return 0;
839 static struct snd_pcm_ops aaci_capture_ops = {
840 .open = aaci_pcm_open,
841 .close = aaci_pcm_close,
842 .ioctl = snd_pcm_lib_ioctl,
843 .hw_params = aaci_pcm_capture_hw_params,
844 .hw_free = aaci_pcm_hw_free,
845 .prepare = aaci_pcm_capture_prepare,
846 .trigger = aaci_pcm_capture_trigger,
847 .pointer = aaci_pcm_pointer,
848 .mmap = aaci_pcm_mmap,
852 * Power Management.
854 #ifdef CONFIG_PM
855 static int aaci_do_suspend(struct snd_card *card, unsigned int state)
857 struct aaci *aaci = card->private_data;
858 snd_power_change_state(card, SNDRV_CTL_POWER_D3cold);
859 snd_pcm_suspend_all(aaci->pcm);
860 return 0;
863 static int aaci_do_resume(struct snd_card *card, unsigned int state)
865 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
866 return 0;
869 static int aaci_suspend(struct amba_device *dev, pm_message_t state)
871 struct snd_card *card = amba_get_drvdata(dev);
872 return card ? aaci_do_suspend(card) : 0;
875 static int aaci_resume(struct amba_device *dev)
877 struct snd_card *card = amba_get_drvdata(dev);
878 return card ? aaci_do_resume(card) : 0;
880 #else
881 #define aaci_do_suspend NULL
882 #define aaci_do_resume NULL
883 #define aaci_suspend NULL
884 #define aaci_resume NULL
885 #endif
888 static struct ac97_pcm ac97_defs[] __devinitdata = {
889 [0] = { /* Front PCM */
890 .exclusive = 1,
891 .r = {
892 [0] = {
893 .slots = (1 << AC97_SLOT_PCM_LEFT) |
894 (1 << AC97_SLOT_PCM_RIGHT) |
895 (1 << AC97_SLOT_PCM_CENTER) |
896 (1 << AC97_SLOT_PCM_SLEFT) |
897 (1 << AC97_SLOT_PCM_SRIGHT) |
898 (1 << AC97_SLOT_LFE),
902 [1] = { /* PCM in */
903 .stream = 1,
904 .exclusive = 1,
905 .r = {
906 [0] = {
907 .slots = (1 << AC97_SLOT_PCM_LEFT) |
908 (1 << AC97_SLOT_PCM_RIGHT),
912 [2] = { /* Mic in */
913 .stream = 1,
914 .exclusive = 1,
915 .r = {
916 [0] = {
917 .slots = (1 << AC97_SLOT_MIC),
923 static struct snd_ac97_bus_ops aaci_bus_ops = {
924 .write = aaci_ac97_write,
925 .read = aaci_ac97_read,
928 static int __devinit aaci_probe_ac97(struct aaci *aaci)
930 struct snd_ac97_template ac97_template;
931 struct snd_ac97_bus *ac97_bus;
932 struct snd_ac97 *ac97;
933 int ret;
935 writel(0, aaci->base + AC97_POWERDOWN);
937 * Assert AACIRESET for 2us
939 writel(0, aaci->base + AACI_RESET);
940 udelay(2);
941 writel(RESET_NRST, aaci->base + AACI_RESET);
944 * Give the AC'97 codec more than enough time
945 * to wake up. (42us = ~2 frames at 48kHz.)
947 udelay(42);
949 ret = snd_ac97_bus(aaci->card, 0, &aaci_bus_ops, aaci, &ac97_bus);
950 if (ret)
951 goto out;
953 ac97_bus->clock = 48000;
954 aaci->ac97_bus = ac97_bus;
956 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
957 ac97_template.private_data = aaci;
958 ac97_template.num = 0;
959 ac97_template.scaps = AC97_SCAP_SKIP_MODEM;
961 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &ac97);
962 if (ret)
963 goto out;
964 aaci->ac97 = ac97;
967 * Disable AC97 PC Beep input on audio codecs.
969 if (ac97_is_audio(ac97))
970 snd_ac97_write_cache(ac97, AC97_PC_BEEP, 0x801e);
972 ret = snd_ac97_pcm_assign(ac97_bus, ARRAY_SIZE(ac97_defs), ac97_defs);
973 if (ret)
974 goto out;
976 aaci->playback.pcm = &ac97_bus->pcms[0];
977 aaci->capture.pcm = &ac97_bus->pcms[1];
979 out:
980 return ret;
983 static void aaci_free_card(struct snd_card *card)
985 struct aaci *aaci = card->private_data;
986 if (aaci->base)
987 iounmap(aaci->base);
990 static struct aaci * __devinit aaci_init_card(struct amba_device *dev)
992 struct aaci *aaci;
993 struct snd_card *card;
994 int err;
996 err = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
997 THIS_MODULE, sizeof(struct aaci), &card);
998 if (err < 0)
999 return NULL;
1001 card->private_free = aaci_free_card;
1003 strlcpy(card->driver, DRIVER_NAME, sizeof(card->driver));
1004 strlcpy(card->shortname, "ARM AC'97 Interface", sizeof(card->shortname));
1005 snprintf(card->longname, sizeof(card->longname),
1006 "%s at 0x%016llx, irq %d",
1007 card->shortname, (unsigned long long)dev->res.start,
1008 dev->irq[0]);
1010 aaci = card->private_data;
1011 mutex_init(&aaci->ac97_sem);
1012 spin_lock_init(&aaci->lock);
1013 aaci->card = card;
1014 aaci->dev = dev;
1016 /* Set MAINCR to allow slot 1 and 2 data IO */
1017 aaci->maincr = MAINCR_IE | MAINCR_SL1RXEN | MAINCR_SL1TXEN |
1018 MAINCR_SL2RXEN | MAINCR_SL2TXEN;
1020 return aaci;
1023 static int __devinit aaci_init_pcm(struct aaci *aaci)
1025 struct snd_pcm *pcm;
1026 int ret;
1028 ret = snd_pcm_new(aaci->card, "AACI AC'97", 0, 1, 1, &pcm);
1029 if (ret == 0) {
1030 aaci->pcm = pcm;
1031 pcm->private_data = aaci;
1032 pcm->info_flags = 0;
1034 strlcpy(pcm->name, DRIVER_NAME, sizeof(pcm->name));
1036 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &aaci_playback_ops);
1037 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &aaci_capture_ops);
1040 return ret;
1043 static unsigned int __devinit aaci_size_fifo(struct aaci *aaci)
1045 struct aaci_runtime *aacirun = &aaci->playback;
1046 int i;
1048 writel(CR_FEN | CR_SZ16 | CR_EN, aacirun->base + AACI_TXCR);
1050 for (i = 0; !(readl(aacirun->base + AACI_SR) & SR_TXFF) && i < 4096; i++)
1051 writel(0, aacirun->fifo);
1053 writel(0, aacirun->base + AACI_TXCR);
1056 * Re-initialise the AACI after the FIFO depth test, to
1057 * ensure that the FIFOs are empty. Unfortunately, merely
1058 * disabling the channel doesn't clear the FIFO.
1060 writel(aaci->maincr & ~MAINCR_IE, aaci->base + AACI_MAINCR);
1061 writel(aaci->maincr, aaci->base + AACI_MAINCR);
1064 * If we hit 4096, we failed. Go back to the specified
1065 * fifo depth.
1067 if (i == 4096)
1068 i = 8;
1070 return i;
1073 static int __devinit aaci_probe(struct amba_device *dev, struct amba_id *id)
1075 struct aaci *aaci;
1076 int ret, i;
1078 ret = amba_request_regions(dev, NULL);
1079 if (ret)
1080 return ret;
1082 aaci = aaci_init_card(dev);
1083 if (!aaci) {
1084 ret = -ENOMEM;
1085 goto out;
1088 aaci->base = ioremap(dev->res.start, resource_size(&dev->res));
1089 if (!aaci->base) {
1090 ret = -ENOMEM;
1091 goto out;
1095 * Playback uses AACI channel 0
1097 aaci->playback.base = aaci->base + AACI_CSCH1;
1098 aaci->playback.fifo = aaci->base + AACI_DR1;
1101 * Capture uses AACI channel 0
1103 aaci->capture.base = aaci->base + AACI_CSCH1;
1104 aaci->capture.fifo = aaci->base + AACI_DR1;
1106 for (i = 0; i < 4; i++) {
1107 void __iomem *base = aaci->base + i * 0x14;
1109 writel(0, base + AACI_IE);
1110 writel(0, base + AACI_TXCR);
1111 writel(0, base + AACI_RXCR);
1114 writel(0x1fff, aaci->base + AACI_INTCLR);
1115 writel(aaci->maincr, aaci->base + AACI_MAINCR);
1117 ret = aaci_probe_ac97(aaci);
1118 if (ret)
1119 goto out;
1122 * Size the FIFOs (must be multiple of 16).
1124 aaci->fifosize = aaci_size_fifo(aaci);
1125 if (aaci->fifosize & 15) {
1126 printk(KERN_WARNING "AACI: fifosize = %d not supported\n",
1127 aaci->fifosize);
1128 ret = -ENODEV;
1129 goto out;
1132 ret = aaci_init_pcm(aaci);
1133 if (ret)
1134 goto out;
1136 snd_card_set_dev(aaci->card, &dev->dev);
1138 ret = snd_card_register(aaci->card);
1139 if (ret == 0) {
1140 dev_info(&dev->dev, "%s, fifo %d\n", aaci->card->longname,
1141 aaci->fifosize);
1142 amba_set_drvdata(dev, aaci->card);
1143 return ret;
1146 out:
1147 if (aaci)
1148 snd_card_free(aaci->card);
1149 amba_release_regions(dev);
1150 return ret;
1153 static int __devexit aaci_remove(struct amba_device *dev)
1155 struct snd_card *card = amba_get_drvdata(dev);
1157 amba_set_drvdata(dev, NULL);
1159 if (card) {
1160 struct aaci *aaci = card->private_data;
1161 writel(0, aaci->base + AACI_MAINCR);
1163 snd_card_free(card);
1164 amba_release_regions(dev);
1167 return 0;
1170 static struct amba_id aaci_ids[] = {
1172 .id = 0x00041041,
1173 .mask = 0x000fffff,
1175 { 0, 0 },
1178 static struct amba_driver aaci_driver = {
1179 .drv = {
1180 .name = DRIVER_NAME,
1182 .probe = aaci_probe,
1183 .remove = __devexit_p(aaci_remove),
1184 .suspend = aaci_suspend,
1185 .resume = aaci_resume,
1186 .id_table = aaci_ids,
1189 static int __init aaci_init(void)
1191 return amba_driver_register(&aaci_driver);
1194 static void __exit aaci_exit(void)
1196 amba_driver_unregister(&aaci_driver);
1199 module_init(aaci_init);
1200 module_exit(aaci_exit);
1202 MODULE_LICENSE("GPL");
1203 MODULE_DESCRIPTION("ARM PrimeCell PL041 Advanced Audio CODEC Interface driver");