blob: 947352d00ddf5774bc10ca82111b8ec626a4c6dd [file] [log] [blame]
Jassi Brar5033f432010-11-22 15:37:25 +09001/* sound/soc/samsung/i2s.c
Jassi Brar1c7ac012010-11-22 15:36:59 +09002 *
3 * ALSA SoC Audio Layer - Samsung I2S Controller driver
4 *
5 * Copyright (c) 2010 Samsung Electronics Co. Ltd.
Jaswinder Singhdf8ad332012-02-25 16:24:36 +05306 * Jaswinder Singh <jassisinghbrar@gmail.com>
Jassi Brar1c7ac012010-11-22 15:36:59 +09007 *
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 <linux/delay.h>
14#include <linux/slab.h>
15#include <linux/clk.h>
16#include <linux/io.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040017#include <linux/module.h>
Padmavathi Venna40476f62013-01-18 17:17:01 +053018#include <linux/of.h>
19#include <linux/of_gpio.h>
Mark Brownc5cf4db2011-12-08 16:45:03 +080020#include <linux/pm_runtime.h>
Jassi Brar1c7ac012010-11-22 15:36:59 +090021
Jassi Brar1c7ac012010-11-22 15:36:59 +090022#include <sound/soc.h>
Seungwhan Youn0378b6a2011-01-11 07:26:06 +090023#include <sound/pcm_params.h>
Jassi Brar1c7ac012010-11-22 15:36:59 +090024
Arnd Bergmann436d42c2012-08-24 15:22:12 +020025#include <linux/platform_data/asoc-s3c.h>
Jassi Brar1c7ac012010-11-22 15:36:59 +090026
27#include "dma.h"
Sangbeom Kim61100f42011-07-20 17:07:12 +090028#include "idma.h"
Jassi Brar1c7ac012010-11-22 15:36:59 +090029#include "i2s.h"
Sangbeom Kim172a4532011-06-20 16:36:18 +090030#include "i2s-regs.h"
Jassi Brar1c7ac012010-11-22 15:36:59 +090031
32#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
33
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +053034enum samsung_dai_type {
35 TYPE_PRI,
36 TYPE_SEC,
37};
38
Padmavathi Vennaa5a56872014-11-07 12:24:40 +053039struct samsung_i2s_variant_regs {
40 unsigned int bfs_off;
41 unsigned int rfs_off;
42 unsigned int sdf_off;
43 unsigned int txr_off;
44 unsigned int rclksrc_off;
45 unsigned int mss_off;
46 unsigned int cdclkcon_off;
47 unsigned int lrp_off;
48 unsigned int bfs_mask;
49 unsigned int rfs_mask;
50 unsigned int ftx0cnt_off;
51};
52
Padmavathi Venna40476f62013-01-18 17:17:01 +053053struct samsung_i2s_dai_data {
54 int dai_type;
Padmavathi Venna7da493e2013-08-12 15:19:51 +053055 u32 quirks;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +053056 const struct samsung_i2s_variant_regs *i2s_variant_regs;
Padmavathi Venna40476f62013-01-18 17:17:01 +053057};
58
Jassi Brar1c7ac012010-11-22 15:36:59 +090059struct i2s_dai {
60 /* Platform device for this DAI */
61 struct platform_device *pdev;
62 /* IOREMAP'd SFRs */
63 void __iomem *addr;
64 /* Physical base address of SFRs */
65 u32 base;
66 /* Rate of RCLK source clock */
67 unsigned long rclk_srcrate;
68 /* Frame Clock */
69 unsigned frmclk;
70 /*
71 * Specifically requested RCLK,BCLK by MACHINE Driver.
72 * 0 indicates CPU driver is free to choose any value.
73 */
74 unsigned rfs, bfs;
75 /* I2S Controller's core clock */
76 struct clk *clk;
77 /* Clock for generating I2S signals */
78 struct clk *op_clk;
Jassi Brar1c7ac012010-11-22 15:36:59 +090079 /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
80 struct i2s_dai *pri_dai;
81 /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
82 struct i2s_dai *sec_dai;
83#define DAI_OPENED (1 << 0) /* Dai is opened */
84#define DAI_MANAGER (1 << 1) /* Dai is the manager */
85 unsigned mode;
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +020086 /* CDCLK pin direction: 0 - input, 1 - output */
87 unsigned int cdclk_out:1;
Jassi Brar1c7ac012010-11-22 15:36:59 +090088 /* Driver for this DAI */
89 struct snd_soc_dai_driver i2s_dai_drv;
90 /* DMA parameters */
91 struct s3c_dma_params dma_playback;
92 struct s3c_dma_params dma_capture;
Sangbeom Kim61100f42011-07-20 17:07:12 +090093 struct s3c_dma_params idma_playback;
Jassi Brar1c7ac012010-11-22 15:36:59 +090094 u32 quirks;
95 u32 suspend_i2smod;
96 u32 suspend_i2scon;
97 u32 suspend_i2spsr;
Padmavathi Venna40476f62013-01-18 17:17:01 +053098 unsigned long gpios[7]; /* i2s gpio line numbers */
Padmavathi Vennaa5a56872014-11-07 12:24:40 +053099 const struct samsung_i2s_variant_regs *variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900100};
101
102/* Lock for cross i/f checks */
103static DEFINE_SPINLOCK(lock);
104
105/* If this is the 'overlay' stereo DAI */
106static inline bool is_secondary(struct i2s_dai *i2s)
107{
108 return i2s->pri_dai ? true : false;
109}
110
111/* If operating in SoC-Slave mode */
112static inline bool is_slave(struct i2s_dai *i2s)
113{
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530114 u32 mod = readl(i2s->addr + I2SMOD);
115 return (mod & (1 << i2s->variant_regs->mss_off)) ? true : false;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900116}
117
118/* If this interface of the controller is transmitting data */
119static inline bool tx_active(struct i2s_dai *i2s)
120{
121 u32 active;
122
123 if (!i2s)
124 return false;
125
Sangbeom Kim33195502011-06-10 10:36:54 +0900126 active = readl(i2s->addr + I2SCON);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900127
128 if (is_secondary(i2s))
129 active &= CON_TXSDMA_ACTIVE;
130 else
131 active &= CON_TXDMA_ACTIVE;
132
133 return active ? true : false;
134}
135
136/* If the other interface of the controller is transmitting data */
137static inline bool other_tx_active(struct i2s_dai *i2s)
138{
139 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
140
141 return tx_active(other);
142}
143
144/* If any interface of the controller is transmitting data */
145static inline bool any_tx_active(struct i2s_dai *i2s)
146{
147 return tx_active(i2s) || other_tx_active(i2s);
148}
149
150/* If this interface of the controller is receiving data */
151static inline bool rx_active(struct i2s_dai *i2s)
152{
153 u32 active;
154
155 if (!i2s)
156 return false;
157
Sangbeom Kim33195502011-06-10 10:36:54 +0900158 active = readl(i2s->addr + I2SCON) & CON_RXDMA_ACTIVE;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900159
160 return active ? true : false;
161}
162
163/* If the other interface of the controller is receiving data */
164static inline bool other_rx_active(struct i2s_dai *i2s)
165{
166 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
167
168 return rx_active(other);
169}
170
171/* If any interface of the controller is receiving data */
172static inline bool any_rx_active(struct i2s_dai *i2s)
173{
174 return rx_active(i2s) || other_rx_active(i2s);
175}
176
177/* If the other DAI is transmitting or receiving data */
178static inline bool other_active(struct i2s_dai *i2s)
179{
180 return other_rx_active(i2s) || other_tx_active(i2s);
181}
182
183/* If this DAI is transmitting or receiving data */
184static inline bool this_active(struct i2s_dai *i2s)
185{
186 return tx_active(i2s) || rx_active(i2s);
187}
188
189/* If the controller is active anyway */
190static inline bool any_active(struct i2s_dai *i2s)
191{
192 return this_active(i2s) || other_active(i2s);
193}
194
195static inline struct i2s_dai *to_info(struct snd_soc_dai *dai)
196{
197 return snd_soc_dai_get_drvdata(dai);
198}
199
200static inline bool is_opened(struct i2s_dai *i2s)
201{
202 if (i2s && (i2s->mode & DAI_OPENED))
203 return true;
204 else
205 return false;
206}
207
208static inline bool is_manager(struct i2s_dai *i2s)
209{
210 if (is_opened(i2s) && (i2s->mode & DAI_MANAGER))
211 return true;
212 else
213 return false;
214}
215
216/* Read RCLK of I2S (in multiples of LRCLK) */
217static inline unsigned get_rfs(struct i2s_dai *i2s)
218{
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530219 u32 rfs;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530220 rfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->rfs_off;
221 rfs &= i2s->variant_regs->rfs_mask;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900222
223 switch (rfs) {
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530224 case 7: return 192;
225 case 6: return 96;
226 case 5: return 128;
227 case 4: return 64;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900228 case 3: return 768;
229 case 2: return 384;
230 case 1: return 512;
231 default: return 256;
232 }
233}
234
235/* Write RCLK of I2S (in multiples of LRCLK) */
236static inline void set_rfs(struct i2s_dai *i2s, unsigned rfs)
237{
238 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530239 int rfs_shift = i2s->variant_regs->rfs_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900240
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530241 mod &= ~(i2s->variant_regs->rfs_mask << rfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900242
243 switch (rfs) {
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530244 case 192:
245 mod |= (EXYNOS7_MOD_RCLK_192FS << rfs_shift);
246 break;
247 case 96:
248 mod |= (EXYNOS7_MOD_RCLK_96FS << rfs_shift);
249 break;
250 case 128:
251 mod |= (EXYNOS7_MOD_RCLK_128FS << rfs_shift);
252 break;
253 case 64:
254 mod |= (EXYNOS7_MOD_RCLK_64FS << rfs_shift);
255 break;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900256 case 768:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530257 mod |= (MOD_RCLK_768FS << rfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900258 break;
259 case 512:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530260 mod |= (MOD_RCLK_512FS << rfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900261 break;
262 case 384:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530263 mod |= (MOD_RCLK_384FS << rfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900264 break;
265 default:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530266 mod |= (MOD_RCLK_256FS << rfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900267 break;
268 }
269
270 writel(mod, i2s->addr + I2SMOD);
271}
272
273/* Read Bit-Clock of I2S (in multiples of LRCLK) */
274static inline unsigned get_bfs(struct i2s_dai *i2s)
275{
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530276 u32 bfs;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530277 bfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->bfs_off;
278 bfs &= i2s->variant_regs->bfs_mask;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900279
280 switch (bfs) {
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530281 case 8: return 256;
282 case 7: return 192;
283 case 6: return 128;
284 case 5: return 96;
285 case 4: return 64;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900286 case 3: return 24;
287 case 2: return 16;
288 case 1: return 48;
289 default: return 32;
290 }
291}
292
293/* Write Bit-Clock of I2S (in multiples of LRCLK) */
294static inline void set_bfs(struct i2s_dai *i2s, unsigned bfs)
295{
296 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530297 int tdm = i2s->quirks & QUIRK_SUPPORTS_TDM;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530298 int bfs_shift = i2s->variant_regs->bfs_off;
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530299
300 /* Non-TDM I2S controllers do not support BCLK > 48 * FS */
301 if (!tdm && bfs > 48) {
302 dev_err(&i2s->pdev->dev, "Unsupported BCLK divider\n");
303 return;
304 }
Jassi Brar1c7ac012010-11-22 15:36:59 +0900305
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530306 mod &= ~(i2s->variant_regs->bfs_mask << bfs_shift);
307
Jassi Brar1c7ac012010-11-22 15:36:59 +0900308 switch (bfs) {
309 case 48:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530310 mod |= (MOD_BCLK_48FS << bfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900311 break;
312 case 32:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530313 mod |= (MOD_BCLK_32FS << bfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900314 break;
315 case 24:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530316 mod |= (MOD_BCLK_24FS << bfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900317 break;
318 case 16:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530319 mod |= (MOD_BCLK_16FS << bfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900320 break;
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530321 case 64:
322 mod |= (EXYNOS5420_MOD_BCLK_64FS << bfs_shift);
323 break;
324 case 96:
325 mod |= (EXYNOS5420_MOD_BCLK_96FS << bfs_shift);
326 break;
327 case 128:
328 mod |= (EXYNOS5420_MOD_BCLK_128FS << bfs_shift);
329 break;
330 case 192:
331 mod |= (EXYNOS5420_MOD_BCLK_192FS << bfs_shift);
332 break;
333 case 256:
334 mod |= (EXYNOS5420_MOD_BCLK_256FS << bfs_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900335 break;
336 default:
337 dev_err(&i2s->pdev->dev, "Wrong BCLK Divider!\n");
338 return;
339 }
340
341 writel(mod, i2s->addr + I2SMOD);
342}
343
344/* Sample-Size */
345static inline int get_blc(struct i2s_dai *i2s)
346{
347 int blc = readl(i2s->addr + I2SMOD);
348
349 blc = (blc >> 13) & 0x3;
350
351 switch (blc) {
352 case 2: return 24;
353 case 1: return 8;
354 default: return 16;
355 }
356}
357
358/* TX Channel Control */
359static void i2s_txctrl(struct i2s_dai *i2s, int on)
360{
361 void __iomem *addr = i2s->addr;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530362 int txr_off = i2s->variant_regs->txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900363 u32 con = readl(addr + I2SCON);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530364 u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900365
366 if (on) {
367 con |= CON_ACTIVE;
368 con &= ~CON_TXCH_PAUSE;
369
370 if (is_secondary(i2s)) {
371 con |= CON_TXSDMA_ACTIVE;
372 con &= ~CON_TXSDMA_PAUSE;
373 } else {
374 con |= CON_TXDMA_ACTIVE;
375 con &= ~CON_TXDMA_PAUSE;
376 }
377
378 if (any_rx_active(i2s))
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530379 mod |= 2 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900380 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530381 mod |= 0 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900382 } else {
383 if (is_secondary(i2s)) {
384 con |= CON_TXSDMA_PAUSE;
385 con &= ~CON_TXSDMA_ACTIVE;
386 } else {
387 con |= CON_TXDMA_PAUSE;
388 con &= ~CON_TXDMA_ACTIVE;
389 }
390
391 if (other_tx_active(i2s)) {
392 writel(con, addr + I2SCON);
393 return;
394 }
395
396 con |= CON_TXCH_PAUSE;
397
398 if (any_rx_active(i2s))
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530399 mod |= 1 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900400 else
401 con &= ~CON_ACTIVE;
402 }
403
404 writel(mod, addr + I2SMOD);
405 writel(con, addr + I2SCON);
406}
407
408/* RX Channel Control */
409static void i2s_rxctrl(struct i2s_dai *i2s, int on)
410{
411 void __iomem *addr = i2s->addr;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530412 int txr_off = i2s->variant_regs->txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900413 u32 con = readl(addr + I2SCON);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530414 u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900415
416 if (on) {
417 con |= CON_RXDMA_ACTIVE | CON_ACTIVE;
418 con &= ~(CON_RXDMA_PAUSE | CON_RXCH_PAUSE);
419
420 if (any_tx_active(i2s))
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530421 mod |= 2 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900422 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530423 mod |= 1 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900424 } else {
425 con |= CON_RXDMA_PAUSE | CON_RXCH_PAUSE;
426 con &= ~CON_RXDMA_ACTIVE;
427
428 if (any_tx_active(i2s))
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530429 mod |= 0 << txr_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900430 else
431 con &= ~CON_ACTIVE;
432 }
433
434 writel(mod, addr + I2SMOD);
435 writel(con, addr + I2SCON);
436}
437
438/* Flush FIFO of an interface */
439static inline void i2s_fifo(struct i2s_dai *i2s, u32 flush)
440{
441 void __iomem *fic;
442 u32 val;
443
444 if (!i2s)
445 return;
446
447 if (is_secondary(i2s))
448 fic = i2s->addr + I2SFICS;
449 else
450 fic = i2s->addr + I2SFIC;
451
452 /* Flush the FIFO */
453 writel(readl(fic) | flush, fic);
454
455 /* Be patient */
456 val = msecs_to_loops(1) / 1000; /* 1 usec */
457 while (--val)
458 cpu_relax();
459
460 writel(readl(fic) & ~flush, fic);
461}
462
463static int i2s_set_sysclk(struct snd_soc_dai *dai,
464 int clk_id, unsigned int rfs, int dir)
465{
466 struct i2s_dai *i2s = to_info(dai);
467 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
468 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530469 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
470 unsigned int cdcon_mask = 1 << i2s_regs->cdclkcon_off;
471 unsigned int rsrc_mask = 1 << i2s_regs->rclksrc_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900472
473 switch (clk_id) {
Sylwester Nawrockic86d50f2014-05-19 19:30:38 +0200474 case SAMSUNG_I2S_OPCLK:
475 mod &= ~MOD_OPCLK_MASK;
476 mod |= dir;
477 break;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900478 case SAMSUNG_I2S_CDCLK:
479 /* Shouldn't matter in GATING(CLOCK_IN) mode */
480 if (dir == SND_SOC_CLOCK_IN)
481 rfs = 0;
482
Charles Keepax133c2682014-09-09 16:51:49 +0100483 if ((rfs && other && other->rfs && (other->rfs != rfs)) ||
Jassi Brar1c7ac012010-11-22 15:36:59 +0900484 (any_active(i2s) &&
485 (((dir == SND_SOC_CLOCK_IN)
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530486 && !(mod & cdcon_mask)) ||
Jassi Brar1c7ac012010-11-22 15:36:59 +0900487 ((dir == SND_SOC_CLOCK_OUT)
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530488 && (mod & cdcon_mask))))) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900489 dev_err(&i2s->pdev->dev,
490 "%s:%d Other DAI busy\n", __func__, __LINE__);
491 return -EAGAIN;
492 }
493
494 if (dir == SND_SOC_CLOCK_IN)
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530495 mod |= 1 << i2s_regs->cdclkcon_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900496 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530497 mod &= 0 << i2s_regs->cdclkcon_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900498
499 i2s->rfs = rfs;
500 break;
501
502 case SAMSUNG_I2S_RCLKSRC_0: /* clock corrsponding to IISMOD[10] := 0 */
503 case SAMSUNG_I2S_RCLKSRC_1: /* clock corrsponding to IISMOD[10] := 1 */
504 if ((i2s->quirks & QUIRK_NO_MUXPSR)
505 || (clk_id == SAMSUNG_I2S_RCLKSRC_0))
506 clk_id = 0;
507 else
508 clk_id = 1;
509
510 if (!any_active(i2s)) {
Sylwester Nawrockia6aba532014-05-22 12:10:52 +0200511 if (i2s->op_clk && !IS_ERR(i2s->op_clk)) {
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530512 if ((clk_id && !(mod & rsrc_mask)) ||
513 (!clk_id && (mod & rsrc_mask))) {
Thomas Abraham98614cf2012-10-03 08:46:58 +0900514 clk_disable_unprepare(i2s->op_clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900515 clk_put(i2s->op_clk);
516 } else {
Jassi Brar6ce534a2010-12-20 11:05:46 +0900517 i2s->rclk_srcrate =
518 clk_get_rate(i2s->op_clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900519 return 0;
520 }
521 }
522
Padmavathi Venna1974a042012-11-28 16:17:48 +0530523 if (clk_id)
524 i2s->op_clk = clk_get(&i2s->pdev->dev,
525 "i2s_opclk1");
526 else
527 i2s->op_clk = clk_get(&i2s->pdev->dev,
528 "i2s_opclk0");
Sylwester Nawrockia6aba532014-05-22 12:10:52 +0200529
530 if (WARN_ON(IS_ERR(i2s->op_clk)))
531 return PTR_ERR(i2s->op_clk);
532
Thomas Abraham98614cf2012-10-03 08:46:58 +0900533 clk_prepare_enable(i2s->op_clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900534 i2s->rclk_srcrate = clk_get_rate(i2s->op_clk);
535
536 /* Over-ride the other's */
537 if (other) {
538 other->op_clk = i2s->op_clk;
539 other->rclk_srcrate = i2s->rclk_srcrate;
540 }
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530541 } else if ((!clk_id && (mod & rsrc_mask))
542 || (clk_id && !(mod & rsrc_mask))) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900543 dev_err(&i2s->pdev->dev,
544 "%s:%d Other DAI busy\n", __func__, __LINE__);
545 return -EAGAIN;
546 } else {
547 /* Call can't be on the active DAI */
548 i2s->op_clk = other->op_clk;
549 i2s->rclk_srcrate = other->rclk_srcrate;
550 return 0;
551 }
552
553 if (clk_id == 0)
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530554 mod &= 0 << i2s_regs->rclksrc_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900555 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530556 mod |= 1 << i2s_regs->rclksrc_off;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900557
558 default:
559 dev_err(&i2s->pdev->dev, "We don't serve that!\n");
560 return -EINVAL;
561 }
562
563 writel(mod, i2s->addr + I2SMOD);
564
565 return 0;
566}
567
568static int i2s_set_fmt(struct snd_soc_dai *dai,
569 unsigned int fmt)
570{
571 struct i2s_dai *i2s = to_info(dai);
572 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530573 int lrp_shift, sdf_shift, sdf_mask, lrp_rlow, mod_slave;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900574 u32 tmp = 0;
575
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530576 lrp_shift = i2s->variant_regs->lrp_off;
577 sdf_shift = i2s->variant_regs->sdf_off;
578 mod_slave = 1 << i2s->variant_regs->mss_off;
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530579
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530580 sdf_mask = MOD_SDF_MASK << sdf_shift;
581 lrp_rlow = MOD_LR_RLOW << lrp_shift;
582
Jassi Brar1c7ac012010-11-22 15:36:59 +0900583 /* Format is priority */
584 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
585 case SND_SOC_DAIFMT_RIGHT_J:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530586 tmp |= lrp_rlow;
587 tmp |= (MOD_SDF_MSB << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900588 break;
589 case SND_SOC_DAIFMT_LEFT_J:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530590 tmp |= lrp_rlow;
591 tmp |= (MOD_SDF_LSB << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900592 break;
593 case SND_SOC_DAIFMT_I2S:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530594 tmp |= (MOD_SDF_IIS << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900595 break;
596 default:
597 dev_err(&i2s->pdev->dev, "Format not supported\n");
598 return -EINVAL;
599 }
600
601 /*
602 * INV flag is relative to the FORMAT flag - if set it simply
603 * flips the polarity specified by the Standard
604 */
605 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
606 case SND_SOC_DAIFMT_NB_NF:
607 break;
608 case SND_SOC_DAIFMT_NB_IF:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530609 if (tmp & lrp_rlow)
610 tmp &= ~lrp_rlow;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900611 else
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530612 tmp |= lrp_rlow;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900613 break;
614 default:
615 dev_err(&i2s->pdev->dev, "Polarity not supported\n");
616 return -EINVAL;
617 }
618
619 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
620 case SND_SOC_DAIFMT_CBM_CFM:
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530621 tmp |= mod_slave;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900622 break;
623 case SND_SOC_DAIFMT_CBS_CFS:
624 /* Set default source clock in Master mode */
625 if (i2s->rclk_srcrate == 0)
626 i2s_set_sysclk(dai, SAMSUNG_I2S_RCLKSRC_0,
627 0, SND_SOC_CLOCK_IN);
628 break;
629 default:
630 dev_err(&i2s->pdev->dev, "master/slave format not supported\n");
631 return -EINVAL;
632 }
633
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530634 /*
635 * Don't change the I2S mode if any controller is active on this
636 * channel.
637 */
Jassi Brar1c7ac012010-11-22 15:36:59 +0900638 if (any_active(i2s) &&
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530639 ((mod & (sdf_mask | lrp_rlow | mod_slave)) != tmp)) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900640 dev_err(&i2s->pdev->dev,
641 "%s:%d Other DAI busy\n", __func__, __LINE__);
642 return -EAGAIN;
643 }
644
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530645 mod &= ~(sdf_mask | lrp_rlow | mod_slave);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900646 mod |= tmp;
647 writel(mod, i2s->addr + I2SMOD);
648
649 return 0;
650}
651
652static int i2s_hw_params(struct snd_pcm_substream *substream,
653 struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
654{
655 struct i2s_dai *i2s = to_info(dai);
656 u32 mod = readl(i2s->addr + I2SMOD);
657
658 if (!is_secondary(i2s))
659 mod &= ~(MOD_DC2_EN | MOD_DC1_EN);
660
661 switch (params_channels(params)) {
662 case 6:
663 mod |= MOD_DC2_EN;
664 case 4:
665 mod |= MOD_DC1_EN;
666 break;
667 case 2:
Sangsu Park588fb702012-03-16 15:40:53 +0900668 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
669 i2s->dma_playback.dma_size = 4;
670 else
671 i2s->dma_capture.dma_size = 4;
672 break;
673 case 1:
674 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
675 i2s->dma_playback.dma_size = 2;
676 else
677 i2s->dma_capture.dma_size = 2;
678
Jassi Brar1c7ac012010-11-22 15:36:59 +0900679 break;
680 default:
681 dev_err(&i2s->pdev->dev, "%d channels not supported\n",
682 params_channels(params));
683 return -EINVAL;
684 }
685
686 if (is_secondary(i2s))
687 mod &= ~MOD_BLCS_MASK;
688 else
689 mod &= ~MOD_BLCP_MASK;
690
691 if (is_manager(i2s))
692 mod &= ~MOD_BLC_MASK;
693
Tushar Behera88ce1462014-05-23 17:35:39 +0530694 switch (params_width(params)) {
695 case 8:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900696 if (is_secondary(i2s))
697 mod |= MOD_BLCS_8BIT;
698 else
699 mod |= MOD_BLCP_8BIT;
700 if (is_manager(i2s))
701 mod |= MOD_BLC_8BIT;
702 break;
Tushar Behera88ce1462014-05-23 17:35:39 +0530703 case 16:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900704 if (is_secondary(i2s))
705 mod |= MOD_BLCS_16BIT;
706 else
707 mod |= MOD_BLCP_16BIT;
708 if (is_manager(i2s))
709 mod |= MOD_BLC_16BIT;
710 break;
Tushar Behera88ce1462014-05-23 17:35:39 +0530711 case 24:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900712 if (is_secondary(i2s))
713 mod |= MOD_BLCS_24BIT;
714 else
715 mod |= MOD_BLCP_24BIT;
716 if (is_manager(i2s))
717 mod |= MOD_BLC_24BIT;
718 break;
719 default:
720 dev_err(&i2s->pdev->dev, "Format(%d) not supported\n",
721 params_format(params));
722 return -EINVAL;
723 }
724 writel(mod, i2s->addr + I2SMOD);
725
Mark Brownd37bdf72013-12-05 14:14:52 +0000726 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);
727
Jassi Brar1c7ac012010-11-22 15:36:59 +0900728 i2s->frmclk = params_rate(params);
729
730 return 0;
731}
732
733/* We set constraints on the substream acc to the version of I2S */
734static int i2s_startup(struct snd_pcm_substream *substream,
735 struct snd_soc_dai *dai)
736{
737 struct i2s_dai *i2s = to_info(dai);
738 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
739 unsigned long flags;
740
741 spin_lock_irqsave(&lock, flags);
742
743 i2s->mode |= DAI_OPENED;
744
745 if (is_manager(other))
746 i2s->mode &= ~DAI_MANAGER;
747 else
748 i2s->mode |= DAI_MANAGER;
749
Padmavathi Venna2d778282013-01-24 18:05:31 +0530750 if (!any_active(i2s) && (i2s->quirks & QUIRK_NEED_RSTCLR))
751 writel(CON_RSTCLR, i2s->addr + I2SCON);
752
Jassi Brar1c7ac012010-11-22 15:36:59 +0900753 spin_unlock_irqrestore(&lock, flags);
754
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200755 if (!is_opened(other) && i2s->cdclk_out)
756 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
757 0, SND_SOC_CLOCK_OUT);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900758 return 0;
759}
760
761static void i2s_shutdown(struct snd_pcm_substream *substream,
762 struct snd_soc_dai *dai)
763{
764 struct i2s_dai *i2s = to_info(dai);
765 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
766 unsigned long flags;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530767 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900768
769 spin_lock_irqsave(&lock, flags);
770
771 i2s->mode &= ~DAI_OPENED;
772 i2s->mode &= ~DAI_MANAGER;
773
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200774 if (is_opened(other)) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900775 other->mode |= DAI_MANAGER;
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200776 } else {
777 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530778 i2s->cdclk_out = !(mod & (1 << i2s_regs->cdclkcon_off));
Charles Keepax133c2682014-09-09 16:51:49 +0100779 if (other)
780 other->cdclk_out = i2s->cdclk_out;
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200781 }
Jassi Brar1c7ac012010-11-22 15:36:59 +0900782 /* Reset any constraint on RFS and BFS */
783 i2s->rfs = 0;
784 i2s->bfs = 0;
785
786 spin_unlock_irqrestore(&lock, flags);
787
788 /* Gate CDCLK by default */
789 if (!is_opened(other))
790 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
791 0, SND_SOC_CLOCK_IN);
792}
793
794static int config_setup(struct i2s_dai *i2s)
795{
796 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
797 unsigned rfs, bfs, blc;
798 u32 psr;
799
800 blc = get_blc(i2s);
801
802 bfs = i2s->bfs;
803
804 if (!bfs && other)
805 bfs = other->bfs;
806
807 /* Select least possible multiple(2) if no constraint set */
808 if (!bfs)
809 bfs = blc * 2;
810
811 rfs = i2s->rfs;
812
813 if (!rfs && other)
814 rfs = other->rfs;
815
816 if ((rfs == 256 || rfs == 512) && (blc == 24)) {
817 dev_err(&i2s->pdev->dev,
818 "%d-RFS not supported for 24-blc\n", rfs);
819 return -EINVAL;
820 }
821
822 if (!rfs) {
823 if (bfs == 16 || bfs == 32)
824 rfs = 256;
825 else
826 rfs = 384;
827 }
828
829 /* If already setup and running */
830 if (any_active(i2s) && (get_rfs(i2s) != rfs || get_bfs(i2s) != bfs)) {
831 dev_err(&i2s->pdev->dev,
832 "%s:%d Other DAI busy\n", __func__, __LINE__);
833 return -EAGAIN;
834 }
835
Jassi Brar1c7ac012010-11-22 15:36:59 +0900836 set_bfs(i2s, bfs);
837 set_rfs(i2s, rfs);
838
Padmavathi Venna77010012013-07-11 12:38:25 +0530839 /* Don't bother with PSR in Slave mode */
840 if (is_slave(i2s))
841 return 0;
842
Jassi Brar1c7ac012010-11-22 15:36:59 +0900843 if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
844 psr = i2s->rclk_srcrate / i2s->frmclk / rfs;
845 writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR);
846 dev_dbg(&i2s->pdev->dev,
847 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
848 i2s->rclk_srcrate, psr, rfs, bfs);
849 }
850
851 return 0;
852}
853
854static int i2s_trigger(struct snd_pcm_substream *substream,
855 int cmd, struct snd_soc_dai *dai)
856{
857 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
858 struct snd_soc_pcm_runtime *rtd = substream->private_data;
859 struct i2s_dai *i2s = to_info(rtd->cpu_dai);
860 unsigned long flags;
861
862 switch (cmd) {
863 case SNDRV_PCM_TRIGGER_START:
864 case SNDRV_PCM_TRIGGER_RESUME:
865 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
866 local_irq_save(flags);
867
Jassi Brar1c7ac012010-11-22 15:36:59 +0900868 if (config_setup(i2s)) {
869 local_irq_restore(flags);
870 return -EINVAL;
871 }
872
873 if (capture)
874 i2s_rxctrl(i2s, 1);
875 else
876 i2s_txctrl(i2s, 1);
877
878 local_irq_restore(flags);
879 break;
880 case SNDRV_PCM_TRIGGER_STOP:
881 case SNDRV_PCM_TRIGGER_SUSPEND:
882 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
883 local_irq_save(flags);
884
Jassi Brarc90887f2012-02-25 16:42:34 +0530885 if (capture) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900886 i2s_rxctrl(i2s, 0);
Jassi Brar775bc972010-12-20 11:05:47 +0900887 i2s_fifo(i2s, FIC_RXFLUSH);
Jassi Brarc90887f2012-02-25 16:42:34 +0530888 } else {
889 i2s_txctrl(i2s, 0);
Jassi Brar775bc972010-12-20 11:05:47 +0900890 i2s_fifo(i2s, FIC_TXFLUSH);
Jassi Brarc90887f2012-02-25 16:42:34 +0530891 }
Jassi Brar775bc972010-12-20 11:05:47 +0900892
Jassi Brar1c7ac012010-11-22 15:36:59 +0900893 local_irq_restore(flags);
894 break;
895 }
896
897 return 0;
898}
899
900static int i2s_set_clkdiv(struct snd_soc_dai *dai,
901 int div_id, int div)
902{
903 struct i2s_dai *i2s = to_info(dai);
904 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
905
906 switch (div_id) {
907 case SAMSUNG_I2S_DIV_BCLK:
908 if ((any_active(i2s) && div && (get_bfs(i2s) != div))
909 || (other && other->bfs && (other->bfs != div))) {
910 dev_err(&i2s->pdev->dev,
911 "%s:%d Other DAI busy\n", __func__, __LINE__);
912 return -EAGAIN;
913 }
914 i2s->bfs = div;
915 break;
916 default:
917 dev_err(&i2s->pdev->dev,
918 "Invalid clock divider(%d)\n", div_id);
919 return -EINVAL;
920 }
921
922 return 0;
923}
924
925static snd_pcm_sframes_t
926i2s_delay(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
927{
928 struct i2s_dai *i2s = to_info(dai);
929 u32 reg = readl(i2s->addr + I2SFIC);
930 snd_pcm_sframes_t delay;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530931 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900932
933 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
934 delay = FIC_RXCOUNT(reg);
935 else if (is_secondary(i2s))
936 delay = FICS_TXCOUNT(readl(i2s->addr + I2SFICS));
937 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530938 delay = (reg >> i2s_regs->ftx0cnt_off) & 0x7f;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900939
940 return delay;
941}
942
943#ifdef CONFIG_PM
944static int i2s_suspend(struct snd_soc_dai *dai)
945{
946 struct i2s_dai *i2s = to_info(dai);
947
Sylwester Nawrockid3d4e522014-07-04 16:05:45 +0200948 i2s->suspend_i2smod = readl(i2s->addr + I2SMOD);
949 i2s->suspend_i2scon = readl(i2s->addr + I2SCON);
950 i2s->suspend_i2spsr = readl(i2s->addr + I2SPSR);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900951
952 return 0;
953}
954
955static int i2s_resume(struct snd_soc_dai *dai)
956{
957 struct i2s_dai *i2s = to_info(dai);
958
Sylwester Nawrockid3d4e522014-07-04 16:05:45 +0200959 writel(i2s->suspend_i2scon, i2s->addr + I2SCON);
960 writel(i2s->suspend_i2smod, i2s->addr + I2SMOD);
961 writel(i2s->suspend_i2spsr, i2s->addr + I2SPSR);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900962
963 return 0;
964}
965#else
966#define i2s_suspend NULL
967#define i2s_resume NULL
968#endif
969
970static int samsung_i2s_dai_probe(struct snd_soc_dai *dai)
971{
972 struct i2s_dai *i2s = to_info(dai);
973 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
974
Mark Brown36885692013-10-19 15:23:15 +0100975 if (other && other->clk) { /* If this is probe on secondary */
976 samsung_asoc_init_dma_data(dai, &other->sec_dai->dma_playback,
977 NULL);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900978 goto probe_exit;
Mark Brown36885692013-10-19 15:23:15 +0100979 }
Jassi Brar1c7ac012010-11-22 15:36:59 +0900980
981 i2s->addr = ioremap(i2s->base, 0x100);
982 if (i2s->addr == NULL) {
983 dev_err(&i2s->pdev->dev, "cannot ioremap registers\n");
984 return -ENXIO;
985 }
986
987 i2s->clk = clk_get(&i2s->pdev->dev, "iis");
988 if (IS_ERR(i2s->clk)) {
989 dev_err(&i2s->pdev->dev, "failed to get i2s_clock\n");
990 iounmap(i2s->addr);
991 return -ENOENT;
992 }
Thomas Abraham98614cf2012-10-03 08:46:58 +0900993 clk_prepare_enable(i2s->clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900994
Mark Brown36885692013-10-19 15:23:15 +0100995 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);
Mark Brown511e3032013-10-17 21:18:40 +0100996
Jassi Brar1c7ac012010-11-22 15:36:59 +0900997 if (other) {
998 other->addr = i2s->addr;
999 other->clk = i2s->clk;
1000 }
1001
1002 if (i2s->quirks & QUIRK_NEED_RSTCLR)
1003 writel(CON_RSTCLR, i2s->addr + I2SCON);
1004
Padmavathi Vennab0759732014-11-07 12:24:39 +05301005 if (i2s->quirks & QUIRK_SUPPORTS_IDMA)
Mark Brown9b8f5692011-11-27 21:35:40 +00001006 idma_reg_addr_init(i2s->addr,
Sangbeom Kim61100f42011-07-20 17:07:12 +09001007 i2s->sec_dai->idma_playback.dma_addr);
1008
Jassi Brar1c7ac012010-11-22 15:36:59 +09001009probe_exit:
1010 /* Reset any constraint on RFS and BFS */
1011 i2s->rfs = 0;
1012 i2s->bfs = 0;
Tushar Beherad66eac32014-04-23 13:34:24 +05301013 i2s->rclk_srcrate = 0;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001014 i2s_txctrl(i2s, 0);
1015 i2s_rxctrl(i2s, 0);
1016 i2s_fifo(i2s, FIC_TXFLUSH);
1017 i2s_fifo(other, FIC_TXFLUSH);
1018 i2s_fifo(i2s, FIC_RXFLUSH);
1019
1020 /* Gate CDCLK by default */
1021 if (!is_opened(other))
1022 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
1023 0, SND_SOC_CLOCK_IN);
1024
1025 return 0;
1026}
1027
1028static int samsung_i2s_dai_remove(struct snd_soc_dai *dai)
1029{
1030 struct i2s_dai *i2s = snd_soc_dai_get_drvdata(dai);
1031 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
1032
1033 if (!other || !other->clk) {
1034
1035 if (i2s->quirks & QUIRK_NEED_RSTCLR)
1036 writel(0, i2s->addr + I2SCON);
1037
Thomas Abraham98614cf2012-10-03 08:46:58 +09001038 clk_disable_unprepare(i2s->clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001039 clk_put(i2s->clk);
1040
1041 iounmap(i2s->addr);
1042 }
1043
1044 i2s->clk = NULL;
1045
1046 return 0;
1047}
1048
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001049static const struct snd_soc_dai_ops samsung_i2s_dai_ops = {
Jassi Brar1c7ac012010-11-22 15:36:59 +09001050 .trigger = i2s_trigger,
1051 .hw_params = i2s_hw_params,
1052 .set_fmt = i2s_set_fmt,
1053 .set_clkdiv = i2s_set_clkdiv,
1054 .set_sysclk = i2s_set_sysclk,
1055 .startup = i2s_startup,
1056 .shutdown = i2s_shutdown,
1057 .delay = i2s_delay,
1058};
1059
Kuninori Morimoto4b828532013-03-21 03:35:55 -07001060static const struct snd_soc_component_driver samsung_i2s_component = {
1061 .name = "samsung-i2s",
1062};
1063
Jassi Brar1c7ac012010-11-22 15:36:59 +09001064#define SAMSUNG_I2S_RATES SNDRV_PCM_RATE_8000_96000
1065
1066#define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | \
1067 SNDRV_PCM_FMTBIT_S16_LE | \
1068 SNDRV_PCM_FMTBIT_S24_LE)
1069
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001070static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001071{
1072 struct i2s_dai *i2s;
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301073 int ret;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001074
Mark Brownb960ce72011-12-03 20:30:37 +00001075 i2s = devm_kzalloc(&pdev->dev, sizeof(struct i2s_dai), GFP_KERNEL);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001076 if (i2s == NULL)
1077 return NULL;
1078
1079 i2s->pdev = pdev;
1080 i2s->pri_dai = NULL;
1081 i2s->sec_dai = NULL;
1082 i2s->i2s_dai_drv.symmetric_rates = 1;
1083 i2s->i2s_dai_drv.probe = samsung_i2s_dai_probe;
1084 i2s->i2s_dai_drv.remove = samsung_i2s_dai_remove;
1085 i2s->i2s_dai_drv.ops = &samsung_i2s_dai_ops;
1086 i2s->i2s_dai_drv.suspend = i2s_suspend;
1087 i2s->i2s_dai_drv.resume = i2s_resume;
Charles Keepaxa0ff6ea2013-09-11 15:27:29 +01001088 i2s->i2s_dai_drv.playback.channels_min = 1;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001089 i2s->i2s_dai_drv.playback.channels_max = 2;
1090 i2s->i2s_dai_drv.playback.rates = SAMSUNG_I2S_RATES;
1091 i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS;
1092
1093 if (!sec) {
Sangsu Park588fb702012-03-16 15:40:53 +09001094 i2s->i2s_dai_drv.capture.channels_min = 1;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001095 i2s->i2s_dai_drv.capture.channels_max = 2;
1096 i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES;
1097 i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS;
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301098 dev_set_drvdata(&i2s->pdev->dev, i2s);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001099 } else { /* Create a new platform_device for Secondary */
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301100 i2s->pdev = platform_device_alloc("samsung-i2s-sec", -1);
Wei Yongjun29ca9c72013-10-25 17:06:24 +08001101 if (!i2s->pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001102 return NULL;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001103
Mark Brown2f6f0ff2013-08-01 11:02:47 +01001104 i2s->pdev->dev.parent = &pdev->dev;
1105
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301106 platform_set_drvdata(i2s->pdev, i2s);
1107 ret = platform_device_add(i2s->pdev);
1108 if (ret < 0)
1109 return NULL;
1110 }
Jassi Brar1c7ac012010-11-22 15:36:59 +09001111
1112 return i2s;
1113}
1114
Padmavathi Venna40476f62013-01-18 17:17:01 +05301115static const struct of_device_id exynos_i2s_match[];
1116
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301117static inline const struct samsung_i2s_dai_data *samsung_i2s_get_driver_data(
1118 struct platform_device *pdev)
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301119{
Padmavathi Venna40476f62013-01-18 17:17:01 +05301120#ifdef CONFIG_OF
Padmavathi Venna40476f62013-01-18 17:17:01 +05301121 if (pdev->dev.of_node) {
1122 const struct of_device_id *match;
1123 match = of_match_node(exynos_i2s_match, pdev->dev.of_node);
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301124 return match->data;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301125 } else
1126#endif
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301127 return (struct samsung_i2s_dai_data *)
1128 platform_get_device_id(pdev)->driver_data;
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301129}
1130
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301131#ifdef CONFIG_PM_RUNTIME
1132static int i2s_runtime_suspend(struct device *dev)
1133{
1134 struct i2s_dai *i2s = dev_get_drvdata(dev);
1135
1136 clk_disable_unprepare(i2s->clk);
1137
1138 return 0;
1139}
1140
1141static int i2s_runtime_resume(struct device *dev)
1142{
1143 struct i2s_dai *i2s = dev_get_drvdata(dev);
1144
1145 clk_prepare_enable(i2s->clk);
1146
1147 return 0;
1148}
1149#endif /* CONFIG_PM_RUNTIME */
1150
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001151static int samsung_i2s_probe(struct platform_device *pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001152{
Jassi Brar1c7ac012010-11-22 15:36:59 +09001153 struct i2s_dai *pri_dai, *sec_dai = NULL;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301154 struct s3c_audio_pdata *i2s_pdata = pdev->dev.platform_data;
1155 struct samsung_i2s *i2s_cfg = NULL;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001156 struct resource *res;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301157 u32 regs_base, quirks = 0, idma_addr = 0;
1158 struct device_node *np = pdev->dev.of_node;
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301159 const struct samsung_i2s_dai_data *i2s_dai_data;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001160 int ret = 0;
1161
1162 /* Call during Seconday interface registration */
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301163 i2s_dai_data = samsung_i2s_get_driver_data(pdev);
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301164
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301165 if (i2s_dai_data->dai_type == TYPE_SEC) {
Jassi Brar1c7ac012010-11-22 15:36:59 +09001166 sec_dai = dev_get_drvdata(&pdev->dev);
Prathyush Ka9b977e2013-04-02 16:53:01 +05301167 if (!sec_dai) {
1168 dev_err(&pdev->dev, "Unable to get drvdata\n");
1169 return -EFAULT;
1170 }
Mark Brownd644a112013-09-04 20:37:51 +01001171 devm_snd_soc_register_component(&sec_dai->pdev->dev,
1172 &samsung_i2s_component,
1173 &sec_dai->i2s_dai_drv, 1);
Mark Brown85ff3c22013-08-19 22:59:05 +01001174 samsung_asoc_dma_platform_register(&pdev->dev);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001175 return 0;
1176 }
1177
Padmavathi Venna40476f62013-01-18 17:17:01 +05301178 pri_dai = i2s_alloc_dai(pdev, false);
1179 if (!pri_dai) {
1180 dev_err(&pdev->dev, "Unable to alloc I2S_pri\n");
1181 return -ENOMEM;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001182 }
1183
Padmavathi Venna40476f62013-01-18 17:17:01 +05301184 if (!np) {
1185 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1186 if (!res) {
1187 dev_err(&pdev->dev,
1188 "Unable to get I2S-TX dma resource\n");
1189 return -ENXIO;
1190 }
1191 pri_dai->dma_playback.channel = res->start;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001192
Padmavathi Venna40476f62013-01-18 17:17:01 +05301193 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
1194 if (!res) {
1195 dev_err(&pdev->dev,
1196 "Unable to get I2S-RX dma resource\n");
1197 return -ENXIO;
1198 }
1199 pri_dai->dma_capture.channel = res->start;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001200
Padmavathi Venna40476f62013-01-18 17:17:01 +05301201 if (i2s_pdata == NULL) {
1202 dev_err(&pdev->dev, "Can't work without s3c_audio_pdata\n");
1203 return -EINVAL;
1204 }
1205
1206 if (&i2s_pdata->type)
1207 i2s_cfg = &i2s_pdata->type.i2s;
1208
1209 if (i2s_cfg) {
1210 quirks = i2s_cfg->quirks;
1211 idma_addr = i2s_cfg->idma_addr;
1212 }
1213 } else {
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301214 quirks = i2s_dai_data->quirks;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301215 if (of_property_read_u32(np, "samsung,idma-addr",
1216 &idma_addr)) {
Padmavathi Vennab0759732014-11-07 12:24:39 +05301217 if (quirks & QUIRK_SUPPORTS_IDMA) {
1218 dev_info(&pdev->dev, "idma address is not"\
Padmavathi Venna40476f62013-01-18 17:17:01 +05301219 "specified");
Padmavathi Venna40476f62013-01-18 17:17:01 +05301220 }
1221 }
1222 }
Jassi Brar1c7ac012010-11-22 15:36:59 +09001223
1224 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1225 if (!res) {
1226 dev_err(&pdev->dev, "Unable to get I2S SFR address\n");
1227 return -ENXIO;
1228 }
1229
1230 if (!request_mem_region(res->start, resource_size(res),
1231 "samsung-i2s")) {
1232 dev_err(&pdev->dev, "Unable to request SFR region\n");
1233 return -EBUSY;
1234 }
1235 regs_base = res->start;
1236
Jassi Brar1c7ac012010-11-22 15:36:59 +09001237 pri_dai->dma_playback.dma_addr = regs_base + I2STXD;
1238 pri_dai->dma_capture.dma_addr = regs_base + I2SRXD;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301239 pri_dai->dma_playback.ch_name = "tx";
Padmavathi Venna40476f62013-01-18 17:17:01 +05301240 pri_dai->dma_capture.ch_name = "rx";
Jassi Brar1c7ac012010-11-22 15:36:59 +09001241 pri_dai->dma_playback.dma_size = 4;
1242 pri_dai->dma_capture.dma_size = 4;
1243 pri_dai->base = regs_base;
1244 pri_dai->quirks = quirks;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301245 pri_dai->variant_regs = i2s_dai_data->i2s_variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001246
1247 if (quirks & QUIRK_PRI_6CHAN)
1248 pri_dai->i2s_dai_drv.playback.channels_max = 6;
1249
1250 if (quirks & QUIRK_SEC_DAI) {
1251 sec_dai = i2s_alloc_dai(pdev, true);
1252 if (!sec_dai) {
1253 dev_err(&pdev->dev, "Unable to alloc I2S_sec\n");
1254 ret = -ENOMEM;
Mark Brownb960ce72011-12-03 20:30:37 +00001255 goto err;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001256 }
1257 sec_dai->dma_playback.dma_addr = regs_base + I2STXDS;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301258 sec_dai->dma_playback.ch_name = "tx-sec";
1259
1260 if (!np) {
1261 res = platform_get_resource(pdev, IORESOURCE_DMA, 2);
1262 if (res)
1263 sec_dai->dma_playback.channel = res->start;
1264 }
1265
Jassi Brar1c7ac012010-11-22 15:36:59 +09001266 sec_dai->dma_playback.dma_size = 4;
1267 sec_dai->base = regs_base;
1268 sec_dai->quirks = quirks;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301269 sec_dai->idma_playback.dma_addr = idma_addr;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001270 sec_dai->pri_dai = pri_dai;
1271 pri_dai->sec_dai = sec_dai;
1272 }
1273
Mark Brown0429ffe2013-07-02 13:10:28 +01001274 if (i2s_pdata && i2s_pdata->cfg_gpio && i2s_pdata->cfg_gpio(pdev)) {
1275 dev_err(&pdev->dev, "Unable to configure gpio\n");
1276 ret = -EINVAL;
1277 goto err;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001278 }
1279
Mark Brownd644a112013-09-04 20:37:51 +01001280 devm_snd_soc_register_component(&pri_dai->pdev->dev,
1281 &samsung_i2s_component,
1282 &pri_dai->i2s_dai_drv, 1);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001283
Mark Brownc5cf4db2011-12-08 16:45:03 +08001284 pm_runtime_enable(&pdev->dev);
1285
Mark Brown85ff3c22013-08-19 22:59:05 +01001286 samsung_asoc_dma_platform_register(&pdev->dev);
Padmavathi Vennaa08485d2012-12-07 13:59:21 +05301287
Jassi Brar1c7ac012010-11-22 15:36:59 +09001288 return 0;
Mark Brownb960ce72011-12-03 20:30:37 +00001289err:
Sachin Kamat57e33782014-01-24 16:23:22 +05301290 if (res)
1291 release_mem_region(regs_base, resource_size(res));
Jassi Brar1c7ac012010-11-22 15:36:59 +09001292
1293 return ret;
1294}
1295
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001296static int samsung_i2s_remove(struct platform_device *pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001297{
1298 struct i2s_dai *i2s, *other;
Mark Brownc5cf4db2011-12-08 16:45:03 +08001299 struct resource *res;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001300
1301 i2s = dev_get_drvdata(&pdev->dev);
1302 other = i2s->pri_dai ? : i2s->sec_dai;
1303
1304 if (other) {
1305 other->pri_dai = NULL;
1306 other->sec_dai = NULL;
1307 } else {
Mark Brownc5cf4db2011-12-08 16:45:03 +08001308 pm_runtime_disable(&pdev->dev);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001309 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1310 if (res)
1311 release_mem_region(res->start, resource_size(res));
1312 }
1313
1314 i2s->pri_dai = NULL;
1315 i2s->sec_dai = NULL;
1316
Jassi Brar1c7ac012010-11-22 15:36:59 +09001317 return 0;
1318}
1319
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301320static const struct samsung_i2s_variant_regs i2sv3_regs = {
1321 .bfs_off = 1,
1322 .rfs_off = 3,
1323 .sdf_off = 5,
1324 .txr_off = 8,
1325 .rclksrc_off = 10,
1326 .mss_off = 11,
1327 .cdclkcon_off = 12,
1328 .lrp_off = 7,
1329 .bfs_mask = 0x3,
1330 .rfs_mask = 0x3,
1331 .ftx0cnt_off = 8,
1332};
1333
1334static const struct samsung_i2s_variant_regs i2sv6_regs = {
1335 .bfs_off = 0,
1336 .rfs_off = 4,
1337 .sdf_off = 6,
1338 .txr_off = 8,
1339 .rclksrc_off = 10,
1340 .mss_off = 11,
1341 .cdclkcon_off = 12,
1342 .lrp_off = 15,
1343 .bfs_mask = 0xf,
1344 .rfs_mask = 0x3,
1345 .ftx0cnt_off = 8,
1346};
1347
1348static const struct samsung_i2s_variant_regs i2sv7_regs = {
1349 .bfs_off = 0,
1350 .rfs_off = 4,
1351 .sdf_off = 7,
1352 .txr_off = 9,
1353 .rclksrc_off = 11,
1354 .mss_off = 12,
1355 .cdclkcon_off = 22,
1356 .lrp_off = 15,
1357 .bfs_mask = 0xf,
1358 .rfs_mask = 0x7,
1359 .ftx0cnt_off = 0,
1360};
1361
1362static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs = {
1363 .bfs_off = 0,
1364 .rfs_off = 3,
1365 .sdf_off = 6,
1366 .txr_off = 8,
1367 .rclksrc_off = 10,
1368 .mss_off = 11,
1369 .cdclkcon_off = 12,
1370 .lrp_off = 15,
1371 .bfs_mask = 0x7,
1372 .rfs_mask = 0x7,
1373 .ftx0cnt_off = 8,
1374};
1375
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301376static const struct samsung_i2s_dai_data i2sv3_dai_type = {
1377 .dai_type = TYPE_PRI,
1378 .quirks = QUIRK_NO_MUXPSR,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301379 .i2s_variant_regs = &i2sv3_regs,
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301380};
1381
1382static const struct samsung_i2s_dai_data i2sv5_dai_type = {
1383 .dai_type = TYPE_PRI,
Padmavathi Vennab0759732014-11-07 12:24:39 +05301384 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1385 QUIRK_SUPPORTS_IDMA,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301386 .i2s_variant_regs = &i2sv3_regs,
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301387};
1388
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301389static const struct samsung_i2s_dai_data i2sv6_dai_type = {
1390 .dai_type = TYPE_PRI,
1391 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
Padmavathi Vennab0759732014-11-07 12:24:39 +05301392 QUIRK_SUPPORTS_TDM | QUIRK_SUPPORTS_IDMA,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301393 .i2s_variant_regs = &i2sv6_regs,
1394};
1395
1396static const struct samsung_i2s_dai_data i2sv7_dai_type = {
1397 .dai_type = TYPE_PRI,
1398 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1399 QUIRK_SUPPORTS_TDM,
1400 .i2s_variant_regs = &i2sv7_regs,
1401};
1402
1403static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 = {
1404 .dai_type = TYPE_PRI,
1405 .quirks = QUIRK_PRI_6CHAN | QUIRK_NEED_RSTCLR,
1406 .i2s_variant_regs = &i2sv5_i2s1_regs,
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301407};
1408
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301409static const struct samsung_i2s_dai_data samsung_dai_type_pri = {
1410 .dai_type = TYPE_PRI,
1411};
1412
1413static const struct samsung_i2s_dai_data samsung_dai_type_sec = {
1414 .dai_type = TYPE_SEC,
1415};
1416
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301417static struct platform_device_id samsung_i2s_driver_ids[] = {
1418 {
1419 .name = "samsung-i2s",
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301420 .driver_data = (kernel_ulong_t)&samsung_dai_type_pri,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301421 }, {
1422 .name = "samsung-i2s-sec",
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301423 .driver_data = (kernel_ulong_t)&samsung_dai_type_sec,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301424 },
1425 {},
1426};
Arnd Bergmann2af19552013-04-11 02:05:03 +02001427MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids);
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301428
Padmavathi Venna40476f62013-01-18 17:17:01 +05301429#ifdef CONFIG_OF
Padmavathi Venna40476f62013-01-18 17:17:01 +05301430static const struct of_device_id exynos_i2s_match[] = {
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301431 {
1432 .compatible = "samsung,s3c6410-i2s",
1433 .data = &i2sv3_dai_type,
1434 }, {
1435 .compatible = "samsung,s5pv210-i2s",
1436 .data = &i2sv5_dai_type,
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301437 }, {
1438 .compatible = "samsung,exynos5420-i2s",
1439 .data = &i2sv6_dai_type,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301440 }, {
1441 .compatible = "samsung,exynos7-i2s",
1442 .data = &i2sv7_dai_type,
1443 }, {
1444 .compatible = "samsung,exynos7-i2s1",
1445 .data = &i2sv5_dai_type_i2s1,
Padmavathi Venna40476f62013-01-18 17:17:01 +05301446 },
1447 {},
1448};
1449MODULE_DEVICE_TABLE(of, exynos_i2s_match);
1450#endif
1451
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301452static const struct dev_pm_ops samsung_i2s_pm = {
1453 SET_RUNTIME_PM_OPS(i2s_runtime_suspend,
1454 i2s_runtime_resume, NULL)
1455};
1456
Jassi Brar1c7ac012010-11-22 15:36:59 +09001457static struct platform_driver samsung_i2s_driver = {
1458 .probe = samsung_i2s_probe,
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001459 .remove = samsung_i2s_remove,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301460 .id_table = samsung_i2s_driver_ids,
Jassi Brar1c7ac012010-11-22 15:36:59 +09001461 .driver = {
1462 .name = "samsung-i2s",
1463 .owner = THIS_MODULE,
Padmavathi Venna40476f62013-01-18 17:17:01 +05301464 .of_match_table = of_match_ptr(exynos_i2s_match),
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301465 .pm = &samsung_i2s_pm,
Jassi Brar1c7ac012010-11-22 15:36:59 +09001466 },
1467};
1468
Mark Browne00c3f52011-11-23 15:20:13 +00001469module_platform_driver(samsung_i2s_driver);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001470
1471/* Module information */
Jaswinder Singhdf8ad332012-02-25 16:24:36 +05301472MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
Jassi Brar1c7ac012010-11-22 15:36:59 +09001473MODULE_DESCRIPTION("Samsung I2S Interface");
1474MODULE_ALIAS("platform:samsung-i2s");
1475MODULE_LICENSE("GPL");