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