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