ALSA: AACI: add double-rate support
[deliverable/linux.git] / sound / arm / aaci.c
CommitLineData
cb5a6ffc
RK
1/*
2 * linux/sound/arm/aaci.c - ARM PrimeCell AACI PL041 driver
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
5 *
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.
9 *
10 * Documentation: ARM DDI 0173B
11 */
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>
a62c80e5 20#include <linux/amba/bus.h>
88cdca9c 21#include <linux/io.h>
cb5a6ffc 22
cb5a6ffc
RK
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>
28
29#include "aaci.h"
cb5a6ffc
RK
30
31#define DRIVER_NAME "aaci-pl041"
32
33/*
34 * PM support is not complete. Turn it off.
35 */
36#undef CONFIG_PM
37
ceb9e476 38static void aaci_ac97_select_codec(struct aaci *aaci, struct snd_ac97 *ac97)
cb5a6ffc
RK
39{
40 u32 v, maincr = aaci->maincr | MAINCR_SCRA(ac97->num);
41
42 /*
43 * Ensure that the slot 1/2 RX registers are empty.
44 */
45 v = readl(aaci->base + AACI_SLFR);
46 if (v & SLFR_2RXV)
47 readl(aaci->base + AACI_SL2RX);
48 if (v & SLFR_1RXV)
49 readl(aaci->base + AACI_SL1RX);
50
51 writel(maincr, aaci->base + AACI_MAINCR);
52}
53
54/*
55 * P29:
56 * The recommended use of programming the external codec through slot 1
57 * and slot 2 data is to use the channels during setup routines and the
58 * slot register at any other time. The data written into slot 1, slot 2
59 * and slot 12 registers is transmitted only when their corresponding
60 * SI1TxEn, SI2TxEn and SI12TxEn bits are set in the AACI_MAINCR
61 * register.
62 */
14d178a1
KH
63static void aaci_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
64 unsigned short val)
cb5a6ffc
RK
65{
66 struct aaci *aaci = ac97->private_data;
67 u32 v;
14d178a1 68 int timeout = 5000;
cb5a6ffc
RK
69
70 if (ac97->num >= 4)
71 return;
72
12aa7579 73 mutex_lock(&aaci->ac97_sem);
cb5a6ffc
RK
74
75 aaci_ac97_select_codec(aaci, ac97);
76
77 /*
78 * P54: You must ensure that AACI_SL2TX is always written
79 * to, if required, before data is written to AACI_SL1TX.
80 */
81 writel(val << 4, aaci->base + AACI_SL2TX);
82 writel(reg << 12, aaci->base + AACI_SL1TX);
83
84 /*
85 * Wait for the transmission of both slots to complete.
86 */
87 do {
88 v = readl(aaci->base + AACI_SLFR);
f6f35bbe 89 } while ((v & (SLFR_1TXB|SLFR_2TXB)) && --timeout);
14d178a1
KH
90
91 if (!timeout)
92 dev_err(&aaci->dev->dev,
93 "timeout waiting for write to complete\n");
cb5a6ffc 94
12aa7579 95 mutex_unlock(&aaci->ac97_sem);
cb5a6ffc
RK
96}
97
98/*
99 * Read an AC'97 register.
100 */
ceb9e476 101static unsigned short aaci_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
cb5a6ffc
RK
102{
103 struct aaci *aaci = ac97->private_data;
104 u32 v;
14d178a1
KH
105 int timeout = 5000;
106 int retries = 10;
cb5a6ffc
RK
107
108 if (ac97->num >= 4)
109 return ~0;
110
12aa7579 111 mutex_lock(&aaci->ac97_sem);
cb5a6ffc
RK
112
113 aaci_ac97_select_codec(aaci, ac97);
114
115 /*
116 * Write the register address to slot 1.
117 */
118 writel((reg << 12) | (1 << 19), aaci->base + AACI_SL1TX);
119
120 /*
121 * Wait for the transmission to complete.
122 */
123 do {
124 v = readl(aaci->base + AACI_SLFR);
f6f35bbe 125 } while ((v & SLFR_1TXB) && --timeout);
14d178a1
KH
126
127 if (!timeout) {
128 dev_err(&aaci->dev->dev, "timeout on slot 1 TX busy\n");
129 v = ~0;
130 goto out;
131 }
cb5a6ffc
RK
132
133 /*
134 * Give the AC'97 codec more than enough time
135 * to respond. (42us = ~2 frames at 48kHz.)
136 */
137 udelay(42);
138
139 /*
140 * Wait for slot 2 to indicate data.
141 */
14d178a1 142 timeout = 5000;
cb5a6ffc
RK
143 do {
144 cond_resched();
145 v = readl(aaci->base + AACI_SLFR) & (SLFR_1RXV|SLFR_2RXV);
f6f35bbe 146 } while ((v != (SLFR_1RXV|SLFR_2RXV)) && --timeout);
cb5a6ffc 147
14d178a1
KH
148 if (!timeout) {
149 dev_err(&aaci->dev->dev, "timeout on RX valid\n");
cb5a6ffc 150 v = ~0;
14d178a1 151 goto out;
cb5a6ffc
RK
152 }
153
14d178a1
KH
154 do {
155 v = readl(aaci->base + AACI_SL1RX) >> 12;
156 if (v == reg) {
157 v = readl(aaci->base + AACI_SL2RX) >> 4;
158 break;
159 } else if (--retries) {
160 dev_warn(&aaci->dev->dev,
161 "ac97 read back fail. retry\n");
162 continue;
163 } else {
164 dev_warn(&aaci->dev->dev,
165 "wrong ac97 register read back (%x != %x)\n",
166 v, reg);
167 v = ~0;
168 }
169 } while (retries);
170 out:
12aa7579 171 mutex_unlock(&aaci->ac97_sem);
cb5a6ffc
RK
172 return v;
173}
174
175static inline void aaci_chan_wait_ready(struct aaci_runtime *aacirun)
176{
177 u32 val;
178 int timeout = 5000;
179
180 do {
181 val = readl(aacirun->base + AACI_SR);
182 } while (val & (SR_TXB|SR_RXB) && timeout--);
183}
184
185
186
187/*
188 * Interrupt support.
189 */
62578cbf 190static void aaci_fifo_irq(struct aaci *aaci, int channel, u32 mask)
cb5a6ffc 191{
41762b8c
KH
192 if (mask & ISR_ORINTR) {
193 dev_warn(&aaci->dev->dev, "RX overrun on chan %d\n", channel);
194 writel(ICLR_RXOEC1 << channel, aaci->base + AACI_INTCLR);
195 }
196
197 if (mask & ISR_RXTOINTR) {
198 dev_warn(&aaci->dev->dev, "RX timeout on chan %d\n", channel);
199 writel(ICLR_RXTOFEC1 << channel, aaci->base + AACI_INTCLR);
200 }
201
202 if (mask & ISR_RXINTR) {
203 struct aaci_runtime *aacirun = &aaci->capture;
204 void *ptr;
205
206 if (!aacirun->substream || !aacirun->start) {
898eb71c 207 dev_warn(&aaci->dev->dev, "RX interrupt???\n");
41762b8c
KH
208 writel(0, aacirun->base + AACI_IE);
209 return;
210 }
211 ptr = aacirun->ptr;
212
213 do {
214 unsigned int len = aacirun->fifosz;
215 u32 val;
216
217 if (aacirun->bytes <= 0) {
218 aacirun->bytes += aacirun->period;
219 aacirun->ptr = ptr;
220 spin_unlock(&aaci->lock);
221 snd_pcm_period_elapsed(aacirun->substream);
222 spin_lock(&aaci->lock);
223 }
224 if (!(aacirun->cr & CR_EN))
225 break;
226
227 val = readl(aacirun->base + AACI_SR);
228 if (!(val & SR_RXHF))
229 break;
230 if (!(val & SR_RXFF))
231 len >>= 1;
232
233 aacirun->bytes -= len;
234
235 /* reading 16 bytes at a time */
236 for( ; len > 0; len -= 16) {
237 asm(
238 "ldmia %1, {r0, r1, r2, r3}\n\t"
239 "stmia %0!, {r0, r1, r2, r3}"
240 : "+r" (ptr)
241 : "r" (aacirun->fifo)
242 : "r0", "r1", "r2", "r3", "cc");
243
244 if (ptr >= aacirun->end)
245 ptr = aacirun->start;
246 }
247 } while(1);
248 aacirun->ptr = ptr;
249 }
250
cb5a6ffc 251 if (mask & ISR_URINTR) {
62578cbf
KH
252 dev_dbg(&aaci->dev->dev, "TX underrun on chan %d\n", channel);
253 writel(ICLR_TXUEC1 << channel, aaci->base + AACI_INTCLR);
cb5a6ffc
RK
254 }
255
256 if (mask & ISR_TXINTR) {
257 struct aaci_runtime *aacirun = &aaci->playback;
258 void *ptr;
259
260 if (!aacirun->substream || !aacirun->start) {
898eb71c 261 dev_warn(&aaci->dev->dev, "TX interrupt???\n");
cb5a6ffc
RK
262 writel(0, aacirun->base + AACI_IE);
263 return;
264 }
265
266 ptr = aacirun->ptr;
267 do {
268 unsigned int len = aacirun->fifosz;
269 u32 val;
270
271 if (aacirun->bytes <= 0) {
272 aacirun->bytes += aacirun->period;
273 aacirun->ptr = ptr;
274 spin_unlock(&aaci->lock);
275 snd_pcm_period_elapsed(aacirun->substream);
276 spin_lock(&aaci->lock);
277 }
41762b8c 278 if (!(aacirun->cr & CR_EN))
cb5a6ffc
RK
279 break;
280
281 val = readl(aacirun->base + AACI_SR);
282 if (!(val & SR_TXHE))
283 break;
284 if (!(val & SR_TXFE))
285 len >>= 1;
286
287 aacirun->bytes -= len;
288
289 /* writing 16 bytes at a time */
290 for ( ; len > 0; len -= 16) {
291 asm(
292 "ldmia %0!, {r0, r1, r2, r3}\n\t"
293 "stmia %1, {r0, r1, r2, r3}"
294 : "+r" (ptr)
295 : "r" (aacirun->fifo)
296 : "r0", "r1", "r2", "r3", "cc");
297
298 if (ptr >= aacirun->end)
299 ptr = aacirun->start;
300 }
301 } while (1);
302
303 aacirun->ptr = ptr;
304 }
305}
306
7d12e780 307static irqreturn_t aaci_irq(int irq, void *devid)
cb5a6ffc
RK
308{
309 struct aaci *aaci = devid;
310 u32 mask;
311 int i;
312
313 spin_lock(&aaci->lock);
314 mask = readl(aaci->base + AACI_ALLINTS);
315 if (mask) {
316 u32 m = mask;
317 for (i = 0; i < 4; i++, m >>= 7) {
318 if (m & 0x7f) {
62578cbf 319 aaci_fifo_irq(aaci, i, m);
cb5a6ffc
RK
320 }
321 }
322 }
323 spin_unlock(&aaci->lock);
324
325 return mask ? IRQ_HANDLED : IRQ_NONE;
326}
327
328
329
330/*
331 * ALSA support.
332 */
ceb9e476 333static struct snd_pcm_hardware aaci_hw_info = {
cb5a6ffc
RK
334 .info = SNDRV_PCM_INFO_MMAP |
335 SNDRV_PCM_INFO_MMAP_VALID |
336 SNDRV_PCM_INFO_INTERLEAVED |
337 SNDRV_PCM_INFO_BLOCK_TRANSFER |
338 SNDRV_PCM_INFO_RESUME,
339
340 /*
341 * ALSA doesn't support 18-bit or 20-bit packed into 32-bit
342 * words. It also doesn't support 12-bit at all.
343 */
344 .formats = SNDRV_PCM_FMTBIT_S16_LE,
345
6ca867c8 346 /* rates are setup from the AC'97 codec */
cb5a6ffc
RK
347 .channels_min = 2,
348 .channels_max = 6,
349 .buffer_bytes_max = 64 * 1024,
350 .period_bytes_min = 256,
351 .period_bytes_max = PAGE_SIZE,
352 .periods_min = 4,
353 .periods_max = PAGE_SIZE / 16,
354};
355
41762b8c
KH
356static int __aaci_pcm_open(struct aaci *aaci,
357 struct snd_pcm_substream *substream,
358 struct aaci_runtime *aacirun)
cb5a6ffc 359{
ceb9e476 360 struct snd_pcm_runtime *runtime = substream->runtime;
cb5a6ffc
RK
361 int ret;
362
363 aacirun->substream = substream;
364 runtime->private_data = aacirun;
365 runtime->hw = aaci_hw_info;
6ca867c8
RK
366 runtime->hw.rates = aacirun->pcm->rates;
367 snd_pcm_limit_hw_rates(runtime);
cb5a6ffc 368
a08d5658
RK
369 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
370 aacirun->pcm->r[1].slots)
371 snd_ac97_pcm_double_rate_rules(runtime);
372
cb5a6ffc
RK
373 /*
374 * FIXME: ALSA specifies fifo_size in bytes. If we're in normal
375 * mode, each 32-bit word contains one sample. If we're in
376 * compact mode, each 32-bit word contains two samples, effectively
377 * halving the FIFO size. However, we don't know for sure which
378 * we'll be using at this point. We set this to the lower limit.
379 */
380 runtime->hw.fifo_size = aaci->fifosize * 2;
381
65ca68b3 382 ret = request_irq(aaci->dev->irq[0], aaci_irq, IRQF_SHARED|IRQF_DISABLED,
cb5a6ffc
RK
383 DRIVER_NAME, aaci);
384 if (ret)
385 goto out;
386
387 return 0;
388
389 out:
390 return ret;
391}
392
393
394/*
395 * Common ALSA stuff
396 */
ceb9e476 397static int aaci_pcm_close(struct snd_pcm_substream *substream)
cb5a6ffc
RK
398{
399 struct aaci *aaci = substream->private_data;
400 struct aaci_runtime *aacirun = substream->runtime->private_data;
401
41762b8c 402 WARN_ON(aacirun->cr & CR_EN);
cb5a6ffc
RK
403
404 aacirun->substream = NULL;
405 free_irq(aaci->dev->irq[0], aaci);
406
407 return 0;
408}
409
ceb9e476 410static int aaci_pcm_hw_free(struct snd_pcm_substream *substream)
cb5a6ffc
RK
411{
412 struct aaci_runtime *aacirun = substream->runtime->private_data;
413
414 /*
415 * This must not be called with the device enabled.
416 */
41762b8c 417 WARN_ON(aacirun->cr & CR_EN);
cb5a6ffc
RK
418
419 if (aacirun->pcm_open)
420 snd_ac97_pcm_close(aacirun->pcm);
421 aacirun->pcm_open = 0;
422
423 /*
424 * Clear out the DMA and any allocated buffers.
425 */
d6797322 426 snd_pcm_lib_free_pages(substream);
cb5a6ffc
RK
427
428 return 0;
429}
430
ceb9e476 431static int aaci_pcm_hw_params(struct snd_pcm_substream *substream,
cb5a6ffc 432 struct aaci_runtime *aacirun,
ceb9e476 433 struct snd_pcm_hw_params *params)
cb5a6ffc
RK
434{
435 int err;
436
437 aaci_pcm_hw_free(substream);
4acd57c3
RK
438 if (aacirun->pcm_open) {
439 snd_ac97_pcm_close(aacirun->pcm);
440 aacirun->pcm_open = 0;
441 }
cb5a6ffc 442
d6797322
TI
443 err = snd_pcm_lib_malloc_pages(substream,
444 params_buffer_bytes(params));
4e30b691 445 if (err >= 0) {
a08d5658
RK
446 unsigned int rate = params_rate(params);
447 int dbl = rate > 48000;
448
449 err = snd_ac97_pcm_open(aacirun->pcm, rate,
4e30b691 450 params_channels(params),
a08d5658 451 aacirun->pcm->r[dbl].slots);
cb5a6ffc 452
4e30b691 453 aacirun->pcm_open = err == 0;
d3aee799
RK
454 aacirun->cr = CR_FEN | CR_COMPACT | CR_SZ16;
455 aacirun->fifosz = aaci->fifosize * 4;
456
457 if (aacirun->cr & CR_COMPACT)
458 aacirun->fifosz >>= 1;
4e30b691 459 }
cb5a6ffc 460
cb5a6ffc
RK
461 return err;
462}
463
ceb9e476 464static int aaci_pcm_prepare(struct snd_pcm_substream *substream)
cb5a6ffc 465{
ceb9e476 466 struct snd_pcm_runtime *runtime = substream->runtime;
cb5a6ffc
RK
467 struct aaci_runtime *aacirun = runtime->private_data;
468
4e30b691 469 aacirun->start = runtime->dma_area;
88cdca9c 470 aacirun->end = aacirun->start + snd_pcm_lib_buffer_bytes(substream);
cb5a6ffc
RK
471 aacirun->ptr = aacirun->start;
472 aacirun->period =
473 aacirun->bytes = frames_to_bytes(runtime, runtime->period_size);
474
475 return 0;
476}
477
ceb9e476 478static snd_pcm_uframes_t aaci_pcm_pointer(struct snd_pcm_substream *substream)
cb5a6ffc 479{
ceb9e476 480 struct snd_pcm_runtime *runtime = substream->runtime;
cb5a6ffc
RK
481 struct aaci_runtime *aacirun = runtime->private_data;
482 ssize_t bytes = aacirun->ptr - aacirun->start;
483
484 return bytes_to_frames(runtime, bytes);
485}
486
cb5a6ffc
RK
487
488/*
489 * Playback specific ALSA stuff
490 */
491static const u32 channels_to_txmask[] = {
41762b8c
KH
492 [2] = CR_SL3 | CR_SL4,
493 [4] = CR_SL3 | CR_SL4 | CR_SL7 | CR_SL8,
494 [6] = CR_SL3 | CR_SL4 | CR_SL7 | CR_SL8 | CR_SL6 | CR_SL9,
cb5a6ffc
RK
495};
496
497/*
498 * We can support two and four channel audio. Unfortunately
499 * six channel audio requires a non-standard channel ordering:
500 * 2 -> FL(3), FR(4)
501 * 4 -> FL(3), FR(4), SL(7), SR(8)
502 * 6 -> FL(3), FR(4), SL(7), SR(8), C(6), LFE(9) (required)
503 * FL(3), FR(4), C(6), SL(7), SR(8), LFE(9) (actual)
504 * This requires an ALSA configuration file to correct.
505 */
506static unsigned int channel_list[] = { 2, 4, 6 };
507
508static int
ceb9e476 509aaci_rule_channels(struct snd_pcm_hw_params *p, struct snd_pcm_hw_rule *rule)
cb5a6ffc
RK
510{
511 struct aaci *aaci = rule->private;
512 unsigned int chan_mask = 1 << 0, slots;
513
514 /*
515 * pcms[0] is the our 5.1 PCM instance.
516 */
517 slots = aaci->ac97_bus->pcms[0].r[0].slots;
518 if (slots & (1 << AC97_SLOT_PCM_SLEFT)) {
519 chan_mask |= 1 << 1;
520 if (slots & (1 << AC97_SLOT_LFE))
521 chan_mask |= 1 << 2;
522 }
523
524 return snd_interval_list(hw_param_interval(p, rule->var),
525 ARRAY_SIZE(channel_list), channel_list,
526 chan_mask);
527}
528
41762b8c 529static int aaci_pcm_open(struct snd_pcm_substream *substream)
cb5a6ffc
RK
530{
531 struct aaci *aaci = substream->private_data;
532 int ret;
533
534 /*
535 * Add rule describing channel dependency.
536 */
537 ret = snd_pcm_hw_rule_add(substream->runtime, 0,
538 SNDRV_PCM_HW_PARAM_CHANNELS,
539 aaci_rule_channels, aaci,
540 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
541 if (ret)
542 return ret;
543
41762b8c
KH
544 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
545 ret = __aaci_pcm_open(aaci, substream, &aaci->playback);
546 } else {
547 ret = __aaci_pcm_open(aaci, substream, &aaci->capture);
548 }
549 return ret;
cb5a6ffc
RK
550}
551
ceb9e476
TI
552static int aaci_pcm_playback_hw_params(struct snd_pcm_substream *substream,
553 struct snd_pcm_hw_params *params)
cb5a6ffc
RK
554{
555 struct aaci *aaci = substream->private_data;
556 struct aaci_runtime *aacirun = substream->runtime->private_data;
557 unsigned int channels = params_channels(params);
558 int ret;
559
560 WARN_ON(channels >= ARRAY_SIZE(channels_to_txmask) ||
561 !channels_to_txmask[channels]);
562
563 ret = aaci_pcm_hw_params(substream, aacirun, params);
564
565 /*
566 * Enable FIFO, compact mode, 16 bits per sample.
567 * FIXME: double rate slots?
568 */
d3aee799 569 if (ret >= 0)
cb5a6ffc
RK
570 aacirun->cr |= channels_to_txmask[channels];
571
cb5a6ffc
RK
572 return ret;
573}
574
575static void aaci_pcm_playback_stop(struct aaci_runtime *aacirun)
576{
577 u32 ie;
578
579 ie = readl(aacirun->base + AACI_IE);
580 ie &= ~(IE_URIE|IE_TXIE);
581 writel(ie, aacirun->base + AACI_IE);
41762b8c 582 aacirun->cr &= ~CR_EN;
cb5a6ffc
RK
583 aaci_chan_wait_ready(aacirun);
584 writel(aacirun->cr, aacirun->base + AACI_TXCR);
585}
586
587static void aaci_pcm_playback_start(struct aaci_runtime *aacirun)
588{
589 u32 ie;
590
591 aaci_chan_wait_ready(aacirun);
41762b8c 592 aacirun->cr |= CR_EN;
cb5a6ffc
RK
593
594 ie = readl(aacirun->base + AACI_IE);
595 ie |= IE_URIE | IE_TXIE;
596 writel(ie, aacirun->base + AACI_IE);
597 writel(aacirun->cr, aacirun->base + AACI_TXCR);
598}
599
ceb9e476 600static int aaci_pcm_playback_trigger(struct snd_pcm_substream *substream, int cmd)
cb5a6ffc
RK
601{
602 struct aaci *aaci = substream->private_data;
603 struct aaci_runtime *aacirun = substream->runtime->private_data;
604 unsigned long flags;
605 int ret = 0;
606
607 spin_lock_irqsave(&aaci->lock, flags);
608 switch (cmd) {
609 case SNDRV_PCM_TRIGGER_START:
610 aaci_pcm_playback_start(aacirun);
611 break;
612
613 case SNDRV_PCM_TRIGGER_RESUME:
614 aaci_pcm_playback_start(aacirun);
615 break;
616
617 case SNDRV_PCM_TRIGGER_STOP:
618 aaci_pcm_playback_stop(aacirun);
619 break;
620
621 case SNDRV_PCM_TRIGGER_SUSPEND:
622 aaci_pcm_playback_stop(aacirun);
623 break;
624
625 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
626 break;
627
628 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
629 break;
630
631 default:
632 ret = -EINVAL;
633 }
634 spin_unlock_irqrestore(&aaci->lock, flags);
635
636 return ret;
637}
638
ceb9e476 639static struct snd_pcm_ops aaci_playback_ops = {
41762b8c 640 .open = aaci_pcm_open,
cb5a6ffc
RK
641 .close = aaci_pcm_close,
642 .ioctl = snd_pcm_lib_ioctl,
643 .hw_params = aaci_pcm_playback_hw_params,
644 .hw_free = aaci_pcm_hw_free,
645 .prepare = aaci_pcm_prepare,
646 .trigger = aaci_pcm_playback_trigger,
647 .pointer = aaci_pcm_pointer,
cb5a6ffc
RK
648};
649
8a371840
RK
650static int aaci_pcm_capture_hw_params(struct snd_pcm_substream *substream,
651 struct snd_pcm_hw_params *params)
41762b8c
KH
652{
653 struct aaci *aaci = substream->private_data;
654 struct aaci_runtime *aacirun = substream->runtime->private_data;
655 int ret;
656
657 ret = aaci_pcm_hw_params(substream, aacirun, params);
d3aee799 658 if (ret >= 0)
41762b8c
KH
659 /* Line in record: slot 3 and 4 */
660 aacirun->cr |= CR_SL3 | CR_SL4;
661
41762b8c
KH
662 return ret;
663}
664
665static void aaci_pcm_capture_stop(struct aaci_runtime *aacirun)
666{
667 u32 ie;
668
669 aaci_chan_wait_ready(aacirun);
670
671 ie = readl(aacirun->base + AACI_IE);
672 ie &= ~(IE_ORIE | IE_RXIE);
673 writel(ie, aacirun->base+AACI_IE);
674
675 aacirun->cr &= ~CR_EN;
cb5a6ffc 676
41762b8c
KH
677 writel(aacirun->cr, aacirun->base + AACI_RXCR);
678}
679
680static void aaci_pcm_capture_start(struct aaci_runtime *aacirun)
681{
682 u32 ie;
683
684 aaci_chan_wait_ready(aacirun);
685
686#ifdef DEBUG
687 /* RX Timeout value: bits 28:17 in RXCR */
688 aacirun->cr |= 0xf << 17;
689#endif
690
691 aacirun->cr |= CR_EN;
692 writel(aacirun->cr, aacirun->base + AACI_RXCR);
693
694 ie = readl(aacirun->base + AACI_IE);
695 ie |= IE_ORIE |IE_RXIE; // overrun and rx interrupt -- half full
696 writel(ie, aacirun->base + AACI_IE);
697}
698
8a371840
RK
699static int aaci_pcm_capture_trigger(struct snd_pcm_substream *substream, int cmd)
700{
41762b8c
KH
701 struct aaci *aaci = substream->private_data;
702 struct aaci_runtime *aacirun = substream->runtime->private_data;
703 unsigned long flags;
704 int ret = 0;
705
706 spin_lock_irqsave(&aaci->lock, flags);
707
708 switch (cmd) {
709 case SNDRV_PCM_TRIGGER_START:
710 aaci_pcm_capture_start(aacirun);
711 break;
712
713 case SNDRV_PCM_TRIGGER_RESUME:
714 aaci_pcm_capture_start(aacirun);
715 break;
716
717 case SNDRV_PCM_TRIGGER_STOP:
718 aaci_pcm_capture_stop(aacirun);
719 break;
720
721 case SNDRV_PCM_TRIGGER_SUSPEND:
722 aaci_pcm_capture_stop(aacirun);
723 break;
724
725 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
726 break;
727
728 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
729 break;
730
731 default:
732 ret = -EINVAL;
733 }
734
735 spin_unlock_irqrestore(&aaci->lock, flags);
736
737 return ret;
738}
739
8a371840 740static int aaci_pcm_capture_prepare(struct snd_pcm_substream *substream)
41762b8c
KH
741{
742 struct snd_pcm_runtime *runtime = substream->runtime;
743 struct aaci *aaci = substream->private_data;
744
745 aaci_pcm_prepare(substream);
746
747 /* allow changing of sample rate */
748 aaci_ac97_write(aaci->ac97, AC97_EXTENDED_STATUS, 0x0001); /* VRA */
749 aaci_ac97_write(aaci->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
750 aaci_ac97_write(aaci->ac97, AC97_PCM_MIC_ADC_RATE, runtime->rate);
751
752 /* Record select: Mic: 0, Aux: 3, Line: 4 */
753 aaci_ac97_write(aaci->ac97, AC97_REC_SEL, 0x0404);
754
755 return 0;
756}
757
8a371840 758static struct snd_pcm_ops aaci_capture_ops = {
41762b8c
KH
759 .open = aaci_pcm_open,
760 .close = aaci_pcm_close,
761 .ioctl = snd_pcm_lib_ioctl,
762 .hw_params = aaci_pcm_capture_hw_params,
763 .hw_free = aaci_pcm_hw_free,
764 .prepare = aaci_pcm_capture_prepare,
765 .trigger = aaci_pcm_capture_trigger,
766 .pointer = aaci_pcm_pointer,
41762b8c 767};
cb5a6ffc
RK
768
769/*
770 * Power Management.
771 */
772#ifdef CONFIG_PM
ceb9e476 773static int aaci_do_suspend(struct snd_card *card, unsigned int state)
cb5a6ffc
RK
774{
775 struct aaci *aaci = card->private_data;
792a6c51
TI
776 snd_power_change_state(card, SNDRV_CTL_POWER_D3cold);
777 snd_pcm_suspend_all(aaci->pcm);
cb5a6ffc
RK
778 return 0;
779}
780
ceb9e476 781static int aaci_do_resume(struct snd_card *card, unsigned int state)
cb5a6ffc 782{
792a6c51 783 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
cb5a6ffc
RK
784 return 0;
785}
786
e36d394d 787static int aaci_suspend(struct amba_device *dev, pm_message_t state)
cb5a6ffc 788{
ceb9e476 789 struct snd_card *card = amba_get_drvdata(dev);
cb5a6ffc
RK
790 return card ? aaci_do_suspend(card) : 0;
791}
792
793static int aaci_resume(struct amba_device *dev)
794{
ceb9e476 795 struct snd_card *card = amba_get_drvdata(dev);
cb5a6ffc
RK
796 return card ? aaci_do_resume(card) : 0;
797}
798#else
799#define aaci_do_suspend NULL
800#define aaci_do_resume NULL
801#define aaci_suspend NULL
802#define aaci_resume NULL
803#endif
804
805
806static struct ac97_pcm ac97_defs[] __devinitdata = {
41762b8c 807 [0] = { /* Front PCM */
cb5a6ffc
RK
808 .exclusive = 1,
809 .r = {
810 [0] = {
811 .slots = (1 << AC97_SLOT_PCM_LEFT) |
812 (1 << AC97_SLOT_PCM_RIGHT) |
813 (1 << AC97_SLOT_PCM_CENTER) |
814 (1 << AC97_SLOT_PCM_SLEFT) |
815 (1 << AC97_SLOT_PCM_SRIGHT) |
816 (1 << AC97_SLOT_LFE),
817 },
a08d5658
RK
818 [1] = {
819 .slots = (1 << AC97_SLOT_PCM_LEFT) |
820 (1 << AC97_SLOT_PCM_RIGHT) |
821 (1 << AC97_SLOT_PCM_LEFT_0) |
822 (1 << AC97_SLOT_PCM_RIGHT_0),
823 },
cb5a6ffc
RK
824 },
825 },
826 [1] = { /* PCM in */
827 .stream = 1,
828 .exclusive = 1,
829 .r = {
830 [0] = {
831 .slots = (1 << AC97_SLOT_PCM_LEFT) |
832 (1 << AC97_SLOT_PCM_RIGHT),
833 },
834 },
835 },
836 [2] = { /* Mic in */
837 .stream = 1,
838 .exclusive = 1,
839 .r = {
840 [0] = {
841 .slots = (1 << AC97_SLOT_MIC),
842 },
843 },
844 }
845};
846
ceb9e476 847static struct snd_ac97_bus_ops aaci_bus_ops = {
cb5a6ffc
RK
848 .write = aaci_ac97_write,
849 .read = aaci_ac97_read,
850};
851
852static int __devinit aaci_probe_ac97(struct aaci *aaci)
853{
ceb9e476
TI
854 struct snd_ac97_template ac97_template;
855 struct snd_ac97_bus *ac97_bus;
856 struct snd_ac97 *ac97;
cb5a6ffc
RK
857 int ret;
858
29a4f2d3 859 writel(0, aaci->base + AC97_POWERDOWN);
cb5a6ffc
RK
860 /*
861 * Assert AACIRESET for 2us
862 */
863 writel(0, aaci->base + AACI_RESET);
864 udelay(2);
865 writel(RESET_NRST, aaci->base + AACI_RESET);
866
867 /*
868 * Give the AC'97 codec more than enough time
869 * to wake up. (42us = ~2 frames at 48kHz.)
870 */
871 udelay(42);
872
873 ret = snd_ac97_bus(aaci->card, 0, &aaci_bus_ops, aaci, &ac97_bus);
874 if (ret)
875 goto out;
876
877 ac97_bus->clock = 48000;
878 aaci->ac97_bus = ac97_bus;
879
ceb9e476 880 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
cb5a6ffc
RK
881 ac97_template.private_data = aaci;
882 ac97_template.num = 0;
883 ac97_template.scaps = AC97_SCAP_SKIP_MODEM;
884
885 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &ac97);
886 if (ret)
887 goto out;
41762b8c 888 aaci->ac97 = ac97;
cb5a6ffc
RK
889
890 /*
891 * Disable AC97 PC Beep input on audio codecs.
892 */
893 if (ac97_is_audio(ac97))
894 snd_ac97_write_cache(ac97, AC97_PC_BEEP, 0x801e);
895
896 ret = snd_ac97_pcm_assign(ac97_bus, ARRAY_SIZE(ac97_defs), ac97_defs);
897 if (ret)
898 goto out;
899
900 aaci->playback.pcm = &ac97_bus->pcms[0];
41762b8c 901 aaci->capture.pcm = &ac97_bus->pcms[1];
cb5a6ffc
RK
902
903 out:
904 return ret;
905}
906
ceb9e476 907static void aaci_free_card(struct snd_card *card)
cb5a6ffc
RK
908{
909 struct aaci *aaci = card->private_data;
910 if (aaci->base)
911 iounmap(aaci->base);
912}
913
914static struct aaci * __devinit aaci_init_card(struct amba_device *dev)
915{
916 struct aaci *aaci;
ceb9e476 917 struct snd_card *card;
bd7dd77c 918 int err;
cb5a6ffc 919
bd7dd77c
TI
920 err = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
921 THIS_MODULE, sizeof(struct aaci), &card);
922 if (err < 0)
631e8ad4 923 return NULL;
cb5a6ffc
RK
924
925 card->private_free = aaci_free_card;
cb5a6ffc
RK
926
927 strlcpy(card->driver, DRIVER_NAME, sizeof(card->driver));
928 strlcpy(card->shortname, "ARM AC'97 Interface", sizeof(card->shortname));
929 snprintf(card->longname, sizeof(card->longname),
aa0a2ddc
GKH
930 "%s at 0x%016llx, irq %d",
931 card->shortname, (unsigned long long)dev->res.start,
932 dev->irq[0]);
cb5a6ffc
RK
933
934 aaci = card->private_data;
12aa7579 935 mutex_init(&aaci->ac97_sem);
cb5a6ffc
RK
936 spin_lock_init(&aaci->lock);
937 aaci->card = card;
938 aaci->dev = dev;
939
940 /* Set MAINCR to allow slot 1 and 2 data IO */
941 aaci->maincr = MAINCR_IE | MAINCR_SL1RXEN | MAINCR_SL1TXEN |
942 MAINCR_SL2RXEN | MAINCR_SL2TXEN;
943
944 return aaci;
945}
946
947static int __devinit aaci_init_pcm(struct aaci *aaci)
948{
ceb9e476 949 struct snd_pcm *pcm;
cb5a6ffc
RK
950 int ret;
951
41762b8c 952 ret = snd_pcm_new(aaci->card, "AACI AC'97", 0, 1, 1, &pcm);
cb5a6ffc
RK
953 if (ret == 0) {
954 aaci->pcm = pcm;
955 pcm->private_data = aaci;
956 pcm->info_flags = 0;
957
958 strlcpy(pcm->name, DRIVER_NAME, sizeof(pcm->name));
959
960 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &aaci_playback_ops);
41762b8c 961 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &aaci_capture_ops);
d6797322 962 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
d4946431 963 NULL, 0, 64 * 1024);
cb5a6ffc
RK
964 }
965
966 return ret;
967}
968
969static unsigned int __devinit aaci_size_fifo(struct aaci *aaci)
970{
41762b8c 971 struct aaci_runtime *aacirun = &aaci->playback;
cb5a6ffc
RK
972 int i;
973
41762b8c 974 writel(CR_FEN | CR_SZ16 | CR_EN, aacirun->base + AACI_TXCR);
cb5a6ffc 975
41762b8c
KH
976 for (i = 0; !(readl(aacirun->base + AACI_SR) & SR_TXFF) && i < 4096; i++)
977 writel(0, aacirun->fifo);
cb5a6ffc 978
41762b8c 979 writel(0, aacirun->base + AACI_TXCR);
cb5a6ffc
RK
980
981 /*
982 * Re-initialise the AACI after the FIFO depth test, to
983 * ensure that the FIFOs are empty. Unfortunately, merely
984 * disabling the channel doesn't clear the FIFO.
985 */
986 writel(aaci->maincr & ~MAINCR_IE, aaci->base + AACI_MAINCR);
987 writel(aaci->maincr, aaci->base + AACI_MAINCR);
988
989 /*
990 * If we hit 4096, we failed. Go back to the specified
991 * fifo depth.
992 */
993 if (i == 4096)
994 i = 8;
995
996 return i;
997}
998
03fbdb15 999static int __devinit aaci_probe(struct amba_device *dev, struct amba_id *id)
cb5a6ffc
RK
1000{
1001 struct aaci *aaci;
1002 int ret, i;
1003
1004 ret = amba_request_regions(dev, NULL);
1005 if (ret)
1006 return ret;
1007
1008 aaci = aaci_init_card(dev);
631e8ad4
TI
1009 if (!aaci) {
1010 ret = -ENOMEM;
cb5a6ffc
RK
1011 goto out;
1012 }
1013
dc890c2d 1014 aaci->base = ioremap(dev->res.start, resource_size(&dev->res));
cb5a6ffc
RK
1015 if (!aaci->base) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019
1020 /*
1021 * Playback uses AACI channel 0
1022 */
1023 aaci->playback.base = aaci->base + AACI_CSCH1;
1024 aaci->playback.fifo = aaci->base + AACI_DR1;
1025
41762b8c
KH
1026 /*
1027 * Capture uses AACI channel 0
1028 */
1029 aaci->capture.base = aaci->base + AACI_CSCH1;
1030 aaci->capture.fifo = aaci->base + AACI_DR1;
1031
cb5a6ffc 1032 for (i = 0; i < 4; i++) {
e12ba644 1033 void __iomem *base = aaci->base + i * 0x14;
cb5a6ffc
RK
1034
1035 writel(0, base + AACI_IE);
1036 writel(0, base + AACI_TXCR);
1037 writel(0, base + AACI_RXCR);
1038 }
1039
1040 writel(0x1fff, aaci->base + AACI_INTCLR);
1041 writel(aaci->maincr, aaci->base + AACI_MAINCR);
1042
f27f218c
CM
1043 ret = aaci_probe_ac97(aaci);
1044 if (ret)
1045 goto out;
1046
cb5a6ffc 1047 /*
f27f218c 1048 * Size the FIFOs (must be multiple of 16).
cb5a6ffc
RK
1049 */
1050 aaci->fifosize = aaci_size_fifo(aaci);
f27f218c
CM
1051 if (aaci->fifosize & 15) {
1052 printk(KERN_WARNING "AACI: fifosize = %d not supported\n",
1053 aaci->fifosize);
1054 ret = -ENODEV;
cb5a6ffc 1055 goto out;
f27f218c 1056 }
cb5a6ffc
RK
1057
1058 ret = aaci_init_pcm(aaci);
1059 if (ret)
1060 goto out;
1061
a76af199
TI
1062 snd_card_set_dev(aaci->card, &dev->dev);
1063
cb5a6ffc
RK
1064 ret = snd_card_register(aaci->card);
1065 if (ret == 0) {
1066 dev_info(&dev->dev, "%s, fifo %d\n", aaci->card->longname,
41762b8c 1067 aaci->fifosize);
cb5a6ffc
RK
1068 amba_set_drvdata(dev, aaci->card);
1069 return ret;
1070 }
1071
1072 out:
1073 if (aaci)
1074 snd_card_free(aaci->card);
1075 amba_release_regions(dev);
1076 return ret;
1077}
1078
1079static int __devexit aaci_remove(struct amba_device *dev)
1080{
ceb9e476 1081 struct snd_card *card = amba_get_drvdata(dev);
cb5a6ffc
RK
1082
1083 amba_set_drvdata(dev, NULL);
1084
1085 if (card) {
1086 struct aaci *aaci = card->private_data;
1087 writel(0, aaci->base + AACI_MAINCR);
1088
1089 snd_card_free(card);
1090 amba_release_regions(dev);
1091 }
1092
1093 return 0;
1094}
1095
1096static struct amba_id aaci_ids[] = {
1097 {
1098 .id = 0x00041041,
1099 .mask = 0x000fffff,
1100 },
1101 { 0, 0 },
1102};
1103
1104static struct amba_driver aaci_driver = {
1105 .drv = {
1106 .name = DRIVER_NAME,
1107 },
1108 .probe = aaci_probe,
1109 .remove = __devexit_p(aaci_remove),
1110 .suspend = aaci_suspend,
1111 .resume = aaci_resume,
1112 .id_table = aaci_ids,
1113};
1114
1115static int __init aaci_init(void)
1116{
1117 return amba_driver_register(&aaci_driver);
1118}
1119
1120static void __exit aaci_exit(void)
1121{
1122 amba_driver_unregister(&aaci_driver);
1123}
1124
1125module_init(aaci_init);
1126module_exit(aaci_exit);
1127
1128MODULE_LICENSE("GPL");
1129MODULE_DESCRIPTION("ARM PrimeCell PL041 Advanced Audio CODEC Interface driver");
This page took 0.486071 seconds and 5 git commands to generate.