ASoC: S3C: I2Sv2: New field for controller feature
[deliverable/linux.git] / sound / soc / s3c24xx / s3c-i2s-v2.c
CommitLineData
dc85447b
BD
1/* sound/soc/s3c24xx/s3c-i2c-v2.c
2 *
3 * ALSA Soc Audio Layer - I2S core for newer Samsung SoCs.
4 *
5 * Copyright (c) 2006 Wolfson Microelectronics PLC.
6 * Graeme Gregory graeme.gregory@wolfsonmicro.com
7 * linux@wolfsonmicro.com
8 *
9 * Copyright (c) 2008, 2007, 2004-2005 Simtec Electronics
10 * http://armlinux.simtec.co.uk/
11 * Ben Dooks <ben@simtec.co.uk>
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 */
18
dc85447b
BD
19#include <linux/delay.h>
20#include <linux/clk.h>
dc85447b
BD
21#include <linux/io.h>
22
dc85447b
BD
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
dc85447b
BD
25#include <sound/soc.h>
26
dc85447b
BD
27#include <mach/dma.h>
28
d07e7ce9 29#include "regs-i2s-v2.h"
dc85447b 30#include "s3c-i2s-v2.h"
d3ff5a3e 31#include "s3c-dma.h"
dc85447b 32
8a0f62b8
MB
33#undef S3C_IIS_V2_SUPPORTED
34
35#if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
36#define S3C_IIS_V2_SUPPORTED
37#endif
38
39#ifdef CONFIG_PLAT_S3C64XX
40#define S3C_IIS_V2_SUPPORTED
41#endif
42
43#ifndef S3C_IIS_V2_SUPPORTED
44#error Unsupported CPU model
45#endif
46
dc85447b 47#define S3C2412_I2S_DEBUG_CON 0
dc85447b
BD
48
49static inline struct s3c_i2sv2_info *to_info(struct snd_soc_dai *cpu_dai)
50{
51 return cpu_dai->private_data;
52}
53
54#define bit_set(v, b) (((v) & (b)) ? 1 : 0)
55
56#if S3C2412_I2S_DEBUG_CON
57static void dbg_showcon(const char *fn, u32 con)
58{
59 printk(KERN_DEBUG "%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn,
60 bit_set(con, S3C2412_IISCON_LRINDEX),
61 bit_set(con, S3C2412_IISCON_TXFIFO_EMPTY),
62 bit_set(con, S3C2412_IISCON_RXFIFO_EMPTY),
63 bit_set(con, S3C2412_IISCON_TXFIFO_FULL),
64 bit_set(con, S3C2412_IISCON_RXFIFO_FULL));
65
66 printk(KERN_DEBUG "%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n",
67 fn,
68 bit_set(con, S3C2412_IISCON_TXDMA_PAUSE),
69 bit_set(con, S3C2412_IISCON_RXDMA_PAUSE),
70 bit_set(con, S3C2412_IISCON_TXCH_PAUSE),
71 bit_set(con, S3C2412_IISCON_RXCH_PAUSE));
72 printk(KERN_DEBUG "%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn,
73 bit_set(con, S3C2412_IISCON_TXDMA_ACTIVE),
74 bit_set(con, S3C2412_IISCON_RXDMA_ACTIVE),
75 bit_set(con, S3C2412_IISCON_IIS_ACTIVE));
76}
77#else
78static inline void dbg_showcon(const char *fn, u32 con)
79{
80}
81#endif
82
83
84/* Turn on or off the transmission path. */
abbc8246 85static void s3c2412_snd_txctrl(struct s3c_i2sv2_info *i2s, int on)
dc85447b
BD
86{
87 void __iomem *regs = i2s->regs;
88 u32 fic, con, mod;
89
ee7d4767 90 pr_debug("%s(%d)\n", __func__, on);
dc85447b
BD
91
92 fic = readl(regs + S3C2412_IISFIC);
93 con = readl(regs + S3C2412_IISCON);
94 mod = readl(regs + S3C2412_IISMOD);
95
ee7d4767 96 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
dc85447b
BD
97
98 if (on) {
99 con |= S3C2412_IISCON_TXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE;
100 con &= ~S3C2412_IISCON_TXDMA_PAUSE;
101 con &= ~S3C2412_IISCON_TXCH_PAUSE;
102
103 switch (mod & S3C2412_IISMOD_MODE_MASK) {
104 case S3C2412_IISMOD_MODE_TXONLY:
105 case S3C2412_IISMOD_MODE_TXRX:
106 /* do nothing, we are in the right mode */
107 break;
108
109 case S3C2412_IISMOD_MODE_RXONLY:
110 mod &= ~S3C2412_IISMOD_MODE_MASK;
111 mod |= S3C2412_IISMOD_MODE_TXRX;
112 break;
113
114 default:
abbc8246
MB
115 dev_err(i2s->dev, "TXEN: Invalid MODE %x in IISMOD\n",
116 mod & S3C2412_IISMOD_MODE_MASK);
117 break;
dc85447b
BD
118 }
119
120 writel(con, regs + S3C2412_IISCON);
121 writel(mod, regs + S3C2412_IISMOD);
122 } else {
123 /* Note, we do not have any indication that the FIFO problems
124 * tha the S3C2410/2440 had apply here, so we should be able
125 * to disable the DMA and TX without resetting the FIFOS.
126 */
127
128 con |= S3C2412_IISCON_TXDMA_PAUSE;
129 con |= S3C2412_IISCON_TXCH_PAUSE;
130 con &= ~S3C2412_IISCON_TXDMA_ACTIVE;
131
132 switch (mod & S3C2412_IISMOD_MODE_MASK) {
133 case S3C2412_IISMOD_MODE_TXRX:
134 mod &= ~S3C2412_IISMOD_MODE_MASK;
135 mod |= S3C2412_IISMOD_MODE_RXONLY;
136 break;
137
138 case S3C2412_IISMOD_MODE_TXONLY:
139 mod &= ~S3C2412_IISMOD_MODE_MASK;
140 con &= ~S3C2412_IISCON_IIS_ACTIVE;
141 break;
142
143 default:
abbc8246
MB
144 dev_err(i2s->dev, "TXDIS: Invalid MODE %x in IISMOD\n",
145 mod & S3C2412_IISMOD_MODE_MASK);
146 break;
dc85447b
BD
147 }
148
149 writel(mod, regs + S3C2412_IISMOD);
150 writel(con, regs + S3C2412_IISCON);
151 }
152
153 fic = readl(regs + S3C2412_IISFIC);
154 dbg_showcon(__func__, con);
ee7d4767 155 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
dc85447b 156}
dc85447b 157
abbc8246 158static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info *i2s, int on)
dc85447b
BD
159{
160 void __iomem *regs = i2s->regs;
161 u32 fic, con, mod;
162
ee7d4767 163 pr_debug("%s(%d)\n", __func__, on);
dc85447b
BD
164
165 fic = readl(regs + S3C2412_IISFIC);
166 con = readl(regs + S3C2412_IISCON);
167 mod = readl(regs + S3C2412_IISMOD);
168
ee7d4767 169 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
dc85447b
BD
170
171 if (on) {
172 con |= S3C2412_IISCON_RXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE;
173 con &= ~S3C2412_IISCON_RXDMA_PAUSE;
174 con &= ~S3C2412_IISCON_RXCH_PAUSE;
175
176 switch (mod & S3C2412_IISMOD_MODE_MASK) {
177 case S3C2412_IISMOD_MODE_TXRX:
178 case S3C2412_IISMOD_MODE_RXONLY:
179 /* do nothing, we are in the right mode */
180 break;
181
182 case S3C2412_IISMOD_MODE_TXONLY:
183 mod &= ~S3C2412_IISMOD_MODE_MASK;
184 mod |= S3C2412_IISMOD_MODE_TXRX;
185 break;
186
187 default:
abbc8246
MB
188 dev_err(i2s->dev, "RXEN: Invalid MODE %x in IISMOD\n",
189 mod & S3C2412_IISMOD_MODE_MASK);
dc85447b
BD
190 }
191
192 writel(mod, regs + S3C2412_IISMOD);
193 writel(con, regs + S3C2412_IISCON);
194 } else {
195 /* See txctrl notes on FIFOs. */
196
197 con &= ~S3C2412_IISCON_RXDMA_ACTIVE;
198 con |= S3C2412_IISCON_RXDMA_PAUSE;
199 con |= S3C2412_IISCON_RXCH_PAUSE;
200
201 switch (mod & S3C2412_IISMOD_MODE_MASK) {
202 case S3C2412_IISMOD_MODE_RXONLY:
203 con &= ~S3C2412_IISCON_IIS_ACTIVE;
204 mod &= ~S3C2412_IISMOD_MODE_MASK;
205 break;
206
207 case S3C2412_IISMOD_MODE_TXRX:
208 mod &= ~S3C2412_IISMOD_MODE_MASK;
209 mod |= S3C2412_IISMOD_MODE_TXONLY;
210 break;
211
212 default:
abbc8246
MB
213 dev_err(i2s->dev, "RXDIS: Invalid MODE %x in IISMOD\n",
214 mod & S3C2412_IISMOD_MODE_MASK);
dc85447b
BD
215 }
216
217 writel(con, regs + S3C2412_IISCON);
218 writel(mod, regs + S3C2412_IISMOD);
219 }
220
221 fic = readl(regs + S3C2412_IISFIC);
ee7d4767 222 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
dc85447b 223}
dc85447b 224
fa68e002
J
225#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
226
dc85447b
BD
227/*
228 * Wait for the LR signal to allow synchronisation to the L/R clock
229 * from the codec. May only be needed for slave mode.
230 */
231static int s3c2412_snd_lrsync(struct s3c_i2sv2_info *i2s)
232{
233 u32 iiscon;
fa68e002 234 unsigned long loops = msecs_to_loops(5);
dc85447b 235
ee7d4767 236 pr_debug("Entered %s\n", __func__);
dc85447b 237
fa68e002 238 while (--loops) {
dc85447b
BD
239 iiscon = readl(i2s->regs + S3C2412_IISCON);
240 if (iiscon & S3C2412_IISCON_LRINDEX)
241 break;
242
fa68e002
J
243 cpu_relax();
244 }
245
246 if (!loops) {
247 printk(KERN_ERR "%s: timeout\n", __func__);
248 return -ETIMEDOUT;
dc85447b
BD
249 }
250
251 return 0;
252}
253
254/*
255 * Set S3C2412 I2S DAI format
256 */
257static int s3c2412_i2s_set_fmt(struct snd_soc_dai *cpu_dai,
258 unsigned int fmt)
259{
260 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
261 u32 iismod;
262
ee7d4767 263 pr_debug("Entered %s\n", __func__);
dc85447b
BD
264
265 iismod = readl(i2s->regs + S3C2412_IISMOD);
ee7d4767 266 pr_debug("hw_params r: IISMOD: %x \n", iismod);
dc85447b 267
dc85447b
BD
268 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
269 case SND_SOC_DAIFMT_CBM_CFM:
270 i2s->master = 0;
ce76f9fd 271 iismod |= S3C2412_IISMOD_SLAVE;
dc85447b
BD
272 break;
273 case SND_SOC_DAIFMT_CBS_CFS:
274 i2s->master = 1;
ce76f9fd 275 iismod &= ~S3C2412_IISMOD_SLAVE;
dc85447b
BD
276 break;
277 default:
38e43c81 278 pr_err("unknwon master/slave format\n");
dc85447b
BD
279 return -EINVAL;
280 }
281
282 iismod &= ~S3C2412_IISMOD_SDF_MASK;
283
284 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
285 case SND_SOC_DAIFMT_RIGHT_J:
fd5ad654 286 iismod |= S3C2412_IISMOD_LR_RLOW;
dc85447b
BD
287 iismod |= S3C2412_IISMOD_SDF_MSB;
288 break;
289 case SND_SOC_DAIFMT_LEFT_J:
fd5ad654 290 iismod |= S3C2412_IISMOD_LR_RLOW;
dc85447b
BD
291 iismod |= S3C2412_IISMOD_SDF_LSB;
292 break;
293 case SND_SOC_DAIFMT_I2S:
fd5ad654 294 iismod &= ~S3C2412_IISMOD_LR_RLOW;
dc85447b
BD
295 iismod |= S3C2412_IISMOD_SDF_IIS;
296 break;
297 default:
38e43c81 298 pr_err("Unknown data format\n");
dc85447b
BD
299 return -EINVAL;
300 }
301
302 writel(iismod, i2s->regs + S3C2412_IISMOD);
ee7d4767 303 pr_debug("hw_params w: IISMOD: %x \n", iismod);
dc85447b
BD
304 return 0;
305}
306
9c9b1257 307static int s3c_i2sv2_hw_params(struct snd_pcm_substream *substream,
dc85447b
BD
308 struct snd_pcm_hw_params *params,
309 struct snd_soc_dai *socdai)
310{
311 struct snd_soc_pcm_runtime *rtd = substream->private_data;
312 struct snd_soc_dai_link *dai = rtd->dai;
313 struct s3c_i2sv2_info *i2s = to_info(dai->cpu_dai);
fd23b7de 314 struct s3c_dma_params *dma_data;
dc85447b
BD
315 u32 iismod;
316
ee7d4767 317 pr_debug("Entered %s\n", __func__);
dc85447b
BD
318
319 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
fd23b7de 320 dma_data = i2s->dma_playback;
dc85447b 321 else
fd23b7de
DM
322 dma_data = i2s->dma_capture;
323
324 snd_soc_dai_set_dma_data(dai->cpu_dai, substream, dma_data);
dc85447b
BD
325
326 /* Working copies of register */
327 iismod = readl(i2s->regs + S3C2412_IISMOD);
ee7d4767 328 pr_debug("%s: r: IISMOD: %x\n", __func__, iismod);
dc85447b 329
bf328826 330 iismod &= ~S3C64XX_IISMOD_BLC_MASK;
553b1dd5
MB
331 /* Sample size */
332 switch (params_format(params)) {
333 case SNDRV_PCM_FORMAT_S8:
bf328826 334 iismod |= S3C64XX_IISMOD_BLC_8BIT;
553b1dd5
MB
335 break;
336 case SNDRV_PCM_FORMAT_S16_LE:
553b1dd5
MB
337 break;
338 case SNDRV_PCM_FORMAT_S24_LE:
bf328826 339 iismod |= S3C64XX_IISMOD_BLC_24BIT;
553b1dd5
MB
340 break;
341 }
dc85447b
BD
342
343 writel(iismod, i2s->regs + S3C2412_IISMOD);
ee7d4767 344 pr_debug("%s: w: IISMOD: %x\n", __func__, iismod);
dc85447b
BD
345 return 0;
346}
347
348static int s3c2412_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
349 struct snd_soc_dai *dai)
350{
351 struct snd_soc_pcm_runtime *rtd = substream->private_data;
352 struct s3c_i2sv2_info *i2s = to_info(rtd->dai->cpu_dai);
353 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
354 unsigned long irqs;
355 int ret = 0;
fd23b7de
DM
356 struct s3c_dma_params *dma_data =
357 snd_soc_dai_get_dma_data(rtd->dai->cpu_dai, substream);
dc85447b 358
ee7d4767 359 pr_debug("Entered %s\n", __func__);
dc85447b
BD
360
361 switch (cmd) {
362 case SNDRV_PCM_TRIGGER_START:
363 /* On start, ensure that the FIFOs are cleared and reset. */
364
365 writel(capture ? S3C2412_IISFIC_RXFLUSH : S3C2412_IISFIC_TXFLUSH,
366 i2s->regs + S3C2412_IISFIC);
367
368 /* clear again, just in case */
369 writel(0x0, i2s->regs + S3C2412_IISFIC);
370
371 case SNDRV_PCM_TRIGGER_RESUME:
372 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
373 if (!i2s->master) {
374 ret = s3c2412_snd_lrsync(i2s);
375 if (ret)
376 goto exit_err;
377 }
378
379 local_irq_save(irqs);
380
381 if (capture)
382 s3c2412_snd_rxctrl(i2s, 1);
383 else
384 s3c2412_snd_txctrl(i2s, 1);
385
386 local_irq_restore(irqs);
faf907c7
SL
387
388 /*
389 * Load the next buffer to DMA to meet the reqirement
390 * of the auto reload mechanism of S3C24XX.
391 * This call won't bother S3C64XX.
392 */
fd23b7de 393 s3c2410_dma_ctrl(dma_data->channel, S3C2410_DMAOP_STARTED);
faf907c7 394
dc85447b
BD
395 break;
396
397 case SNDRV_PCM_TRIGGER_STOP:
398 case SNDRV_PCM_TRIGGER_SUSPEND:
399 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
400 local_irq_save(irqs);
401
402 if (capture)
403 s3c2412_snd_rxctrl(i2s, 0);
404 else
405 s3c2412_snd_txctrl(i2s, 0);
406
407 local_irq_restore(irqs);
408 break;
409 default:
410 ret = -EINVAL;
411 break;
412 }
413
414exit_err:
415 return ret;
416}
417
418/*
419 * Set S3C2412 Clock dividers
420 */
421static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai *cpu_dai,
422 int div_id, int div)
423{
424 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
425 u32 reg;
426
ee7d4767 427 pr_debug("%s(%p, %d, %d)\n", __func__, cpu_dai, div_id, div);
dc85447b
BD
428
429 switch (div_id) {
430 case S3C_I2SV2_DIV_BCLK:
51c6ab13
JB
431 switch (div) {
432 case 16:
433 div = S3C2412_IISMOD_BCLK_16FS;
434 break;
fd5ad654 435
51c6ab13
JB
436 case 32:
437 div = S3C2412_IISMOD_BCLK_32FS;
438 break;
fd5ad654 439
51c6ab13
JB
440 case 24:
441 div = S3C2412_IISMOD_BCLK_24FS;
442 break;
fd5ad654 443
51c6ab13
JB
444 case 48:
445 div = S3C2412_IISMOD_BCLK_48FS;
446 break;
fd5ad654 447
51c6ab13
JB
448 default:
449 return -EINVAL;
fd5ad654
J
450 }
451
dc85447b
BD
452 reg = readl(i2s->regs + S3C2412_IISMOD);
453 reg &= ~S3C2412_IISMOD_BCLK_MASK;
454 writel(reg | div, i2s->regs + S3C2412_IISMOD);
455
ee7d4767 456 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
dc85447b
BD
457 break;
458
459 case S3C_I2SV2_DIV_RCLK:
51c6ab13
JB
460 switch (div) {
461 case 256:
462 div = S3C2412_IISMOD_RCLK_256FS;
463 break;
dc85447b 464
51c6ab13
JB
465 case 384:
466 div = S3C2412_IISMOD_RCLK_384FS;
467 break;
dc85447b 468
51c6ab13
JB
469 case 512:
470 div = S3C2412_IISMOD_RCLK_512FS;
471 break;
dc85447b 472
51c6ab13
JB
473 case 768:
474 div = S3C2412_IISMOD_RCLK_768FS;
475 break;
dc85447b 476
51c6ab13
JB
477 default:
478 return -EINVAL;
dc85447b
BD
479 }
480
481 reg = readl(i2s->regs + S3C2412_IISMOD);
482 reg &= ~S3C2412_IISMOD_RCLK_MASK;
483 writel(reg | div, i2s->regs + S3C2412_IISMOD);
ee7d4767 484 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
dc85447b
BD
485 break;
486
487 case S3C_I2SV2_DIV_PRESCALER:
488 if (div >= 0) {
489 writel((div << 8) | S3C2412_IISPSR_PSREN,
490 i2s->regs + S3C2412_IISPSR);
491 } else {
492 writel(0x0, i2s->regs + S3C2412_IISPSR);
493 }
ee7d4767 494 pr_debug("%s: PSR=%08x\n", __func__, readl(i2s->regs + S3C2412_IISPSR));
dc85447b
BD
495 break;
496
497 default:
498 return -EINVAL;
499 }
500
501 return 0;
502}
503
1ca75780
MB
504static snd_pcm_sframes_t s3c2412_i2s_delay(struct snd_pcm_substream *substream,
505 struct snd_soc_dai *dai)
506{
507 struct s3c_i2sv2_info *i2s = to_info(dai);
508 u32 reg = readl(i2s->regs + S3C2412_IISFIC);
509 snd_pcm_sframes_t delay;
510
511 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
512 delay = S3C2412_IISFIC_TXCOUNT(reg);
513 else
514 delay = S3C2412_IISFIC_RXCOUNT(reg);
515
516 return delay;
517}
518
57282427
JB
519struct clk *s3c_i2sv2_get_clock(struct snd_soc_dai *cpu_dai)
520{
521 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
522 u32 iismod = readl(i2s->regs + S3C2412_IISMOD);
523
524 if (iismod & S3C2412_IISMOD_IMS_SYSMUX)
525 return i2s->iis_cclk;
526 else
527 return i2s->iis_pclk;
528}
529EXPORT_SYMBOL_GPL(s3c_i2sv2_get_clock);
530
dc85447b
BD
531/* default table of all avaialable root fs divisors */
532static unsigned int iis_fs_tab[] = { 256, 512, 384, 768 };
533
1d2b7ae9
BD
534int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc *info,
535 unsigned int *fstab,
536 unsigned int rate, struct clk *clk)
dc85447b
BD
537{
538 unsigned long clkrate = clk_get_rate(clk);
539 unsigned int div;
540 unsigned int fsclk;
541 unsigned int actual;
542 unsigned int fs;
543 unsigned int fsdiv;
544 signed int deviation = 0;
545 unsigned int best_fs = 0;
546 unsigned int best_div = 0;
547 unsigned int best_rate = 0;
548 unsigned int best_deviation = INT_MAX;
549
af3ea7bd
MB
550 pr_debug("Input clock rate %ldHz\n", clkrate);
551
dc85447b
BD
552 if (fstab == NULL)
553 fstab = iis_fs_tab;
554
555 for (fs = 0; fs < ARRAY_SIZE(iis_fs_tab); fs++) {
556 fsdiv = iis_fs_tab[fs];
557
558 fsclk = clkrate / fsdiv;
559 div = fsclk / rate;
560
561 if ((fsclk % rate) > (rate / 2))
562 div++;
563
564 if (div <= 1)
565 continue;
566
567 actual = clkrate / (fsdiv * div);
568 deviation = actual - rate;
569
449bd54d 570 printk(KERN_DEBUG "%ufs: div %u => result %u, deviation %d\n",
dc85447b
BD
571 fsdiv, div, actual, deviation);
572
573 deviation = abs(deviation);
574
575 if (deviation < best_deviation) {
576 best_fs = fsdiv;
577 best_div = div;
578 best_rate = actual;
579 best_deviation = deviation;
580 }
581
582 if (deviation == 0)
583 break;
584 }
585
449bd54d 586 printk(KERN_DEBUG "best: fs=%u, div=%u, rate=%u\n",
dc85447b
BD
587 best_fs, best_div, best_rate);
588
589 info->fs_div = best_fs;
590 info->clk_div = best_div;
591
592 return 0;
593}
1d2b7ae9 594EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate);
dc85447b
BD
595
596int s3c_i2sv2_probe(struct platform_device *pdev,
597 struct snd_soc_dai *dai,
598 struct s3c_i2sv2_info *i2s,
599 unsigned long base)
600{
601 struct device *dev = &pdev->dev;
07736d48 602 unsigned int iismod;
dc85447b
BD
603
604 i2s->dev = dev;
605
606 /* record our i2s structure for later use in the callbacks */
607 dai->private_data = i2s;
608
c86bde54
MB
609 if (!base) {
610 struct resource *res = platform_get_resource(pdev,
611 IORESOURCE_MEM,
612 0);
613 if (!res) {
614 dev_err(dev, "Unable to get register resource\n");
615 return -ENXIO;
616 }
617
618 if (!request_mem_region(res->start, resource_size(res),
619 "s3c64xx-i2s-v4")) {
620 dev_err(dev, "Unable to request register region\n");
621 return -EBUSY;
622 }
623
624 base = res->start;
625 }
626
dc85447b
BD
627 i2s->regs = ioremap(base, 0x100);
628 if (i2s->regs == NULL) {
629 dev_err(dev, "cannot ioremap registers\n");
630 return -ENXIO;
631 }
632
633 i2s->iis_pclk = clk_get(dev, "iis");
fd5ad654 634 if (IS_ERR(i2s->iis_pclk)) {
b52a5195 635 dev_err(dev, "failed to get iis_clock\n");
dc85447b
BD
636 iounmap(i2s->regs);
637 return -ENOENT;
638 }
639
640 clk_enable(i2s->iis_pclk);
641
07736d48
MB
642 /* Mark ourselves as in TXRX mode so we can run through our cleanup
643 * process without warnings. */
644 iismod = readl(i2s->regs + S3C2412_IISMOD);
645 iismod |= S3C2412_IISMOD_MODE_TXRX;
646 writel(iismod, i2s->regs + S3C2412_IISMOD);
dc85447b
BD
647 s3c2412_snd_txctrl(i2s, 0);
648 s3c2412_snd_rxctrl(i2s, 0);
649
650 return 0;
651}
dc85447b
BD
652EXPORT_SYMBOL_GPL(s3c_i2sv2_probe);
653
654#ifdef CONFIG_PM
655static int s3c2412_i2s_suspend(struct snd_soc_dai *dai)
656{
657 struct s3c_i2sv2_info *i2s = to_info(dai);
658 u32 iismod;
659
660 if (dai->active) {
661 i2s->suspend_iismod = readl(i2s->regs + S3C2412_IISMOD);
662 i2s->suspend_iiscon = readl(i2s->regs + S3C2412_IISCON);
663 i2s->suspend_iispsr = readl(i2s->regs + S3C2412_IISPSR);
664
665 /* some basic suspend checks */
666
667 iismod = readl(i2s->regs + S3C2412_IISMOD);
668
669 if (iismod & S3C2412_IISCON_RXDMA_ACTIVE)
670 pr_warning("%s: RXDMA active?\n", __func__);
671
672 if (iismod & S3C2412_IISCON_TXDMA_ACTIVE)
673 pr_warning("%s: TXDMA active?\n", __func__);
674
675 if (iismod & S3C2412_IISCON_IIS_ACTIVE)
676 pr_warning("%s: IIS active\n", __func__);
677 }
678
679 return 0;
680}
681
682static int s3c2412_i2s_resume(struct snd_soc_dai *dai)
683{
684 struct s3c_i2sv2_info *i2s = to_info(dai);
685
686 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
687 dai->active, i2s->suspend_iismod, i2s->suspend_iiscon);
688
689 if (dai->active) {
690 writel(i2s->suspend_iiscon, i2s->regs + S3C2412_IISCON);
691 writel(i2s->suspend_iismod, i2s->regs + S3C2412_IISMOD);
692 writel(i2s->suspend_iispsr, i2s->regs + S3C2412_IISPSR);
693
694 writel(S3C2412_IISFIC_RXFLUSH | S3C2412_IISFIC_TXFLUSH,
695 i2s->regs + S3C2412_IISFIC);
696
697 ndelay(250);
698 writel(0x0, i2s->regs + S3C2412_IISFIC);
699 }
700
701 return 0;
702}
703#else
704#define s3c2412_i2s_suspend NULL
705#define s3c2412_i2s_resume NULL
706#endif
707
708int s3c_i2sv2_register_dai(struct snd_soc_dai *dai)
709{
3715c6aa
BD
710 struct snd_soc_dai_ops *ops = dai->ops;
711
712 ops->trigger = s3c2412_i2s_trigger;
9c9b1257
JB
713 if (!ops->hw_params)
714 ops->hw_params = s3c_i2sv2_hw_params;
3715c6aa
BD
715 ops->set_fmt = s3c2412_i2s_set_fmt;
716 ops->set_clkdiv = s3c2412_i2s_set_clkdiv;
dc85447b 717
1ca75780
MB
718 /* Allow overriding by (for example) IISv4 */
719 if (!ops->delay)
08226614 720 ops->delay = s3c2412_i2s_delay;
1ca75780 721
dc85447b
BD
722 dai->suspend = s3c2412_i2s_suspend;
723 dai->resume = s3c2412_i2s_resume;
724
725 return snd_soc_register_dai(dai);
726}
dc85447b 727EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai);
a396e32e
MB
728
729MODULE_LICENSE("GPL");
This page took 0.079357 seconds and 5 git commands to generate.