blob: 0d76bc15b7854c86bbbe1cdbbbfd009d4322ea9f [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 Vennab2de1d22014-11-20 15:33:17 +0530497 mod &= ~(1 << 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 Vennab2de1d22014-11-20 15:33:17 +0530554 mod &= ~(1 << 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
Padmavathi Vennab2de1d22014-11-20 15:33:17 +0530558 break;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900559 default:
560 dev_err(&i2s->pdev->dev, "We don't serve that!\n");
561 return -EINVAL;
562 }
563
564 writel(mod, i2s->addr + I2SMOD);
565
566 return 0;
567}
568
569static int i2s_set_fmt(struct snd_soc_dai *dai,
570 unsigned int fmt)
571{
572 struct i2s_dai *i2s = to_info(dai);
573 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530574 int lrp_shift, sdf_shift, sdf_mask, lrp_rlow, mod_slave;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900575 u32 tmp = 0;
576
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530577 lrp_shift = i2s->variant_regs->lrp_off;
578 sdf_shift = i2s->variant_regs->sdf_off;
579 mod_slave = 1 << i2s->variant_regs->mss_off;
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +0530580
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530581 sdf_mask = MOD_SDF_MASK << sdf_shift;
582 lrp_rlow = MOD_LR_RLOW << lrp_shift;
583
Jassi Brar1c7ac012010-11-22 15:36:59 +0900584 /* Format is priority */
585 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
586 case SND_SOC_DAIFMT_RIGHT_J:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530587 tmp |= lrp_rlow;
588 tmp |= (MOD_SDF_MSB << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900589 break;
590 case SND_SOC_DAIFMT_LEFT_J:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530591 tmp |= lrp_rlow;
592 tmp |= (MOD_SDF_LSB << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900593 break;
594 case SND_SOC_DAIFMT_I2S:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530595 tmp |= (MOD_SDF_IIS << sdf_shift);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900596 break;
597 default:
598 dev_err(&i2s->pdev->dev, "Format not supported\n");
599 return -EINVAL;
600 }
601
602 /*
603 * INV flag is relative to the FORMAT flag - if set it simply
604 * flips the polarity specified by the Standard
605 */
606 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
607 case SND_SOC_DAIFMT_NB_NF:
608 break;
609 case SND_SOC_DAIFMT_NB_IF:
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530610 if (tmp & lrp_rlow)
611 tmp &= ~lrp_rlow;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900612 else
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530613 tmp |= lrp_rlow;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900614 break;
615 default:
616 dev_err(&i2s->pdev->dev, "Polarity not supported\n");
617 return -EINVAL;
618 }
619
620 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
621 case SND_SOC_DAIFMT_CBM_CFM:
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530622 tmp |= mod_slave;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900623 break;
624 case SND_SOC_DAIFMT_CBS_CFS:
625 /* Set default source clock in Master mode */
626 if (i2s->rclk_srcrate == 0)
627 i2s_set_sysclk(dai, SAMSUNG_I2S_RCLKSRC_0,
628 0, SND_SOC_CLOCK_IN);
629 break;
630 default:
631 dev_err(&i2s->pdev->dev, "master/slave format not supported\n");
632 return -EINVAL;
633 }
634
Padmavathi Vennab60be4a2013-07-26 19:06:48 +0530635 /*
636 * Don't change the I2S mode if any controller is active on this
637 * channel.
638 */
Jassi Brar1c7ac012010-11-22 15:36:59 +0900639 if (any_active(i2s) &&
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530640 ((mod & (sdf_mask | lrp_rlow | mod_slave)) != tmp)) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900641 dev_err(&i2s->pdev->dev,
642 "%s:%d Other DAI busy\n", __func__, __LINE__);
643 return -EAGAIN;
644 }
645
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530646 mod &= ~(sdf_mask | lrp_rlow | mod_slave);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900647 mod |= tmp;
648 writel(mod, i2s->addr + I2SMOD);
649
650 return 0;
651}
652
653static int i2s_hw_params(struct snd_pcm_substream *substream,
654 struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
655{
656 struct i2s_dai *i2s = to_info(dai);
657 u32 mod = readl(i2s->addr + I2SMOD);
658
659 if (!is_secondary(i2s))
660 mod &= ~(MOD_DC2_EN | MOD_DC1_EN);
661
662 switch (params_channels(params)) {
663 case 6:
664 mod |= MOD_DC2_EN;
665 case 4:
666 mod |= MOD_DC1_EN;
667 break;
668 case 2:
Sangsu Park588fb702012-03-16 15:40:53 +0900669 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
670 i2s->dma_playback.dma_size = 4;
671 else
672 i2s->dma_capture.dma_size = 4;
673 break;
674 case 1:
675 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
676 i2s->dma_playback.dma_size = 2;
677 else
678 i2s->dma_capture.dma_size = 2;
679
Jassi Brar1c7ac012010-11-22 15:36:59 +0900680 break;
681 default:
682 dev_err(&i2s->pdev->dev, "%d channels not supported\n",
683 params_channels(params));
684 return -EINVAL;
685 }
686
687 if (is_secondary(i2s))
688 mod &= ~MOD_BLCS_MASK;
689 else
690 mod &= ~MOD_BLCP_MASK;
691
692 if (is_manager(i2s))
693 mod &= ~MOD_BLC_MASK;
694
Tushar Behera88ce1462014-05-23 17:35:39 +0530695 switch (params_width(params)) {
696 case 8:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900697 if (is_secondary(i2s))
698 mod |= MOD_BLCS_8BIT;
699 else
700 mod |= MOD_BLCP_8BIT;
701 if (is_manager(i2s))
702 mod |= MOD_BLC_8BIT;
703 break;
Tushar Behera88ce1462014-05-23 17:35:39 +0530704 case 16:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900705 if (is_secondary(i2s))
706 mod |= MOD_BLCS_16BIT;
707 else
708 mod |= MOD_BLCP_16BIT;
709 if (is_manager(i2s))
710 mod |= MOD_BLC_16BIT;
711 break;
Tushar Behera88ce1462014-05-23 17:35:39 +0530712 case 24:
Jassi Brar1c7ac012010-11-22 15:36:59 +0900713 if (is_secondary(i2s))
714 mod |= MOD_BLCS_24BIT;
715 else
716 mod |= MOD_BLCP_24BIT;
717 if (is_manager(i2s))
718 mod |= MOD_BLC_24BIT;
719 break;
720 default:
721 dev_err(&i2s->pdev->dev, "Format(%d) not supported\n",
722 params_format(params));
723 return -EINVAL;
724 }
725 writel(mod, i2s->addr + I2SMOD);
726
Mark Brownd37bdf72013-12-05 14:14:52 +0000727 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);
728
Jassi Brar1c7ac012010-11-22 15:36:59 +0900729 i2s->frmclk = params_rate(params);
730
731 return 0;
732}
733
734/* We set constraints on the substream acc to the version of I2S */
735static int i2s_startup(struct snd_pcm_substream *substream,
736 struct snd_soc_dai *dai)
737{
738 struct i2s_dai *i2s = to_info(dai);
739 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
740 unsigned long flags;
741
742 spin_lock_irqsave(&lock, flags);
743
744 i2s->mode |= DAI_OPENED;
745
746 if (is_manager(other))
747 i2s->mode &= ~DAI_MANAGER;
748 else
749 i2s->mode |= DAI_MANAGER;
750
Padmavathi Venna2d778282013-01-24 18:05:31 +0530751 if (!any_active(i2s) && (i2s->quirks & QUIRK_NEED_RSTCLR))
752 writel(CON_RSTCLR, i2s->addr + I2SCON);
753
Jassi Brar1c7ac012010-11-22 15:36:59 +0900754 spin_unlock_irqrestore(&lock, flags);
755
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200756 if (!is_opened(other) && i2s->cdclk_out)
757 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
758 0, SND_SOC_CLOCK_OUT);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900759 return 0;
760}
761
762static void i2s_shutdown(struct snd_pcm_substream *substream,
763 struct snd_soc_dai *dai)
764{
765 struct i2s_dai *i2s = to_info(dai);
766 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
767 unsigned long flags;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530768 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900769
770 spin_lock_irqsave(&lock, flags);
771
772 i2s->mode &= ~DAI_OPENED;
773 i2s->mode &= ~DAI_MANAGER;
774
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200775 if (is_opened(other)) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900776 other->mode |= DAI_MANAGER;
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200777 } else {
778 u32 mod = readl(i2s->addr + I2SMOD);
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530779 i2s->cdclk_out = !(mod & (1 << i2s_regs->cdclkcon_off));
Charles Keepax133c2682014-09-09 16:51:49 +0100780 if (other)
781 other->cdclk_out = i2s->cdclk_out;
Sylwester Nawrockib97c60a2014-07-10 18:11:13 +0200782 }
Jassi Brar1c7ac012010-11-22 15:36:59 +0900783 /* Reset any constraint on RFS and BFS */
784 i2s->rfs = 0;
785 i2s->bfs = 0;
786
787 spin_unlock_irqrestore(&lock, flags);
788
789 /* Gate CDCLK by default */
790 if (!is_opened(other))
791 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
792 0, SND_SOC_CLOCK_IN);
793}
794
795static int config_setup(struct i2s_dai *i2s)
796{
797 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
798 unsigned rfs, bfs, blc;
799 u32 psr;
800
801 blc = get_blc(i2s);
802
803 bfs = i2s->bfs;
804
805 if (!bfs && other)
806 bfs = other->bfs;
807
808 /* Select least possible multiple(2) if no constraint set */
809 if (!bfs)
810 bfs = blc * 2;
811
812 rfs = i2s->rfs;
813
814 if (!rfs && other)
815 rfs = other->rfs;
816
817 if ((rfs == 256 || rfs == 512) && (blc == 24)) {
818 dev_err(&i2s->pdev->dev,
819 "%d-RFS not supported for 24-blc\n", rfs);
820 return -EINVAL;
821 }
822
823 if (!rfs) {
824 if (bfs == 16 || bfs == 32)
825 rfs = 256;
826 else
827 rfs = 384;
828 }
829
830 /* If already setup and running */
831 if (any_active(i2s) && (get_rfs(i2s) != rfs || get_bfs(i2s) != bfs)) {
832 dev_err(&i2s->pdev->dev,
833 "%s:%d Other DAI busy\n", __func__, __LINE__);
834 return -EAGAIN;
835 }
836
Jassi Brar1c7ac012010-11-22 15:36:59 +0900837 set_bfs(i2s, bfs);
838 set_rfs(i2s, rfs);
839
Padmavathi Venna77010012013-07-11 12:38:25 +0530840 /* Don't bother with PSR in Slave mode */
841 if (is_slave(i2s))
842 return 0;
843
Jassi Brar1c7ac012010-11-22 15:36:59 +0900844 if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
845 psr = i2s->rclk_srcrate / i2s->frmclk / rfs;
846 writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR);
847 dev_dbg(&i2s->pdev->dev,
848 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
849 i2s->rclk_srcrate, psr, rfs, bfs);
850 }
851
852 return 0;
853}
854
855static int i2s_trigger(struct snd_pcm_substream *substream,
856 int cmd, struct snd_soc_dai *dai)
857{
858 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
859 struct snd_soc_pcm_runtime *rtd = substream->private_data;
860 struct i2s_dai *i2s = to_info(rtd->cpu_dai);
861 unsigned long flags;
862
863 switch (cmd) {
864 case SNDRV_PCM_TRIGGER_START:
865 case SNDRV_PCM_TRIGGER_RESUME:
866 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
867 local_irq_save(flags);
868
Jassi Brar1c7ac012010-11-22 15:36:59 +0900869 if (config_setup(i2s)) {
870 local_irq_restore(flags);
871 return -EINVAL;
872 }
873
874 if (capture)
875 i2s_rxctrl(i2s, 1);
876 else
877 i2s_txctrl(i2s, 1);
878
879 local_irq_restore(flags);
880 break;
881 case SNDRV_PCM_TRIGGER_STOP:
882 case SNDRV_PCM_TRIGGER_SUSPEND:
883 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
884 local_irq_save(flags);
885
Jassi Brarc90887f2012-02-25 16:42:34 +0530886 if (capture) {
Jassi Brar1c7ac012010-11-22 15:36:59 +0900887 i2s_rxctrl(i2s, 0);
Jassi Brar775bc972010-12-20 11:05:47 +0900888 i2s_fifo(i2s, FIC_RXFLUSH);
Jassi Brarc90887f2012-02-25 16:42:34 +0530889 } else {
890 i2s_txctrl(i2s, 0);
Jassi Brar775bc972010-12-20 11:05:47 +0900891 i2s_fifo(i2s, FIC_TXFLUSH);
Jassi Brarc90887f2012-02-25 16:42:34 +0530892 }
Jassi Brar775bc972010-12-20 11:05:47 +0900893
Jassi Brar1c7ac012010-11-22 15:36:59 +0900894 local_irq_restore(flags);
895 break;
896 }
897
898 return 0;
899}
900
901static int i2s_set_clkdiv(struct snd_soc_dai *dai,
902 int div_id, int div)
903{
904 struct i2s_dai *i2s = to_info(dai);
905 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
906
907 switch (div_id) {
908 case SAMSUNG_I2S_DIV_BCLK:
909 if ((any_active(i2s) && div && (get_bfs(i2s) != div))
910 || (other && other->bfs && (other->bfs != div))) {
911 dev_err(&i2s->pdev->dev,
912 "%s:%d Other DAI busy\n", __func__, __LINE__);
913 return -EAGAIN;
914 }
915 i2s->bfs = div;
916 break;
917 default:
918 dev_err(&i2s->pdev->dev,
919 "Invalid clock divider(%d)\n", div_id);
920 return -EINVAL;
921 }
922
923 return 0;
924}
925
926static snd_pcm_sframes_t
927i2s_delay(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
928{
929 struct i2s_dai *i2s = to_info(dai);
930 u32 reg = readl(i2s->addr + I2SFIC);
931 snd_pcm_sframes_t delay;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530932 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900933
934 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
935 delay = FIC_RXCOUNT(reg);
936 else if (is_secondary(i2s))
937 delay = FICS_TXCOUNT(readl(i2s->addr + I2SFICS));
938 else
Padmavathi Vennaa5a56872014-11-07 12:24:40 +0530939 delay = (reg >> i2s_regs->ftx0cnt_off) & 0x7f;
Jassi Brar1c7ac012010-11-22 15:36:59 +0900940
941 return delay;
942}
943
944#ifdef CONFIG_PM
945static int i2s_suspend(struct snd_soc_dai *dai)
946{
947 struct i2s_dai *i2s = to_info(dai);
948
Sylwester Nawrockid3d4e522014-07-04 16:05:45 +0200949 i2s->suspend_i2smod = readl(i2s->addr + I2SMOD);
950 i2s->suspend_i2scon = readl(i2s->addr + I2SCON);
951 i2s->suspend_i2spsr = readl(i2s->addr + I2SPSR);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900952
953 return 0;
954}
955
956static int i2s_resume(struct snd_soc_dai *dai)
957{
958 struct i2s_dai *i2s = to_info(dai);
959
Sylwester Nawrockid3d4e522014-07-04 16:05:45 +0200960 writel(i2s->suspend_i2scon, i2s->addr + I2SCON);
961 writel(i2s->suspend_i2smod, i2s->addr + I2SMOD);
962 writel(i2s->suspend_i2spsr, i2s->addr + I2SPSR);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900963
964 return 0;
965}
966#else
967#define i2s_suspend NULL
968#define i2s_resume NULL
969#endif
970
971static int samsung_i2s_dai_probe(struct snd_soc_dai *dai)
972{
973 struct i2s_dai *i2s = to_info(dai);
974 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
975
Mark Brown36885692013-10-19 15:23:15 +0100976 if (other && other->clk) { /* If this is probe on secondary */
977 samsung_asoc_init_dma_data(dai, &other->sec_dai->dma_playback,
978 NULL);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900979 goto probe_exit;
Mark Brown36885692013-10-19 15:23:15 +0100980 }
Jassi Brar1c7ac012010-11-22 15:36:59 +0900981
982 i2s->addr = ioremap(i2s->base, 0x100);
983 if (i2s->addr == NULL) {
984 dev_err(&i2s->pdev->dev, "cannot ioremap registers\n");
985 return -ENXIO;
986 }
987
988 i2s->clk = clk_get(&i2s->pdev->dev, "iis");
989 if (IS_ERR(i2s->clk)) {
990 dev_err(&i2s->pdev->dev, "failed to get i2s_clock\n");
991 iounmap(i2s->addr);
992 return -ENOENT;
993 }
Thomas Abraham98614cf2012-10-03 08:46:58 +0900994 clk_prepare_enable(i2s->clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +0900995
Mark Brown36885692013-10-19 15:23:15 +0100996 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);
Mark Brown511e30332013-10-17 21:18:40 +0100997
Jassi Brar1c7ac012010-11-22 15:36:59 +0900998 if (other) {
999 other->addr = i2s->addr;
1000 other->clk = i2s->clk;
1001 }
1002
1003 if (i2s->quirks & QUIRK_NEED_RSTCLR)
1004 writel(CON_RSTCLR, i2s->addr + I2SCON);
1005
Padmavathi Vennab0759732014-11-07 12:24:39 +05301006 if (i2s->quirks & QUIRK_SUPPORTS_IDMA)
Mark Brown9b8f5692011-11-27 21:35:40 +00001007 idma_reg_addr_init(i2s->addr,
Sangbeom Kim61100f42011-07-20 17:07:12 +09001008 i2s->sec_dai->idma_playback.dma_addr);
1009
Jassi Brar1c7ac012010-11-22 15:36:59 +09001010probe_exit:
1011 /* Reset any constraint on RFS and BFS */
1012 i2s->rfs = 0;
1013 i2s->bfs = 0;
Tushar Beherad66eac32014-04-23 13:34:24 +05301014 i2s->rclk_srcrate = 0;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001015 i2s_txctrl(i2s, 0);
1016 i2s_rxctrl(i2s, 0);
1017 i2s_fifo(i2s, FIC_TXFLUSH);
1018 i2s_fifo(other, FIC_TXFLUSH);
1019 i2s_fifo(i2s, FIC_RXFLUSH);
1020
1021 /* Gate CDCLK by default */
1022 if (!is_opened(other))
1023 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
1024 0, SND_SOC_CLOCK_IN);
1025
1026 return 0;
1027}
1028
1029static int samsung_i2s_dai_remove(struct snd_soc_dai *dai)
1030{
1031 struct i2s_dai *i2s = snd_soc_dai_get_drvdata(dai);
1032 struct i2s_dai *other = i2s->pri_dai ? : i2s->sec_dai;
1033
1034 if (!other || !other->clk) {
1035
1036 if (i2s->quirks & QUIRK_NEED_RSTCLR)
1037 writel(0, i2s->addr + I2SCON);
1038
Thomas Abraham98614cf2012-10-03 08:46:58 +09001039 clk_disable_unprepare(i2s->clk);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001040 clk_put(i2s->clk);
1041
1042 iounmap(i2s->addr);
1043 }
1044
1045 i2s->clk = NULL;
1046
1047 return 0;
1048}
1049
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001050static const struct snd_soc_dai_ops samsung_i2s_dai_ops = {
Jassi Brar1c7ac012010-11-22 15:36:59 +09001051 .trigger = i2s_trigger,
1052 .hw_params = i2s_hw_params,
1053 .set_fmt = i2s_set_fmt,
1054 .set_clkdiv = i2s_set_clkdiv,
1055 .set_sysclk = i2s_set_sysclk,
1056 .startup = i2s_startup,
1057 .shutdown = i2s_shutdown,
1058 .delay = i2s_delay,
1059};
1060
Kuninori Morimoto4b828532013-03-21 03:35:55 -07001061static const struct snd_soc_component_driver samsung_i2s_component = {
1062 .name = "samsung-i2s",
1063};
1064
Jassi Brar1c7ac012010-11-22 15:36:59 +09001065#define SAMSUNG_I2S_RATES SNDRV_PCM_RATE_8000_96000
1066
1067#define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | \
1068 SNDRV_PCM_FMTBIT_S16_LE | \
1069 SNDRV_PCM_FMTBIT_S24_LE)
1070
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001071static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001072{
1073 struct i2s_dai *i2s;
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301074 int ret;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001075
Mark Brownb960ce72011-12-03 20:30:37 +00001076 i2s = devm_kzalloc(&pdev->dev, sizeof(struct i2s_dai), GFP_KERNEL);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001077 if (i2s == NULL)
1078 return NULL;
1079
1080 i2s->pdev = pdev;
1081 i2s->pri_dai = NULL;
1082 i2s->sec_dai = NULL;
1083 i2s->i2s_dai_drv.symmetric_rates = 1;
1084 i2s->i2s_dai_drv.probe = samsung_i2s_dai_probe;
1085 i2s->i2s_dai_drv.remove = samsung_i2s_dai_remove;
1086 i2s->i2s_dai_drv.ops = &samsung_i2s_dai_ops;
1087 i2s->i2s_dai_drv.suspend = i2s_suspend;
1088 i2s->i2s_dai_drv.resume = i2s_resume;
Charles Keepaxa0ff6ea2013-09-11 15:27:29 +01001089 i2s->i2s_dai_drv.playback.channels_min = 1;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001090 i2s->i2s_dai_drv.playback.channels_max = 2;
1091 i2s->i2s_dai_drv.playback.rates = SAMSUNG_I2S_RATES;
1092 i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS;
1093
1094 if (!sec) {
Sangsu Park588fb702012-03-16 15:40:53 +09001095 i2s->i2s_dai_drv.capture.channels_min = 1;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001096 i2s->i2s_dai_drv.capture.channels_max = 2;
1097 i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES;
1098 i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS;
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301099 dev_set_drvdata(&i2s->pdev->dev, i2s);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001100 } else { /* Create a new platform_device for Secondary */
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301101 i2s->pdev = platform_device_alloc("samsung-i2s-sec", -1);
Wei Yongjun29ca9c72013-10-25 17:06:24 +08001102 if (!i2s->pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001103 return NULL;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001104
Mark Brown2f6f0ff2013-08-01 11:02:47 +01001105 i2s->pdev->dev.parent = &pdev->dev;
1106
Prathyush Kc6f9b1e2013-04-02 16:53:02 +05301107 platform_set_drvdata(i2s->pdev, i2s);
1108 ret = platform_device_add(i2s->pdev);
1109 if (ret < 0)
1110 return NULL;
1111 }
Jassi Brar1c7ac012010-11-22 15:36:59 +09001112
1113 return i2s;
1114}
1115
Padmavathi Venna40476f62013-01-18 17:17:01 +05301116static const struct of_device_id exynos_i2s_match[];
1117
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301118static inline const struct samsung_i2s_dai_data *samsung_i2s_get_driver_data(
1119 struct platform_device *pdev)
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301120{
Padmavathi Venna40476f62013-01-18 17:17:01 +05301121#ifdef CONFIG_OF
Padmavathi Venna40476f62013-01-18 17:17:01 +05301122 if (pdev->dev.of_node) {
1123 const struct of_device_id *match;
1124 match = of_match_node(exynos_i2s_match, pdev->dev.of_node);
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301125 return match->data;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301126 } else
1127#endif
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301128 return (struct samsung_i2s_dai_data *)
1129 platform_get_device_id(pdev)->driver_data;
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301130}
1131
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301132#ifdef CONFIG_PM_RUNTIME
1133static int i2s_runtime_suspend(struct device *dev)
1134{
1135 struct i2s_dai *i2s = dev_get_drvdata(dev);
1136
1137 clk_disable_unprepare(i2s->clk);
1138
1139 return 0;
1140}
1141
1142static int i2s_runtime_resume(struct device *dev)
1143{
1144 struct i2s_dai *i2s = dev_get_drvdata(dev);
1145
1146 clk_prepare_enable(i2s->clk);
1147
1148 return 0;
1149}
1150#endif /* CONFIG_PM_RUNTIME */
1151
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001152static int samsung_i2s_probe(struct platform_device *pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001153{
Jassi Brar1c7ac012010-11-22 15:36:59 +09001154 struct i2s_dai *pri_dai, *sec_dai = NULL;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301155 struct s3c_audio_pdata *i2s_pdata = pdev->dev.platform_data;
1156 struct samsung_i2s *i2s_cfg = NULL;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001157 struct resource *res;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301158 u32 regs_base, quirks = 0, idma_addr = 0;
1159 struct device_node *np = pdev->dev.of_node;
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301160 const struct samsung_i2s_dai_data *i2s_dai_data;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001161 int ret = 0;
1162
1163 /* Call during Seconday interface registration */
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301164 i2s_dai_data = samsung_i2s_get_driver_data(pdev);
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301165
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301166 if (i2s_dai_data->dai_type == TYPE_SEC) {
Jassi Brar1c7ac012010-11-22 15:36:59 +09001167 sec_dai = dev_get_drvdata(&pdev->dev);
Prathyush Ka9b977e2013-04-02 16:53:01 +05301168 if (!sec_dai) {
1169 dev_err(&pdev->dev, "Unable to get drvdata\n");
1170 return -EFAULT;
1171 }
Mark Brownd644a112013-09-04 20:37:51 +01001172 devm_snd_soc_register_component(&sec_dai->pdev->dev,
1173 &samsung_i2s_component,
1174 &sec_dai->i2s_dai_drv, 1);
Mark Brown85ff3c22013-08-19 22:59:05 +01001175 samsung_asoc_dma_platform_register(&pdev->dev);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001176 return 0;
1177 }
1178
Padmavathi Venna40476f62013-01-18 17:17:01 +05301179 pri_dai = i2s_alloc_dai(pdev, false);
1180 if (!pri_dai) {
1181 dev_err(&pdev->dev, "Unable to alloc I2S_pri\n");
1182 return -ENOMEM;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001183 }
1184
Padmavathi Venna40476f62013-01-18 17:17:01 +05301185 if (!np) {
1186 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1187 if (!res) {
1188 dev_err(&pdev->dev,
1189 "Unable to get I2S-TX dma resource\n");
1190 return -ENXIO;
1191 }
1192 pri_dai->dma_playback.channel = res->start;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001193
Padmavathi Venna40476f62013-01-18 17:17:01 +05301194 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
1195 if (!res) {
1196 dev_err(&pdev->dev,
1197 "Unable to get I2S-RX dma resource\n");
1198 return -ENXIO;
1199 }
1200 pri_dai->dma_capture.channel = res->start;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001201
Padmavathi Venna40476f62013-01-18 17:17:01 +05301202 if (i2s_pdata == NULL) {
1203 dev_err(&pdev->dev, "Can't work without s3c_audio_pdata\n");
1204 return -EINVAL;
1205 }
1206
1207 if (&i2s_pdata->type)
1208 i2s_cfg = &i2s_pdata->type.i2s;
1209
1210 if (i2s_cfg) {
1211 quirks = i2s_cfg->quirks;
1212 idma_addr = i2s_cfg->idma_addr;
1213 }
1214 } else {
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301215 quirks = i2s_dai_data->quirks;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301216 if (of_property_read_u32(np, "samsung,idma-addr",
1217 &idma_addr)) {
Padmavathi Vennab0759732014-11-07 12:24:39 +05301218 if (quirks & QUIRK_SUPPORTS_IDMA) {
1219 dev_info(&pdev->dev, "idma address is not"\
Padmavathi Venna40476f62013-01-18 17:17:01 +05301220 "specified");
Padmavathi Venna40476f62013-01-18 17:17:01 +05301221 }
1222 }
1223 }
Jassi Brar1c7ac012010-11-22 15:36:59 +09001224
1225 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1226 if (!res) {
1227 dev_err(&pdev->dev, "Unable to get I2S SFR address\n");
1228 return -ENXIO;
1229 }
1230
1231 if (!request_mem_region(res->start, resource_size(res),
1232 "samsung-i2s")) {
1233 dev_err(&pdev->dev, "Unable to request SFR region\n");
1234 return -EBUSY;
1235 }
1236 regs_base = res->start;
1237
Jassi Brar1c7ac012010-11-22 15:36:59 +09001238 pri_dai->dma_playback.dma_addr = regs_base + I2STXD;
1239 pri_dai->dma_capture.dma_addr = regs_base + I2SRXD;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301240 pri_dai->dma_playback.ch_name = "tx";
Padmavathi Venna40476f62013-01-18 17:17:01 +05301241 pri_dai->dma_capture.ch_name = "rx";
Jassi Brar1c7ac012010-11-22 15:36:59 +09001242 pri_dai->dma_playback.dma_size = 4;
1243 pri_dai->dma_capture.dma_size = 4;
1244 pri_dai->base = regs_base;
1245 pri_dai->quirks = quirks;
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301246 pri_dai->variant_regs = i2s_dai_data->i2s_variant_regs;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001247
1248 if (quirks & QUIRK_PRI_6CHAN)
1249 pri_dai->i2s_dai_drv.playback.channels_max = 6;
1250
1251 if (quirks & QUIRK_SEC_DAI) {
1252 sec_dai = i2s_alloc_dai(pdev, true);
1253 if (!sec_dai) {
1254 dev_err(&pdev->dev, "Unable to alloc I2S_sec\n");
1255 ret = -ENOMEM;
Mark Brownb960ce72011-12-03 20:30:37 +00001256 goto err;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001257 }
1258 sec_dai->dma_playback.dma_addr = regs_base + I2STXDS;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301259 sec_dai->dma_playback.ch_name = "tx-sec";
1260
1261 if (!np) {
1262 res = platform_get_resource(pdev, IORESOURCE_DMA, 2);
1263 if (res)
1264 sec_dai->dma_playback.channel = res->start;
1265 }
1266
Jassi Brar1c7ac012010-11-22 15:36:59 +09001267 sec_dai->dma_playback.dma_size = 4;
1268 sec_dai->base = regs_base;
1269 sec_dai->quirks = quirks;
Padmavathi Venna40476f62013-01-18 17:17:01 +05301270 sec_dai->idma_playback.dma_addr = idma_addr;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001271 sec_dai->pri_dai = pri_dai;
1272 pri_dai->sec_dai = sec_dai;
1273 }
1274
Mark Brown0429ffe2013-07-02 13:10:28 +01001275 if (i2s_pdata && i2s_pdata->cfg_gpio && i2s_pdata->cfg_gpio(pdev)) {
1276 dev_err(&pdev->dev, "Unable to configure gpio\n");
1277 ret = -EINVAL;
1278 goto err;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001279 }
1280
Mark Brownd644a112013-09-04 20:37:51 +01001281 devm_snd_soc_register_component(&pri_dai->pdev->dev,
1282 &samsung_i2s_component,
1283 &pri_dai->i2s_dai_drv, 1);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001284
Mark Brownc5cf4db2011-12-08 16:45:03 +08001285 pm_runtime_enable(&pdev->dev);
1286
Mark Brown85ff3c22013-08-19 22:59:05 +01001287 samsung_asoc_dma_platform_register(&pdev->dev);
Padmavathi Vennaa08485d82012-12-07 13:59:21 +05301288
Jassi Brar1c7ac012010-11-22 15:36:59 +09001289 return 0;
Mark Brownb960ce72011-12-03 20:30:37 +00001290err:
Sachin Kamat57e33782014-01-24 16:23:22 +05301291 if (res)
1292 release_mem_region(regs_base, resource_size(res));
Jassi Brar1c7ac012010-11-22 15:36:59 +09001293
1294 return ret;
1295}
1296
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001297static int samsung_i2s_remove(struct platform_device *pdev)
Jassi Brar1c7ac012010-11-22 15:36:59 +09001298{
1299 struct i2s_dai *i2s, *other;
Mark Brownc5cf4db2011-12-08 16:45:03 +08001300 struct resource *res;
Jassi Brar1c7ac012010-11-22 15:36:59 +09001301
1302 i2s = dev_get_drvdata(&pdev->dev);
1303 other = i2s->pri_dai ? : i2s->sec_dai;
1304
1305 if (other) {
1306 other->pri_dai = NULL;
1307 other->sec_dai = NULL;
1308 } else {
Mark Brownc5cf4db2011-12-08 16:45:03 +08001309 pm_runtime_disable(&pdev->dev);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001310 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1311 if (res)
1312 release_mem_region(res->start, resource_size(res));
1313 }
1314
1315 i2s->pri_dai = NULL;
1316 i2s->sec_dai = NULL;
1317
Jassi Brar1c7ac012010-11-22 15:36:59 +09001318 return 0;
1319}
1320
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301321static const struct samsung_i2s_variant_regs i2sv3_regs = {
1322 .bfs_off = 1,
1323 .rfs_off = 3,
1324 .sdf_off = 5,
1325 .txr_off = 8,
1326 .rclksrc_off = 10,
1327 .mss_off = 11,
1328 .cdclkcon_off = 12,
1329 .lrp_off = 7,
1330 .bfs_mask = 0x3,
1331 .rfs_mask = 0x3,
1332 .ftx0cnt_off = 8,
1333};
1334
1335static const struct samsung_i2s_variant_regs i2sv6_regs = {
1336 .bfs_off = 0,
1337 .rfs_off = 4,
1338 .sdf_off = 6,
1339 .txr_off = 8,
1340 .rclksrc_off = 10,
1341 .mss_off = 11,
1342 .cdclkcon_off = 12,
1343 .lrp_off = 15,
1344 .bfs_mask = 0xf,
1345 .rfs_mask = 0x3,
1346 .ftx0cnt_off = 8,
1347};
1348
1349static const struct samsung_i2s_variant_regs i2sv7_regs = {
1350 .bfs_off = 0,
1351 .rfs_off = 4,
1352 .sdf_off = 7,
1353 .txr_off = 9,
1354 .rclksrc_off = 11,
1355 .mss_off = 12,
1356 .cdclkcon_off = 22,
1357 .lrp_off = 15,
1358 .bfs_mask = 0xf,
1359 .rfs_mask = 0x7,
1360 .ftx0cnt_off = 0,
1361};
1362
1363static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs = {
1364 .bfs_off = 0,
1365 .rfs_off = 3,
1366 .sdf_off = 6,
1367 .txr_off = 8,
1368 .rclksrc_off = 10,
1369 .mss_off = 11,
1370 .cdclkcon_off = 12,
1371 .lrp_off = 15,
1372 .bfs_mask = 0x7,
1373 .rfs_mask = 0x7,
1374 .ftx0cnt_off = 8,
1375};
1376
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301377static const struct samsung_i2s_dai_data i2sv3_dai_type = {
1378 .dai_type = TYPE_PRI,
1379 .quirks = QUIRK_NO_MUXPSR,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301380 .i2s_variant_regs = &i2sv3_regs,
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301381};
1382
1383static const struct samsung_i2s_dai_data i2sv5_dai_type = {
1384 .dai_type = TYPE_PRI,
Padmavathi Vennab0759732014-11-07 12:24:39 +05301385 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1386 QUIRK_SUPPORTS_IDMA,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301387 .i2s_variant_regs = &i2sv3_regs,
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301388};
1389
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301390static const struct samsung_i2s_dai_data i2sv6_dai_type = {
1391 .dai_type = TYPE_PRI,
1392 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
Padmavathi Vennab0759732014-11-07 12:24:39 +05301393 QUIRK_SUPPORTS_TDM | QUIRK_SUPPORTS_IDMA,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301394 .i2s_variant_regs = &i2sv6_regs,
1395};
1396
1397static const struct samsung_i2s_dai_data i2sv7_dai_type = {
1398 .dai_type = TYPE_PRI,
1399 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1400 QUIRK_SUPPORTS_TDM,
1401 .i2s_variant_regs = &i2sv7_regs,
1402};
1403
1404static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 = {
1405 .dai_type = TYPE_PRI,
1406 .quirks = QUIRK_PRI_6CHAN | QUIRK_NEED_RSTCLR,
1407 .i2s_variant_regs = &i2sv5_i2s1_regs,
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301408};
1409
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301410static const struct samsung_i2s_dai_data samsung_dai_type_pri = {
1411 .dai_type = TYPE_PRI,
1412};
1413
1414static const struct samsung_i2s_dai_data samsung_dai_type_sec = {
1415 .dai_type = TYPE_SEC,
1416};
1417
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301418static struct platform_device_id samsung_i2s_driver_ids[] = {
1419 {
1420 .name = "samsung-i2s",
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301421 .driver_data = (kernel_ulong_t)&samsung_dai_type_pri,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301422 }, {
1423 .name = "samsung-i2s-sec",
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301424 .driver_data = (kernel_ulong_t)&samsung_dai_type_sec,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301425 },
1426 {},
1427};
Arnd Bergmann2af19552013-04-11 02:05:03 +02001428MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids);
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301429
Padmavathi Venna40476f62013-01-18 17:17:01 +05301430#ifdef CONFIG_OF
Padmavathi Venna40476f62013-01-18 17:17:01 +05301431static const struct of_device_id exynos_i2s_match[] = {
Padmavathi Venna7da493e2013-08-12 15:19:51 +05301432 {
1433 .compatible = "samsung,s3c6410-i2s",
1434 .data = &i2sv3_dai_type,
1435 }, {
1436 .compatible = "samsung,s5pv210-i2s",
1437 .data = &i2sv5_dai_type,
Padmavathi Venna4ca0c0d2013-08-12 15:19:52 +05301438 }, {
1439 .compatible = "samsung,exynos5420-i2s",
1440 .data = &i2sv6_dai_type,
Padmavathi Vennaa5a56872014-11-07 12:24:40 +05301441 }, {
1442 .compatible = "samsung,exynos7-i2s",
1443 .data = &i2sv7_dai_type,
1444 }, {
1445 .compatible = "samsung,exynos7-i2s1",
1446 .data = &i2sv5_dai_type_i2s1,
Padmavathi Venna40476f62013-01-18 17:17:01 +05301447 },
1448 {},
1449};
1450MODULE_DEVICE_TABLE(of, exynos_i2s_match);
1451#endif
1452
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301453static const struct dev_pm_ops samsung_i2s_pm = {
1454 SET_RUNTIME_PM_OPS(i2s_runtime_suspend,
1455 i2s_runtime_resume, NULL)
1456};
1457
Jassi Brar1c7ac012010-11-22 15:36:59 +09001458static struct platform_driver samsung_i2s_driver = {
1459 .probe = samsung_i2s_probe,
Bill Pembertonfdca21a2012-12-07 09:26:15 -05001460 .remove = samsung_i2s_remove,
Padmavathi Venna7c62eeb2013-01-18 17:17:00 +05301461 .id_table = samsung_i2s_driver_ids,
Jassi Brar1c7ac012010-11-22 15:36:59 +09001462 .driver = {
1463 .name = "samsung-i2s",
1464 .owner = THIS_MODULE,
Padmavathi Venna40476f62013-01-18 17:17:01 +05301465 .of_match_table = of_match_ptr(exynos_i2s_match),
R. Chandrasekar5b1d3c32013-01-30 17:41:04 +05301466 .pm = &samsung_i2s_pm,
Jassi Brar1c7ac012010-11-22 15:36:59 +09001467 },
1468};
1469
Mark Browne00c3f52011-11-23 15:20:13 +00001470module_platform_driver(samsung_i2s_driver);
Jassi Brar1c7ac012010-11-22 15:36:59 +09001471
1472/* Module information */
Jaswinder Singhdf8ad332012-02-25 16:24:36 +05301473MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
Jassi Brar1c7ac012010-11-22 15:36:59 +09001474MODULE_DESCRIPTION("Samsung I2S Interface");
1475MODULE_ALIAS("platform:samsung-i2s");
1476MODULE_LICENSE("GPL");