Merge branches 'clk-imx', 'clk-samsung', 'clk-ti', 'clk-uniphier-gear' and 'clk-mmp2...
[linux-2.6-microblaze.git] / sound / soc / samsung / i2s.c
1 /* sound/soc/samsung/i2s.c
2  *
3  * ALSA SoC Audio Layer - Samsung I2S Controller driver
4  *
5  * Copyright (c) 2010 Samsung Electronics Co. Ltd.
6  *      Jaswinder Singh <jassisinghbrar@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include <dt-bindings/sound/samsung-i2s.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
16 #include <linux/clk.h>
17 #include <linux/clk-provider.h>
18 #include <linux/io.h>
19 #include <linux/module.h>
20 #include <linux/of.h>
21 #include <linux/of_device.h>
22 #include <linux/of_gpio.h>
23 #include <linux/pm_runtime.h>
24
25 #include <sound/soc.h>
26 #include <sound/pcm_params.h>
27
28 #include <linux/platform_data/asoc-s3c.h>
29
30 #include "dma.h"
31 #include "idma.h"
32 #include "i2s.h"
33 #include "i2s-regs.h"
34
35 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
36
37 struct samsung_i2s_variant_regs {
38         unsigned int    bfs_off;
39         unsigned int    rfs_off;
40         unsigned int    sdf_off;
41         unsigned int    txr_off;
42         unsigned int    rclksrc_off;
43         unsigned int    mss_off;
44         unsigned int    cdclkcon_off;
45         unsigned int    lrp_off;
46         unsigned int    bfs_mask;
47         unsigned int    rfs_mask;
48         unsigned int    ftx0cnt_off;
49 };
50
51 struct samsung_i2s_dai_data {
52         u32 quirks;
53         unsigned int pcm_rates;
54         const struct samsung_i2s_variant_regs *i2s_variant_regs;
55 };
56
57 struct i2s_dai {
58         /* Platform device for this DAI */
59         struct platform_device *pdev;
60         /* Memory mapped SFR region */
61         void __iomem    *addr;
62         /* Rate of RCLK source clock */
63         unsigned long rclk_srcrate;
64         /* Frame Clock */
65         unsigned frmclk;
66         /*
67          * Specifically requested RCLK,BCLK by MACHINE Driver.
68          * 0 indicates CPU driver is free to choose any value.
69          */
70         unsigned rfs, bfs;
71         /* I2S Controller's core clock */
72         struct clk *clk;
73         /* Clock for generating I2S signals */
74         struct clk *op_clk;
75         /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
76         struct i2s_dai *pri_dai;
77         /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
78         struct i2s_dai *sec_dai;
79 #define DAI_OPENED      (1 << 0) /* Dai is opened */
80 #define DAI_MANAGER     (1 << 1) /* Dai is the manager */
81         unsigned mode;
82         /* Driver for this DAI */
83         struct snd_soc_dai_driver i2s_dai_drv;
84         /* DMA parameters */
85         struct snd_dmaengine_dai_dma_data dma_playback;
86         struct snd_dmaengine_dai_dma_data dma_capture;
87         struct snd_dmaengine_dai_dma_data idma_playback;
88         dma_filter_fn filter;
89         u32     quirks;
90         u32     suspend_i2smod;
91         u32     suspend_i2scon;
92         u32     suspend_i2spsr;
93         const struct samsung_i2s_variant_regs *variant_regs;
94
95         /* Spinlock protecting access to the device's registers */
96         spinlock_t spinlock;
97         spinlock_t *lock;
98
99         /* Below fields are only valid if this is the primary FIFO */
100         struct clk *clk_table[3];
101         struct clk_onecell_data clk_data;
102 };
103
104 /* Lock for cross i/f checks */
105 static DEFINE_SPINLOCK(lock);
106
107 /* If this is the 'overlay' stereo DAI */
108 static inline bool is_secondary(struct i2s_dai *i2s)
109 {
110         return i2s->pri_dai ? true : false;
111 }
112
113 /* If operating in SoC-Slave mode */
114 static inline bool is_slave(struct i2s_dai *i2s)
115 {
116         u32 mod = readl(i2s->addr + I2SMOD);
117         return (mod & (1 << i2s->variant_regs->mss_off)) ? true : false;
118 }
119
120 /* If this interface of the controller is transmitting data */
121 static inline bool tx_active(struct i2s_dai *i2s)
122 {
123         u32 active;
124
125         if (!i2s)
126                 return false;
127
128         active = readl(i2s->addr + I2SCON);
129
130         if (is_secondary(i2s))
131                 active &= CON_TXSDMA_ACTIVE;
132         else
133                 active &= CON_TXDMA_ACTIVE;
134
135         return active ? true : false;
136 }
137
138 /* Return pointer to the other DAI */
139 static inline struct i2s_dai *get_other_dai(struct i2s_dai *i2s)
140 {
141         return i2s->pri_dai ? : i2s->sec_dai;
142 }
143
144 /* If the other interface of the controller is transmitting data */
145 static inline bool other_tx_active(struct i2s_dai *i2s)
146 {
147         struct i2s_dai *other = get_other_dai(i2s);
148
149         return tx_active(other);
150 }
151
152 /* If any interface of the controller is transmitting data */
153 static inline bool any_tx_active(struct i2s_dai *i2s)
154 {
155         return tx_active(i2s) || other_tx_active(i2s);
156 }
157
158 /* If this interface of the controller is receiving data */
159 static inline bool rx_active(struct i2s_dai *i2s)
160 {
161         u32 active;
162
163         if (!i2s)
164                 return false;
165
166         active = readl(i2s->addr + I2SCON) & CON_RXDMA_ACTIVE;
167
168         return active ? true : false;
169 }
170
171 /* If the other interface of the controller is receiving data */
172 static inline bool other_rx_active(struct i2s_dai *i2s)
173 {
174         struct i2s_dai *other = get_other_dai(i2s);
175
176         return rx_active(other);
177 }
178
179 /* If any interface of the controller is receiving data */
180 static inline bool any_rx_active(struct i2s_dai *i2s)
181 {
182         return rx_active(i2s) || other_rx_active(i2s);
183 }
184
185 /* If the other DAI is transmitting or receiving data */
186 static inline bool other_active(struct i2s_dai *i2s)
187 {
188         return other_rx_active(i2s) || other_tx_active(i2s);
189 }
190
191 /* If this DAI is transmitting or receiving data */
192 static inline bool this_active(struct i2s_dai *i2s)
193 {
194         return tx_active(i2s) || rx_active(i2s);
195 }
196
197 /* If the controller is active anyway */
198 static inline bool any_active(struct i2s_dai *i2s)
199 {
200         return this_active(i2s) || other_active(i2s);
201 }
202
203 static inline struct i2s_dai *to_info(struct snd_soc_dai *dai)
204 {
205         return snd_soc_dai_get_drvdata(dai);
206 }
207
208 static inline bool is_opened(struct i2s_dai *i2s)
209 {
210         if (i2s && (i2s->mode & DAI_OPENED))
211                 return true;
212         else
213                 return false;
214 }
215
216 static inline bool is_manager(struct i2s_dai *i2s)
217 {
218         if (is_opened(i2s) && (i2s->mode & DAI_MANAGER))
219                 return true;
220         else
221                 return false;
222 }
223
224 /* Read RCLK of I2S (in multiples of LRCLK) */
225 static inline unsigned get_rfs(struct i2s_dai *i2s)
226 {
227         u32 rfs;
228         rfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->rfs_off;
229         rfs &= i2s->variant_regs->rfs_mask;
230
231         switch (rfs) {
232         case 7: return 192;
233         case 6: return 96;
234         case 5: return 128;
235         case 4: return 64;
236         case 3: return 768;
237         case 2: return 384;
238         case 1: return 512;
239         default: return 256;
240         }
241 }
242
243 /* Write RCLK of I2S (in multiples of LRCLK) */
244 static inline void set_rfs(struct i2s_dai *i2s, unsigned rfs)
245 {
246         u32 mod = readl(i2s->addr + I2SMOD);
247         int rfs_shift = i2s->variant_regs->rfs_off;
248
249         mod &= ~(i2s->variant_regs->rfs_mask << rfs_shift);
250
251         switch (rfs) {
252         case 192:
253                 mod |= (EXYNOS7_MOD_RCLK_192FS << rfs_shift);
254                 break;
255         case 96:
256                 mod |= (EXYNOS7_MOD_RCLK_96FS << rfs_shift);
257                 break;
258         case 128:
259                 mod |= (EXYNOS7_MOD_RCLK_128FS << rfs_shift);
260                 break;
261         case 64:
262                 mod |= (EXYNOS7_MOD_RCLK_64FS << rfs_shift);
263                 break;
264         case 768:
265                 mod |= (MOD_RCLK_768FS << rfs_shift);
266                 break;
267         case 512:
268                 mod |= (MOD_RCLK_512FS << rfs_shift);
269                 break;
270         case 384:
271                 mod |= (MOD_RCLK_384FS << rfs_shift);
272                 break;
273         default:
274                 mod |= (MOD_RCLK_256FS << rfs_shift);
275                 break;
276         }
277
278         writel(mod, i2s->addr + I2SMOD);
279 }
280
281 /* Read Bit-Clock of I2S (in multiples of LRCLK) */
282 static inline unsigned get_bfs(struct i2s_dai *i2s)
283 {
284         u32 bfs;
285         bfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->bfs_off;
286         bfs &= i2s->variant_regs->bfs_mask;
287
288         switch (bfs) {
289         case 8: return 256;
290         case 7: return 192;
291         case 6: return 128;
292         case 5: return 96;
293         case 4: return 64;
294         case 3: return 24;
295         case 2: return 16;
296         case 1: return 48;
297         default: return 32;
298         }
299 }
300
301 /* Write Bit-Clock of I2S (in multiples of LRCLK) */
302 static inline void set_bfs(struct i2s_dai *i2s, unsigned bfs)
303 {
304         u32 mod = readl(i2s->addr + I2SMOD);
305         int tdm = i2s->quirks & QUIRK_SUPPORTS_TDM;
306         int bfs_shift = i2s->variant_regs->bfs_off;
307
308         /* Non-TDM I2S controllers do not support BCLK > 48 * FS */
309         if (!tdm && bfs > 48) {
310                 dev_err(&i2s->pdev->dev, "Unsupported BCLK divider\n");
311                 return;
312         }
313
314         mod &= ~(i2s->variant_regs->bfs_mask << bfs_shift);
315
316         switch (bfs) {
317         case 48:
318                 mod |= (MOD_BCLK_48FS << bfs_shift);
319                 break;
320         case 32:
321                 mod |= (MOD_BCLK_32FS << bfs_shift);
322                 break;
323         case 24:
324                 mod |= (MOD_BCLK_24FS << bfs_shift);
325                 break;
326         case 16:
327                 mod |= (MOD_BCLK_16FS << bfs_shift);
328                 break;
329         case 64:
330                 mod |= (EXYNOS5420_MOD_BCLK_64FS << bfs_shift);
331                 break;
332         case 96:
333                 mod |= (EXYNOS5420_MOD_BCLK_96FS << bfs_shift);
334                 break;
335         case 128:
336                 mod |= (EXYNOS5420_MOD_BCLK_128FS << bfs_shift);
337                 break;
338         case 192:
339                 mod |= (EXYNOS5420_MOD_BCLK_192FS << bfs_shift);
340                 break;
341         case 256:
342                 mod |= (EXYNOS5420_MOD_BCLK_256FS << bfs_shift);
343                 break;
344         default:
345                 dev_err(&i2s->pdev->dev, "Wrong BCLK Divider!\n");
346                 return;
347         }
348
349         writel(mod, i2s->addr + I2SMOD);
350 }
351
352 /* Sample-Size */
353 static inline int get_blc(struct i2s_dai *i2s)
354 {
355         int blc = readl(i2s->addr + I2SMOD);
356
357         blc = (blc >> 13) & 0x3;
358
359         switch (blc) {
360         case 2: return 24;
361         case 1: return 8;
362         default: return 16;
363         }
364 }
365
366 /* TX Channel Control */
367 static void i2s_txctrl(struct i2s_dai *i2s, int on)
368 {
369         void __iomem *addr = i2s->addr;
370         int txr_off = i2s->variant_regs->txr_off;
371         u32 con = readl(addr + I2SCON);
372         u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
373
374         if (on) {
375                 con |= CON_ACTIVE;
376                 con &= ~CON_TXCH_PAUSE;
377
378                 if (is_secondary(i2s)) {
379                         con |= CON_TXSDMA_ACTIVE;
380                         con &= ~CON_TXSDMA_PAUSE;
381                 } else {
382                         con |= CON_TXDMA_ACTIVE;
383                         con &= ~CON_TXDMA_PAUSE;
384                 }
385
386                 if (any_rx_active(i2s))
387                         mod |= 2 << txr_off;
388                 else
389                         mod |= 0 << txr_off;
390         } else {
391                 if (is_secondary(i2s)) {
392                         con |=  CON_TXSDMA_PAUSE;
393                         con &= ~CON_TXSDMA_ACTIVE;
394                 } else {
395                         con |=  CON_TXDMA_PAUSE;
396                         con &= ~CON_TXDMA_ACTIVE;
397                 }
398
399                 if (other_tx_active(i2s)) {
400                         writel(con, addr + I2SCON);
401                         return;
402                 }
403
404                 con |=  CON_TXCH_PAUSE;
405
406                 if (any_rx_active(i2s))
407                         mod |= 1 << txr_off;
408                 else
409                         con &= ~CON_ACTIVE;
410         }
411
412         writel(mod, addr + I2SMOD);
413         writel(con, addr + I2SCON);
414 }
415
416 /* RX Channel Control */
417 static void i2s_rxctrl(struct i2s_dai *i2s, int on)
418 {
419         void __iomem *addr = i2s->addr;
420         int txr_off = i2s->variant_regs->txr_off;
421         u32 con = readl(addr + I2SCON);
422         u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
423
424         if (on) {
425                 con |= CON_RXDMA_ACTIVE | CON_ACTIVE;
426                 con &= ~(CON_RXDMA_PAUSE | CON_RXCH_PAUSE);
427
428                 if (any_tx_active(i2s))
429                         mod |= 2 << txr_off;
430                 else
431                         mod |= 1 << txr_off;
432         } else {
433                 con |=  CON_RXDMA_PAUSE | CON_RXCH_PAUSE;
434                 con &= ~CON_RXDMA_ACTIVE;
435
436                 if (any_tx_active(i2s))
437                         mod |= 0 << txr_off;
438                 else
439                         con &= ~CON_ACTIVE;
440         }
441
442         writel(mod, addr + I2SMOD);
443         writel(con, addr + I2SCON);
444 }
445
446 /* Flush FIFO of an interface */
447 static inline void i2s_fifo(struct i2s_dai *i2s, u32 flush)
448 {
449         void __iomem *fic;
450         u32 val;
451
452         if (!i2s)
453                 return;
454
455         if (is_secondary(i2s))
456                 fic = i2s->addr + I2SFICS;
457         else
458                 fic = i2s->addr + I2SFIC;
459
460         /* Flush the FIFO */
461         writel(readl(fic) | flush, fic);
462
463         /* Be patient */
464         val = msecs_to_loops(1) / 1000; /* 1 usec */
465         while (--val)
466                 cpu_relax();
467
468         writel(readl(fic) & ~flush, fic);
469 }
470
471 static int i2s_set_sysclk(struct snd_soc_dai *dai,
472           int clk_id, unsigned int rfs, int dir)
473 {
474         struct i2s_dai *i2s = to_info(dai);
475         struct i2s_dai *other = get_other_dai(i2s);
476         const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
477         unsigned int cdcon_mask = 1 << i2s_regs->cdclkcon_off;
478         unsigned int rsrc_mask = 1 << i2s_regs->rclksrc_off;
479         u32 mod, mask, val = 0;
480         unsigned long flags;
481         int ret = 0;
482
483         pm_runtime_get_sync(dai->dev);
484
485         spin_lock_irqsave(i2s->lock, flags);
486         mod = readl(i2s->addr + I2SMOD);
487         spin_unlock_irqrestore(i2s->lock, flags);
488
489         switch (clk_id) {
490         case SAMSUNG_I2S_OPCLK:
491                 mask = MOD_OPCLK_MASK;
492                 val = (dir << MOD_OPCLK_SHIFT) & MOD_OPCLK_MASK;
493                 break;
494         case SAMSUNG_I2S_CDCLK:
495                 mask = 1 << i2s_regs->cdclkcon_off;
496                 /* Shouldn't matter in GATING(CLOCK_IN) mode */
497                 if (dir == SND_SOC_CLOCK_IN)
498                         rfs = 0;
499
500                 if ((rfs && other && other->rfs && (other->rfs != rfs)) ||
501                                 (any_active(i2s) &&
502                                 (((dir == SND_SOC_CLOCK_IN)
503                                         && !(mod & cdcon_mask)) ||
504                                 ((dir == SND_SOC_CLOCK_OUT)
505                                         && (mod & cdcon_mask))))) {
506                         dev_err(&i2s->pdev->dev,
507                                 "%s:%d Other DAI busy\n", __func__, __LINE__);
508                         ret = -EAGAIN;
509                         goto err;
510                 }
511
512                 if (dir == SND_SOC_CLOCK_IN)
513                         val = 1 << i2s_regs->cdclkcon_off;
514
515                 i2s->rfs = rfs;
516                 break;
517
518         case SAMSUNG_I2S_RCLKSRC_0: /* clock corrsponding to IISMOD[10] := 0 */
519         case SAMSUNG_I2S_RCLKSRC_1: /* clock corrsponding to IISMOD[10] := 1 */
520                 mask = 1 << i2s_regs->rclksrc_off;
521
522                 if ((i2s->quirks & QUIRK_NO_MUXPSR)
523                                 || (clk_id == SAMSUNG_I2S_RCLKSRC_0))
524                         clk_id = 0;
525                 else
526                         clk_id = 1;
527
528                 if (!any_active(i2s)) {
529                         if (i2s->op_clk && !IS_ERR(i2s->op_clk)) {
530                                 if ((clk_id && !(mod & rsrc_mask)) ||
531                                         (!clk_id && (mod & rsrc_mask))) {
532                                         clk_disable_unprepare(i2s->op_clk);
533                                         clk_put(i2s->op_clk);
534                                 } else {
535                                         i2s->rclk_srcrate =
536                                                 clk_get_rate(i2s->op_clk);
537                                         goto done;
538                                 }
539                         }
540
541                         if (clk_id)
542                                 i2s->op_clk = clk_get(&i2s->pdev->dev,
543                                                 "i2s_opclk1");
544                         else
545                                 i2s->op_clk = clk_get(&i2s->pdev->dev,
546                                                 "i2s_opclk0");
547
548                         if (WARN_ON(IS_ERR(i2s->op_clk))) {
549                                 ret = PTR_ERR(i2s->op_clk);
550                                 i2s->op_clk = NULL;
551                                 goto err;
552                         }
553
554                         ret = clk_prepare_enable(i2s->op_clk);
555                         if (ret) {
556                                 clk_put(i2s->op_clk);
557                                 i2s->op_clk = NULL;
558                                 goto err;
559                         }
560                         i2s->rclk_srcrate = clk_get_rate(i2s->op_clk);
561
562                         /* Over-ride the other's */
563                         if (other) {
564                                 other->op_clk = i2s->op_clk;
565                                 other->rclk_srcrate = i2s->rclk_srcrate;
566                         }
567                 } else if ((!clk_id && (mod & rsrc_mask))
568                                 || (clk_id && !(mod & rsrc_mask))) {
569                         dev_err(&i2s->pdev->dev,
570                                 "%s:%d Other DAI busy\n", __func__, __LINE__);
571                         ret = -EAGAIN;
572                         goto err;
573                 } else {
574                         /* Call can't be on the active DAI */
575                         i2s->op_clk = other->op_clk;
576                         i2s->rclk_srcrate = other->rclk_srcrate;
577                         goto done;
578                 }
579
580                 if (clk_id == 1)
581                         val = 1 << i2s_regs->rclksrc_off;
582                 break;
583         default:
584                 dev_err(&i2s->pdev->dev, "We don't serve that!\n");
585                 ret = -EINVAL;
586                 goto err;
587         }
588
589         spin_lock_irqsave(i2s->lock, flags);
590         mod = readl(i2s->addr + I2SMOD);
591         mod = (mod & ~mask) | val;
592         writel(mod, i2s->addr + I2SMOD);
593         spin_unlock_irqrestore(i2s->lock, flags);
594 done:
595         pm_runtime_put(dai->dev);
596
597         return 0;
598 err:
599         pm_runtime_put(dai->dev);
600         return ret;
601 }
602
603 static int i2s_set_fmt(struct snd_soc_dai *dai,
604         unsigned int fmt)
605 {
606         struct i2s_dai *i2s = to_info(dai);
607         struct i2s_dai *other = get_other_dai(i2s);
608         int lrp_shift, sdf_shift, sdf_mask, lrp_rlow, mod_slave;
609         u32 mod, tmp = 0;
610         unsigned long flags;
611
612         lrp_shift = i2s->variant_regs->lrp_off;
613         sdf_shift = i2s->variant_regs->sdf_off;
614         mod_slave = 1 << i2s->variant_regs->mss_off;
615
616         sdf_mask = MOD_SDF_MASK << sdf_shift;
617         lrp_rlow = MOD_LR_RLOW << lrp_shift;
618
619         /* Format is priority */
620         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
621         case SND_SOC_DAIFMT_RIGHT_J:
622                 tmp |= lrp_rlow;
623                 tmp |= (MOD_SDF_MSB << sdf_shift);
624                 break;
625         case SND_SOC_DAIFMT_LEFT_J:
626                 tmp |= lrp_rlow;
627                 tmp |= (MOD_SDF_LSB << sdf_shift);
628                 break;
629         case SND_SOC_DAIFMT_I2S:
630                 tmp |= (MOD_SDF_IIS << sdf_shift);
631                 break;
632         default:
633                 dev_err(&i2s->pdev->dev, "Format not supported\n");
634                 return -EINVAL;
635         }
636
637         /*
638          * INV flag is relative to the FORMAT flag - if set it simply
639          * flips the polarity specified by the Standard
640          */
641         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
642         case SND_SOC_DAIFMT_NB_NF:
643                 break;
644         case SND_SOC_DAIFMT_NB_IF:
645                 if (tmp & lrp_rlow)
646                         tmp &= ~lrp_rlow;
647                 else
648                         tmp |= lrp_rlow;
649                 break;
650         default:
651                 dev_err(&i2s->pdev->dev, "Polarity not supported\n");
652                 return -EINVAL;
653         }
654
655         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
656         case SND_SOC_DAIFMT_CBM_CFM:
657                 tmp |= mod_slave;
658                 break;
659         case SND_SOC_DAIFMT_CBS_CFS:
660                 /*
661                  * Set default source clock in Master mode, only when the
662                  * CLK_I2S_RCLK_SRC clock is not exposed so we ensure any
663                  * clock configuration assigned in DT is not overwritten.
664                  */
665                 if (i2s->rclk_srcrate == 0 && i2s->clk_data.clks == NULL &&
666                     other->clk_data.clks == NULL)
667                         i2s_set_sysclk(dai, SAMSUNG_I2S_RCLKSRC_0,
668                                                         0, SND_SOC_CLOCK_IN);
669                 break;
670         default:
671                 dev_err(&i2s->pdev->dev, "master/slave format not supported\n");
672                 return -EINVAL;
673         }
674
675         pm_runtime_get_sync(dai->dev);
676         spin_lock_irqsave(i2s->lock, flags);
677         mod = readl(i2s->addr + I2SMOD);
678         /*
679          * Don't change the I2S mode if any controller is active on this
680          * channel.
681          */
682         if (any_active(i2s) &&
683                 ((mod & (sdf_mask | lrp_rlow | mod_slave)) != tmp)) {
684                 spin_unlock_irqrestore(i2s->lock, flags);
685                 pm_runtime_put(dai->dev);
686                 dev_err(&i2s->pdev->dev,
687                                 "%s:%d Other DAI busy\n", __func__, __LINE__);
688                 return -EAGAIN;
689         }
690
691         mod &= ~(sdf_mask | lrp_rlow | mod_slave);
692         mod |= tmp;
693         writel(mod, i2s->addr + I2SMOD);
694         spin_unlock_irqrestore(i2s->lock, flags);
695         pm_runtime_put(dai->dev);
696
697         return 0;
698 }
699
700 static int i2s_hw_params(struct snd_pcm_substream *substream,
701         struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
702 {
703         struct i2s_dai *i2s = to_info(dai);
704         struct i2s_dai *other = get_other_dai(i2s);
705         u32 mod, mask = 0, val = 0;
706         struct clk *rclksrc;
707         unsigned long flags;
708
709         WARN_ON(!pm_runtime_active(dai->dev));
710
711         if (!is_secondary(i2s))
712                 mask |= (MOD_DC2_EN | MOD_DC1_EN);
713
714         switch (params_channels(params)) {
715         case 6:
716                 val |= MOD_DC2_EN;
717                 /* fall through */
718         case 4:
719                 val |= MOD_DC1_EN;
720                 break;
721         case 2:
722                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
723                         i2s->dma_playback.addr_width = 4;
724                 else
725                         i2s->dma_capture.addr_width = 4;
726                 break;
727         case 1:
728                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
729                         i2s->dma_playback.addr_width = 2;
730                 else
731                         i2s->dma_capture.addr_width = 2;
732
733                 break;
734         default:
735                 dev_err(&i2s->pdev->dev, "%d channels not supported\n",
736                                 params_channels(params));
737                 return -EINVAL;
738         }
739
740         if (is_secondary(i2s))
741                 mask |= MOD_BLCS_MASK;
742         else
743                 mask |= MOD_BLCP_MASK;
744
745         if (is_manager(i2s))
746                 mask |= MOD_BLC_MASK;
747
748         switch (params_width(params)) {
749         case 8:
750                 if (is_secondary(i2s))
751                         val |= MOD_BLCS_8BIT;
752                 else
753                         val |= MOD_BLCP_8BIT;
754                 if (is_manager(i2s))
755                         val |= MOD_BLC_8BIT;
756                 break;
757         case 16:
758                 if (is_secondary(i2s))
759                         val |= MOD_BLCS_16BIT;
760                 else
761                         val |= MOD_BLCP_16BIT;
762                 if (is_manager(i2s))
763                         val |= MOD_BLC_16BIT;
764                 break;
765         case 24:
766                 if (is_secondary(i2s))
767                         val |= MOD_BLCS_24BIT;
768                 else
769                         val |= MOD_BLCP_24BIT;
770                 if (is_manager(i2s))
771                         val |= MOD_BLC_24BIT;
772                 break;
773         default:
774                 dev_err(&i2s->pdev->dev, "Format(%d) not supported\n",
775                                 params_format(params));
776                 return -EINVAL;
777         }
778
779         spin_lock_irqsave(i2s->lock, flags);
780         mod = readl(i2s->addr + I2SMOD);
781         mod = (mod & ~mask) | val;
782         writel(mod, i2s->addr + I2SMOD);
783         spin_unlock_irqrestore(i2s->lock, flags);
784
785         snd_soc_dai_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);
786
787         i2s->frmclk = params_rate(params);
788
789         rclksrc = i2s->clk_table[CLK_I2S_RCLK_SRC];
790         if (!rclksrc || IS_ERR(rclksrc))
791                 rclksrc = other->clk_table[CLK_I2S_RCLK_SRC];
792
793         if (rclksrc && !IS_ERR(rclksrc))
794                 i2s->rclk_srcrate = clk_get_rate(rclksrc);
795
796         return 0;
797 }
798
799 /* We set constraints on the substream acc to the version of I2S */
800 static int i2s_startup(struct snd_pcm_substream *substream,
801           struct snd_soc_dai *dai)
802 {
803         struct i2s_dai *i2s = to_info(dai);
804         struct i2s_dai *other = get_other_dai(i2s);
805         unsigned long flags;
806
807         pm_runtime_get_sync(dai->dev);
808
809         spin_lock_irqsave(&lock, flags);
810
811         i2s->mode |= DAI_OPENED;
812
813         if (is_manager(other))
814                 i2s->mode &= ~DAI_MANAGER;
815         else
816                 i2s->mode |= DAI_MANAGER;
817
818         if (!any_active(i2s) && (i2s->quirks & QUIRK_NEED_RSTCLR))
819                 writel(CON_RSTCLR, i2s->addr + I2SCON);
820
821         spin_unlock_irqrestore(&lock, flags);
822
823         return 0;
824 }
825
826 static void i2s_shutdown(struct snd_pcm_substream *substream,
827         struct snd_soc_dai *dai)
828 {
829         struct i2s_dai *i2s = to_info(dai);
830         struct i2s_dai *other = get_other_dai(i2s);
831         unsigned long flags;
832
833         spin_lock_irqsave(&lock, flags);
834
835         i2s->mode &= ~DAI_OPENED;
836         i2s->mode &= ~DAI_MANAGER;
837
838         if (is_opened(other))
839                 other->mode |= DAI_MANAGER;
840
841         /* Reset any constraint on RFS and BFS */
842         i2s->rfs = 0;
843         i2s->bfs = 0;
844
845         spin_unlock_irqrestore(&lock, flags);
846
847         pm_runtime_put(dai->dev);
848 }
849
850 static int config_setup(struct i2s_dai *i2s)
851 {
852         struct i2s_dai *other = get_other_dai(i2s);
853         unsigned rfs, bfs, blc;
854         u32 psr;
855
856         blc = get_blc(i2s);
857
858         bfs = i2s->bfs;
859
860         if (!bfs && other)
861                 bfs = other->bfs;
862
863         /* Select least possible multiple(2) if no constraint set */
864         if (!bfs)
865                 bfs = blc * 2;
866
867         rfs = i2s->rfs;
868
869         if (!rfs && other)
870                 rfs = other->rfs;
871
872         if ((rfs == 256 || rfs == 512) && (blc == 24)) {
873                 dev_err(&i2s->pdev->dev,
874                         "%d-RFS not supported for 24-blc\n", rfs);
875                 return -EINVAL;
876         }
877
878         if (!rfs) {
879                 if (bfs == 16 || bfs == 32)
880                         rfs = 256;
881                 else
882                         rfs = 384;
883         }
884
885         /* If already setup and running */
886         if (any_active(i2s) && (get_rfs(i2s) != rfs || get_bfs(i2s) != bfs)) {
887                 dev_err(&i2s->pdev->dev,
888                                 "%s:%d Other DAI busy\n", __func__, __LINE__);
889                 return -EAGAIN;
890         }
891
892         set_bfs(i2s, bfs);
893         set_rfs(i2s, rfs);
894
895         /* Don't bother with PSR in Slave mode */
896         if (is_slave(i2s))
897                 return 0;
898
899         if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
900                 psr = i2s->rclk_srcrate / i2s->frmclk / rfs;
901                 writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR);
902                 dev_dbg(&i2s->pdev->dev,
903                         "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
904                                 i2s->rclk_srcrate, psr, rfs, bfs);
905         }
906
907         return 0;
908 }
909
910 static int i2s_trigger(struct snd_pcm_substream *substream,
911         int cmd, struct snd_soc_dai *dai)
912 {
913         int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
914         struct snd_soc_pcm_runtime *rtd = substream->private_data;
915         struct i2s_dai *i2s = to_info(rtd->cpu_dai);
916         unsigned long flags;
917
918         switch (cmd) {
919         case SNDRV_PCM_TRIGGER_START:
920         case SNDRV_PCM_TRIGGER_RESUME:
921         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
922                 pm_runtime_get_sync(dai->dev);
923                 spin_lock_irqsave(i2s->lock, flags);
924
925                 if (config_setup(i2s)) {
926                         spin_unlock_irqrestore(i2s->lock, flags);
927                         return -EINVAL;
928                 }
929
930                 if (capture)
931                         i2s_rxctrl(i2s, 1);
932                 else
933                         i2s_txctrl(i2s, 1);
934
935                 spin_unlock_irqrestore(i2s->lock, flags);
936                 break;
937         case SNDRV_PCM_TRIGGER_STOP:
938         case SNDRV_PCM_TRIGGER_SUSPEND:
939         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
940                 spin_lock_irqsave(i2s->lock, flags);
941
942                 if (capture) {
943                         i2s_rxctrl(i2s, 0);
944                         i2s_fifo(i2s, FIC_RXFLUSH);
945                 } else {
946                         i2s_txctrl(i2s, 0);
947                         i2s_fifo(i2s, FIC_TXFLUSH);
948                 }
949
950                 spin_unlock_irqrestore(i2s->lock, flags);
951                 pm_runtime_put(dai->dev);
952                 break;
953         }
954
955         return 0;
956 }
957
958 static int i2s_set_clkdiv(struct snd_soc_dai *dai,
959         int div_id, int div)
960 {
961         struct i2s_dai *i2s = to_info(dai);
962         struct i2s_dai *other = get_other_dai(i2s);
963
964         switch (div_id) {
965         case SAMSUNG_I2S_DIV_BCLK:
966                 pm_runtime_get_sync(dai->dev);
967                 if ((any_active(i2s) && div && (get_bfs(i2s) != div))
968                         || (other && other->bfs && (other->bfs != div))) {
969                         pm_runtime_put(dai->dev);
970                         dev_err(&i2s->pdev->dev,
971                                 "%s:%d Other DAI busy\n", __func__, __LINE__);
972                         return -EAGAIN;
973                 }
974                 i2s->bfs = div;
975                 pm_runtime_put(dai->dev);
976                 break;
977         default:
978                 dev_err(&i2s->pdev->dev,
979                         "Invalid clock divider(%d)\n", div_id);
980                 return -EINVAL;
981         }
982
983         return 0;
984 }
985
986 static snd_pcm_sframes_t
987 i2s_delay(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
988 {
989         struct i2s_dai *i2s = to_info(dai);
990         u32 reg = readl(i2s->addr + I2SFIC);
991         snd_pcm_sframes_t delay;
992         const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
993
994         WARN_ON(!pm_runtime_active(dai->dev));
995
996         if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
997                 delay = FIC_RXCOUNT(reg);
998         else if (is_secondary(i2s))
999                 delay = FICS_TXCOUNT(readl(i2s->addr + I2SFICS));
1000         else
1001                 delay = (reg >> i2s_regs->ftx0cnt_off) & 0x7f;
1002
1003         return delay;
1004 }
1005
1006 #ifdef CONFIG_PM
1007 static int i2s_suspend(struct snd_soc_dai *dai)
1008 {
1009         return pm_runtime_force_suspend(dai->dev);
1010 }
1011
1012 static int i2s_resume(struct snd_soc_dai *dai)
1013 {
1014         return pm_runtime_force_resume(dai->dev);
1015 }
1016 #else
1017 #define i2s_suspend NULL
1018 #define i2s_resume  NULL
1019 #endif
1020
1021 static int samsung_i2s_dai_probe(struct snd_soc_dai *dai)
1022 {
1023         struct i2s_dai *i2s = to_info(dai);
1024         struct i2s_dai *other = get_other_dai(i2s);
1025         unsigned long flags;
1026
1027         pm_runtime_get_sync(dai->dev);
1028
1029         if (is_secondary(i2s)) { /* If this is probe on the secondary DAI */
1030                 snd_soc_dai_init_dma_data(dai, &other->sec_dai->dma_playback,
1031                                            NULL);
1032         } else {
1033                 snd_soc_dai_init_dma_data(dai, &i2s->dma_playback,
1034                                            &i2s->dma_capture);
1035
1036                 if (i2s->quirks & QUIRK_NEED_RSTCLR)
1037                         writel(CON_RSTCLR, i2s->addr + I2SCON);
1038
1039                 if (i2s->quirks & QUIRK_SUPPORTS_IDMA)
1040                         idma_reg_addr_init(i2s->addr,
1041                                         i2s->sec_dai->idma_playback.addr);
1042         }
1043
1044         /* Reset any constraint on RFS and BFS */
1045         i2s->rfs = 0;
1046         i2s->bfs = 0;
1047         i2s->rclk_srcrate = 0;
1048
1049         spin_lock_irqsave(i2s->lock, flags);
1050         i2s_txctrl(i2s, 0);
1051         i2s_rxctrl(i2s, 0);
1052         i2s_fifo(i2s, FIC_TXFLUSH);
1053         i2s_fifo(other, FIC_TXFLUSH);
1054         i2s_fifo(i2s, FIC_RXFLUSH);
1055         spin_unlock_irqrestore(i2s->lock, flags);
1056
1057         /* Gate CDCLK by default */
1058         if (!is_opened(other))
1059                 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
1060                                 0, SND_SOC_CLOCK_IN);
1061         pm_runtime_put(dai->dev);
1062
1063         return 0;
1064 }
1065
1066 static int samsung_i2s_dai_remove(struct snd_soc_dai *dai)
1067 {
1068         struct i2s_dai *i2s = snd_soc_dai_get_drvdata(dai);
1069         unsigned long flags;
1070
1071         pm_runtime_get_sync(dai->dev);
1072
1073         if (!is_secondary(i2s)) {
1074                 if (i2s->quirks & QUIRK_NEED_RSTCLR) {
1075                         spin_lock_irqsave(i2s->lock, flags);
1076                         writel(0, i2s->addr + I2SCON);
1077                         spin_unlock_irqrestore(i2s->lock, flags);
1078                 }
1079         }
1080
1081         pm_runtime_put(dai->dev);
1082
1083         return 0;
1084 }
1085
1086 static const struct snd_soc_dai_ops samsung_i2s_dai_ops = {
1087         .trigger = i2s_trigger,
1088         .hw_params = i2s_hw_params,
1089         .set_fmt = i2s_set_fmt,
1090         .set_clkdiv = i2s_set_clkdiv,
1091         .set_sysclk = i2s_set_sysclk,
1092         .startup = i2s_startup,
1093         .shutdown = i2s_shutdown,
1094         .delay = i2s_delay,
1095 };
1096
1097 static const struct snd_soc_component_driver samsung_i2s_component = {
1098         .name           = "samsung-i2s",
1099 };
1100
1101 #define SAMSUNG_I2S_FMTS        (SNDRV_PCM_FMTBIT_S8 | \
1102                                         SNDRV_PCM_FMTBIT_S16_LE | \
1103                                         SNDRV_PCM_FMTBIT_S24_LE)
1104
1105 static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev,
1106                                 const struct samsung_i2s_dai_data *i2s_dai_data,
1107                                 bool sec)
1108 {
1109         struct i2s_dai *i2s;
1110
1111         i2s = devm_kzalloc(&pdev->dev, sizeof(struct i2s_dai), GFP_KERNEL);
1112         if (i2s == NULL)
1113                 return NULL;
1114
1115         i2s->pdev = pdev;
1116         i2s->pri_dai = NULL;
1117         i2s->sec_dai = NULL;
1118         i2s->i2s_dai_drv.id = 1;
1119         i2s->i2s_dai_drv.symmetric_rates = 1;
1120         i2s->i2s_dai_drv.probe = samsung_i2s_dai_probe;
1121         i2s->i2s_dai_drv.remove = samsung_i2s_dai_remove;
1122         i2s->i2s_dai_drv.ops = &samsung_i2s_dai_ops;
1123         i2s->i2s_dai_drv.suspend = i2s_suspend;
1124         i2s->i2s_dai_drv.resume = i2s_resume;
1125         i2s->i2s_dai_drv.playback.channels_min = 1;
1126         i2s->i2s_dai_drv.playback.channels_max = 2;
1127         i2s->i2s_dai_drv.playback.rates = i2s_dai_data->pcm_rates;
1128         i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS;
1129
1130         if (!sec) {
1131                 i2s->i2s_dai_drv.name = SAMSUNG_I2S_DAI;
1132                 i2s->i2s_dai_drv.capture.channels_min = 1;
1133                 i2s->i2s_dai_drv.capture.channels_max = 2;
1134                 i2s->i2s_dai_drv.capture.rates = i2s_dai_data->pcm_rates;
1135                 i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS;
1136         } else {
1137                 i2s->i2s_dai_drv.name = SAMSUNG_I2S_DAI_SEC;
1138         }
1139         return i2s;
1140 }
1141
1142 #ifdef CONFIG_PM
1143 static int i2s_runtime_suspend(struct device *dev)
1144 {
1145         struct i2s_dai *i2s = dev_get_drvdata(dev);
1146
1147         i2s->suspend_i2smod = readl(i2s->addr + I2SMOD);
1148         i2s->suspend_i2scon = readl(i2s->addr + I2SCON);
1149         i2s->suspend_i2spsr = readl(i2s->addr + I2SPSR);
1150
1151         if (i2s->op_clk)
1152                 clk_disable_unprepare(i2s->op_clk);
1153         clk_disable_unprepare(i2s->clk);
1154
1155         return 0;
1156 }
1157
1158 static int i2s_runtime_resume(struct device *dev)
1159 {
1160         struct i2s_dai *i2s = dev_get_drvdata(dev);
1161         int ret;
1162
1163         ret = clk_prepare_enable(i2s->clk);
1164         if (ret)
1165                 return ret;
1166
1167         if (i2s->op_clk) {
1168                 ret = clk_prepare_enable(i2s->op_clk);
1169                 if (ret) {
1170                         clk_disable_unprepare(i2s->clk);
1171                         return ret;
1172                 }
1173         }
1174
1175         writel(i2s->suspend_i2scon, i2s->addr + I2SCON);
1176         writel(i2s->suspend_i2smod, i2s->addr + I2SMOD);
1177         writel(i2s->suspend_i2spsr, i2s->addr + I2SPSR);
1178
1179         return 0;
1180 }
1181 #endif /* CONFIG_PM */
1182
1183 static void i2s_unregister_clocks(struct i2s_dai *i2s)
1184 {
1185         int i;
1186
1187         for (i = 0; i < i2s->clk_data.clk_num; i++) {
1188                 if (!IS_ERR(i2s->clk_table[i]))
1189                         clk_unregister(i2s->clk_table[i]);
1190         }
1191 }
1192
1193 static void i2s_unregister_clock_provider(struct platform_device *pdev)
1194 {
1195         struct i2s_dai *i2s = dev_get_drvdata(&pdev->dev);
1196
1197         of_clk_del_provider(pdev->dev.of_node);
1198         i2s_unregister_clocks(i2s);
1199 }
1200
1201 static int i2s_register_clock_provider(struct platform_device *pdev)
1202 {
1203         const char * const i2s_clk_desc[] = { "cdclk", "rclk_src", "prescaler" };
1204         const char *clk_name[2] = { "i2s_opclk0", "i2s_opclk1" };
1205         const char *p_names[2] = { NULL };
1206         struct device *dev = &pdev->dev;
1207         struct i2s_dai *i2s = dev_get_drvdata(dev);
1208         const struct samsung_i2s_variant_regs *reg_info = i2s->variant_regs;
1209         const char *i2s_clk_name[ARRAY_SIZE(i2s_clk_desc)];
1210         struct clk *rclksrc;
1211         int ret, i;
1212
1213         /* Register the clock provider only if it's expected in the DTB */
1214         if (!of_find_property(dev->of_node, "#clock-cells", NULL))
1215                 return 0;
1216
1217         /* Get the RCLKSRC mux clock parent clock names */
1218         for (i = 0; i < ARRAY_SIZE(p_names); i++) {
1219                 rclksrc = clk_get(dev, clk_name[i]);
1220                 if (IS_ERR(rclksrc))
1221                         continue;
1222                 p_names[i] = __clk_get_name(rclksrc);
1223                 clk_put(rclksrc);
1224         }
1225
1226         for (i = 0; i < ARRAY_SIZE(i2s_clk_desc); i++) {
1227                 i2s_clk_name[i] = devm_kasprintf(dev, GFP_KERNEL, "%s_%s",
1228                                                 dev_name(dev), i2s_clk_desc[i]);
1229                 if (!i2s_clk_name[i])
1230                         return -ENOMEM;
1231         }
1232
1233         if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
1234                 /* Activate the prescaler */
1235                 u32 val = readl(i2s->addr + I2SPSR);
1236                 writel(val | PSR_PSREN, i2s->addr + I2SPSR);
1237
1238                 i2s->clk_table[CLK_I2S_RCLK_SRC] = clk_register_mux(dev,
1239                                 i2s_clk_name[CLK_I2S_RCLK_SRC], p_names,
1240                                 ARRAY_SIZE(p_names),
1241                                 CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT,
1242                                 i2s->addr + I2SMOD, reg_info->rclksrc_off,
1243                                 1, 0, i2s->lock);
1244
1245                 i2s->clk_table[CLK_I2S_RCLK_PSR] = clk_register_divider(dev,
1246                                 i2s_clk_name[CLK_I2S_RCLK_PSR],
1247                                 i2s_clk_name[CLK_I2S_RCLK_SRC],
1248                                 CLK_SET_RATE_PARENT,
1249                                 i2s->addr + I2SPSR, 8, 6, 0, i2s->lock);
1250
1251                 p_names[0] = i2s_clk_name[CLK_I2S_RCLK_PSR];
1252                 i2s->clk_data.clk_num = 2;
1253         }
1254
1255         i2s->clk_table[CLK_I2S_CDCLK] = clk_register_gate(dev,
1256                                 i2s_clk_name[CLK_I2S_CDCLK], p_names[0],
1257                                 CLK_SET_RATE_PARENT,
1258                                 i2s->addr + I2SMOD, reg_info->cdclkcon_off,
1259                                 CLK_GATE_SET_TO_DISABLE, i2s->lock);
1260
1261         i2s->clk_data.clk_num += 1;
1262         i2s->clk_data.clks = i2s->clk_table;
1263
1264         ret = of_clk_add_provider(dev->of_node, of_clk_src_onecell_get,
1265                                   &i2s->clk_data);
1266         if (ret < 0) {
1267                 dev_err(dev, "failed to add clock provider: %d\n", ret);
1268                 i2s_unregister_clocks(i2s);
1269         }
1270
1271         return ret;
1272 }
1273
1274 static int samsung_i2s_probe(struct platform_device *pdev)
1275 {
1276         struct i2s_dai *pri_dai, *sec_dai = NULL;
1277         struct s3c_audio_pdata *i2s_pdata = pdev->dev.platform_data;
1278         struct resource *res;
1279         u32 regs_base, quirks = 0, idma_addr = 0;
1280         struct device_node *np = pdev->dev.of_node;
1281         const struct samsung_i2s_dai_data *i2s_dai_data;
1282         int ret;
1283
1284         if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node)
1285                 i2s_dai_data = of_device_get_match_data(&pdev->dev);
1286         else
1287                 i2s_dai_data = (struct samsung_i2s_dai_data *)
1288                                 platform_get_device_id(pdev)->driver_data;
1289
1290         pri_dai = i2s_alloc_dai(pdev, i2s_dai_data, false);
1291         if (!pri_dai) {
1292                 dev_err(&pdev->dev, "Unable to alloc I2S_pri\n");
1293                 return -ENOMEM;
1294         }
1295
1296         spin_lock_init(&pri_dai->spinlock);
1297         pri_dai->lock = &pri_dai->spinlock;
1298
1299         if (!np) {
1300                 if (i2s_pdata == NULL) {
1301                         dev_err(&pdev->dev, "Can't work without s3c_audio_pdata\n");
1302                         return -EINVAL;
1303                 }
1304
1305                 pri_dai->dma_playback.filter_data = i2s_pdata->dma_playback;
1306                 pri_dai->dma_capture.filter_data = i2s_pdata->dma_capture;
1307                 pri_dai->filter = i2s_pdata->dma_filter;
1308
1309                 quirks = i2s_pdata->type.quirks;
1310                 idma_addr = i2s_pdata->type.idma_addr;
1311         } else {
1312                 quirks = i2s_dai_data->quirks;
1313                 if (of_property_read_u32(np, "samsung,idma-addr",
1314                                          &idma_addr)) {
1315                         if (quirks & QUIRK_SUPPORTS_IDMA) {
1316                                 dev_info(&pdev->dev, "idma address is not"\
1317                                                 "specified");
1318                         }
1319                 }
1320         }
1321         quirks &= ~(QUIRK_SEC_DAI | QUIRK_SUPPORTS_IDMA);
1322
1323         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1324         pri_dai->addr = devm_ioremap_resource(&pdev->dev, res);
1325         if (IS_ERR(pri_dai->addr))
1326                 return PTR_ERR(pri_dai->addr);
1327
1328         regs_base = res->start;
1329
1330         pri_dai->clk = devm_clk_get(&pdev->dev, "iis");
1331         if (IS_ERR(pri_dai->clk)) {
1332                 dev_err(&pdev->dev, "Failed to get iis clock\n");
1333                 return PTR_ERR(pri_dai->clk);
1334         }
1335
1336         ret = clk_prepare_enable(pri_dai->clk);
1337         if (ret != 0) {
1338                 dev_err(&pdev->dev, "failed to enable clock: %d\n", ret);
1339                 return ret;
1340         }
1341         pri_dai->dma_playback.addr = regs_base + I2STXD;
1342         pri_dai->dma_capture.addr = regs_base + I2SRXD;
1343         pri_dai->dma_playback.chan_name = "tx";
1344         pri_dai->dma_capture.chan_name = "rx";
1345         pri_dai->dma_playback.addr_width = 4;
1346         pri_dai->dma_capture.addr_width = 4;
1347         pri_dai->quirks = quirks;
1348         pri_dai->variant_regs = i2s_dai_data->i2s_variant_regs;
1349
1350         if (quirks & QUIRK_PRI_6CHAN)
1351                 pri_dai->i2s_dai_drv.playback.channels_max = 6;
1352
1353         ret = samsung_asoc_dma_platform_register(&pdev->dev, pri_dai->filter,
1354                                                  NULL, NULL);
1355         if (ret < 0)
1356                 goto err_disable_clk;
1357
1358         ret = devm_snd_soc_register_component(&pdev->dev,
1359                                         &samsung_i2s_component,
1360                                         &pri_dai->i2s_dai_drv, 1);
1361         if (ret < 0)
1362                 goto err_disable_clk;
1363
1364         if (quirks & QUIRK_SEC_DAI) {
1365                 sec_dai = i2s_alloc_dai(pdev, i2s_dai_data, true);
1366                 if (!sec_dai) {
1367                         dev_err(&pdev->dev, "Unable to alloc I2S_sec\n");
1368                         ret = -ENOMEM;
1369                         goto err_disable_clk;
1370                 }
1371
1372                 sec_dai->lock = &pri_dai->spinlock;
1373                 sec_dai->variant_regs = pri_dai->variant_regs;
1374                 sec_dai->dma_playback.addr = regs_base + I2STXDS;
1375                 sec_dai->dma_playback.chan_name = "tx-sec";
1376
1377                 if (!np) {
1378                         sec_dai->dma_playback.filter_data = i2s_pdata->dma_play_sec;
1379                         sec_dai->filter = i2s_pdata->dma_filter;
1380                 }
1381
1382                 sec_dai->dma_playback.addr_width = 4;
1383                 sec_dai->addr = pri_dai->addr;
1384                 sec_dai->clk = pri_dai->clk;
1385                 sec_dai->quirks = quirks;
1386                 sec_dai->idma_playback.addr = idma_addr;
1387                 sec_dai->pri_dai = pri_dai;
1388                 pri_dai->sec_dai = sec_dai;
1389
1390                 ret = samsung_asoc_dma_platform_register(&pdev->dev,
1391                                         sec_dai->filter, "tx-sec", NULL);
1392                 if (ret < 0)
1393                         goto err_disable_clk;
1394
1395                 ret = devm_snd_soc_register_component(&pdev->dev,
1396                                                 &samsung_i2s_component,
1397                                                 &sec_dai->i2s_dai_drv, 1);
1398                 if (ret < 0)
1399                         goto err_disable_clk;
1400         }
1401
1402         if (i2s_pdata && i2s_pdata->cfg_gpio && i2s_pdata->cfg_gpio(pdev)) {
1403                 dev_err(&pdev->dev, "Unable to configure gpio\n");
1404                 ret = -EINVAL;
1405                 goto err_disable_clk;
1406         }
1407
1408         dev_set_drvdata(&pdev->dev, pri_dai);
1409
1410         pm_runtime_set_active(&pdev->dev);
1411         pm_runtime_enable(&pdev->dev);
1412
1413         ret = i2s_register_clock_provider(pdev);
1414         if (ret < 0)
1415                 goto err_disable_pm;
1416
1417         pri_dai->op_clk = clk_get_parent(pri_dai->clk_table[CLK_I2S_RCLK_SRC]);
1418
1419         return 0;
1420
1421 err_disable_pm:
1422         pm_runtime_disable(&pdev->dev);
1423 err_disable_clk:
1424         clk_disable_unprepare(pri_dai->clk);
1425         return ret;
1426 }
1427
1428 static int samsung_i2s_remove(struct platform_device *pdev)
1429 {
1430         struct i2s_dai *pri_dai;
1431
1432         pri_dai = dev_get_drvdata(&pdev->dev);
1433
1434         pm_runtime_get_sync(&pdev->dev);
1435         pm_runtime_disable(&pdev->dev);
1436
1437         i2s_unregister_clock_provider(pdev);
1438         clk_disable_unprepare(pri_dai->clk);
1439         pm_runtime_put_noidle(&pdev->dev);
1440
1441         return 0;
1442 }
1443
1444 static const struct samsung_i2s_variant_regs i2sv3_regs = {
1445         .bfs_off = 1,
1446         .rfs_off = 3,
1447         .sdf_off = 5,
1448         .txr_off = 8,
1449         .rclksrc_off = 10,
1450         .mss_off = 11,
1451         .cdclkcon_off = 12,
1452         .lrp_off = 7,
1453         .bfs_mask = 0x3,
1454         .rfs_mask = 0x3,
1455         .ftx0cnt_off = 8,
1456 };
1457
1458 static const struct samsung_i2s_variant_regs i2sv6_regs = {
1459         .bfs_off = 0,
1460         .rfs_off = 4,
1461         .sdf_off = 6,
1462         .txr_off = 8,
1463         .rclksrc_off = 10,
1464         .mss_off = 11,
1465         .cdclkcon_off = 12,
1466         .lrp_off = 15,
1467         .bfs_mask = 0xf,
1468         .rfs_mask = 0x3,
1469         .ftx0cnt_off = 8,
1470 };
1471
1472 static const struct samsung_i2s_variant_regs i2sv7_regs = {
1473         .bfs_off = 0,
1474         .rfs_off = 4,
1475         .sdf_off = 7,
1476         .txr_off = 9,
1477         .rclksrc_off = 11,
1478         .mss_off = 12,
1479         .cdclkcon_off = 22,
1480         .lrp_off = 15,
1481         .bfs_mask = 0xf,
1482         .rfs_mask = 0x7,
1483         .ftx0cnt_off = 0,
1484 };
1485
1486 static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs = {
1487         .bfs_off = 0,
1488         .rfs_off = 3,
1489         .sdf_off = 6,
1490         .txr_off = 8,
1491         .rclksrc_off = 10,
1492         .mss_off = 11,
1493         .cdclkcon_off = 12,
1494         .lrp_off = 15,
1495         .bfs_mask = 0x7,
1496         .rfs_mask = 0x7,
1497         .ftx0cnt_off = 8,
1498 };
1499
1500 static const struct samsung_i2s_dai_data i2sv3_dai_type = {
1501         .quirks = QUIRK_NO_MUXPSR,
1502         .pcm_rates = SNDRV_PCM_RATE_8000_96000,
1503         .i2s_variant_regs = &i2sv3_regs,
1504 };
1505
1506 static const struct samsung_i2s_dai_data i2sv5_dai_type = {
1507         .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1508                         QUIRK_SUPPORTS_IDMA,
1509         .pcm_rates = SNDRV_PCM_RATE_8000_96000,
1510         .i2s_variant_regs = &i2sv3_regs,
1511 };
1512
1513 static const struct samsung_i2s_dai_data i2sv6_dai_type = {
1514         .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1515                         QUIRK_SUPPORTS_TDM | QUIRK_SUPPORTS_IDMA,
1516         .pcm_rates = SNDRV_PCM_RATE_8000_96000,
1517         .i2s_variant_regs = &i2sv6_regs,
1518 };
1519
1520 static const struct samsung_i2s_dai_data i2sv7_dai_type = {
1521         .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1522                         QUIRK_SUPPORTS_TDM,
1523         .pcm_rates = SNDRV_PCM_RATE_8000_192000,
1524         .i2s_variant_regs = &i2sv7_regs,
1525 };
1526
1527 static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 = {
1528         .quirks = QUIRK_PRI_6CHAN | QUIRK_NEED_RSTCLR,
1529         .pcm_rates = SNDRV_PCM_RATE_8000_96000,
1530         .i2s_variant_regs = &i2sv5_i2s1_regs,
1531 };
1532
1533 static const struct platform_device_id samsung_i2s_driver_ids[] = {
1534         {
1535                 .name           = "samsung-i2s",
1536                 .driver_data    = (kernel_ulong_t)&i2sv3_dai_type,
1537         },
1538         {},
1539 };
1540 MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids);
1541
1542 #ifdef CONFIG_OF
1543 static const struct of_device_id exynos_i2s_match[] = {
1544         {
1545                 .compatible = "samsung,s3c6410-i2s",
1546                 .data = &i2sv3_dai_type,
1547         }, {
1548                 .compatible = "samsung,s5pv210-i2s",
1549                 .data = &i2sv5_dai_type,
1550         }, {
1551                 .compatible = "samsung,exynos5420-i2s",
1552                 .data = &i2sv6_dai_type,
1553         }, {
1554                 .compatible = "samsung,exynos7-i2s",
1555                 .data = &i2sv7_dai_type,
1556         }, {
1557                 .compatible = "samsung,exynos7-i2s1",
1558                 .data = &i2sv5_dai_type_i2s1,
1559         },
1560         {},
1561 };
1562 MODULE_DEVICE_TABLE(of, exynos_i2s_match);
1563 #endif
1564
1565 static const struct dev_pm_ops samsung_i2s_pm = {
1566         SET_RUNTIME_PM_OPS(i2s_runtime_suspend,
1567                                 i2s_runtime_resume, NULL)
1568         SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1569                                      pm_runtime_force_resume)
1570 };
1571
1572 static struct platform_driver samsung_i2s_driver = {
1573         .probe  = samsung_i2s_probe,
1574         .remove = samsung_i2s_remove,
1575         .id_table = samsung_i2s_driver_ids,
1576         .driver = {
1577                 .name = "samsung-i2s",
1578                 .of_match_table = of_match_ptr(exynos_i2s_match),
1579                 .pm = &samsung_i2s_pm,
1580         },
1581 };
1582
1583 module_platform_driver(samsung_i2s_driver);
1584
1585 /* Module information */
1586 MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
1587 MODULE_DESCRIPTION("Samsung I2S Interface");
1588 MODULE_ALIAS("platform:samsung-i2s");
1589 MODULE_LICENSE("GPL");