Merge tag 'v3.14.26' into backport/v3.14.24-ltsi-rc1+v3.14.26/snapshot-merge.wip
[platform/adaptation/renesas_rcar/renesas_kernel.git] / sound / soc / sh / fsi.c
1 /*
2  * Fifo-attached Serial Interface (FSI) support for SH7724
3  *
4  * Copyright (C) 2009 Renesas Solutions Corp.
5  * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6  *
7  * Based on ssi.c
8  * Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14
15 #include <linux/delay.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/io.h>
19 #include <linux/of.h>
20 #include <linux/of_device.h>
21 #include <linux/scatterlist.h>
22 #include <linux/sh_dma.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
25 #include <linux/workqueue.h>
26 #include <sound/soc.h>
27 #include <sound/pcm_params.h>
28 #include <sound/sh_fsi.h>
29
30 /* PortA/PortB register */
31 #define REG_DO_FMT      0x0000
32 #define REG_DOFF_CTL    0x0004
33 #define REG_DOFF_ST     0x0008
34 #define REG_DI_FMT      0x000C
35 #define REG_DIFF_CTL    0x0010
36 #define REG_DIFF_ST     0x0014
37 #define REG_CKG1        0x0018
38 #define REG_CKG2        0x001C
39 #define REG_DIDT        0x0020
40 #define REG_DODT        0x0024
41 #define REG_MUTE_ST     0x0028
42 #define REG_OUT_DMAC    0x002C
43 #define REG_OUT_SEL     0x0030
44 #define REG_IN_DMAC     0x0038
45
46 /* master register */
47 #define MST_CLK_RST     0x0210
48 #define MST_SOFT_RST    0x0214
49 #define MST_FIFO_SZ     0x0218
50
51 /* core register (depend on FSI version) */
52 #define A_MST_CTLR      0x0180
53 #define B_MST_CTLR      0x01A0
54 #define CPU_INT_ST      0x01F4
55 #define CPU_IEMSK       0x01F8
56 #define CPU_IMSK        0x01FC
57 #define INT_ST          0x0200
58 #define IEMSK           0x0204
59 #define IMSK            0x0208
60
61 /* DO_FMT */
62 /* DI_FMT */
63 #define CR_BWS_MASK     (0x3 << 20) /* FSI2 */
64 #define CR_BWS_24       (0x0 << 20) /* FSI2 */
65 #define CR_BWS_16       (0x1 << 20) /* FSI2 */
66 #define CR_BWS_20       (0x2 << 20) /* FSI2 */
67
68 #define CR_DTMD_PCM             (0x0 << 8) /* FSI2 */
69 #define CR_DTMD_SPDIF_PCM       (0x1 << 8) /* FSI2 */
70 #define CR_DTMD_SPDIF_STREAM    (0x2 << 8) /* FSI2 */
71
72 #define CR_MONO         (0x0 << 4)
73 #define CR_MONO_D       (0x1 << 4)
74 #define CR_PCM          (0x2 << 4)
75 #define CR_I2S          (0x3 << 4)
76 #define CR_TDM          (0x4 << 4)
77 #define CR_TDM_D        (0x5 << 4)
78
79 /* OUT_DMAC */
80 /* IN_DMAC */
81 #define VDMD_MASK       (0x3 << 4)
82 #define VDMD_FRONT      (0x0 << 4) /* Package in front */
83 #define VDMD_BACK       (0x1 << 4) /* Package in back */
84 #define VDMD_STREAM     (0x2 << 4) /* Stream mode(16bit * 2) */
85
86 #define DMA_ON          (0x1 << 0)
87
88 /* DOFF_CTL */
89 /* DIFF_CTL */
90 #define IRQ_HALF        0x00100000
91 #define FIFO_CLR        0x00000001
92
93 /* DOFF_ST */
94 #define ERR_OVER        0x00000010
95 #define ERR_UNDER       0x00000001
96 #define ST_ERR          (ERR_OVER | ERR_UNDER)
97
98 /* CKG1 */
99 #define ACKMD_MASK      0x00007000
100 #define BPFMD_MASK      0x00000700
101 #define DIMD            (1 << 4)
102 #define DOMD            (1 << 0)
103
104 /* A/B MST_CTLR */
105 #define BP      (1 << 4)        /* Fix the signal of Biphase output */
106 #define SE      (1 << 0)        /* Fix the master clock */
107
108 /* CLK_RST */
109 #define CRB     (1 << 4)
110 #define CRA     (1 << 0)
111
112 /* IO SHIFT / MACRO */
113 #define BI_SHIFT        12
114 #define BO_SHIFT        8
115 #define AI_SHIFT        4
116 #define AO_SHIFT        0
117 #define AB_IO(param, shift)     (param << shift)
118
119 /* SOFT_RST */
120 #define PBSR            (1 << 12) /* Port B Software Reset */
121 #define PASR            (1 <<  8) /* Port A Software Reset */
122 #define IR              (1 <<  4) /* Interrupt Reset */
123 #define FSISR           (1 <<  0) /* Software Reset */
124
125 /* OUT_SEL (FSI2) */
126 #define DMMD            (1 << 4) /* SPDIF output timing 0: Biphase only */
127                                  /*                     1: Biphase and serial */
128
129 /* FIFO_SZ */
130 #define FIFO_SZ_MASK    0x7
131
132 #define FSI_RATES SNDRV_PCM_RATE_8000_96000
133
134 #define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
135
136 /*
137  * bus options
138  *
139  * 0x000000BA
140  *
141  * A : sample widtht 16bit setting
142  * B : sample widtht 24bit setting
143  */
144
145 #define SHIFT_16DATA            0
146 #define SHIFT_24DATA            4
147
148 #define PACKAGE_24BITBUS_BACK           0
149 #define PACKAGE_24BITBUS_FRONT          1
150 #define PACKAGE_16BITBUS_STREAM         2
151
152 #define BUSOP_SET(s, a) ((a) << SHIFT_ ## s ## DATA)
153 #define BUSOP_GET(s, a) (((a) >> SHIFT_ ## s ## DATA) & 0xF)
154
155 /*
156  * FSI driver use below type name for variable
157  *
158  * xxx_num      : number of data
159  * xxx_pos      : position of data
160  * xxx_capa     : capacity of data
161  */
162
163 /*
164  *      period/frame/sample image
165  *
166  * ex) PCM (2ch)
167  *
168  * period pos                                      period pos
169  *   [n]                                             [n + 1]
170  *   |<-------------------- period--------------------->|
171  * ==|============================================ ... =|==
172  *   |                                                  |
173  *   ||<-----  frame ----->|<------ frame ----->|  ...  |
174  *   |+--------------------+--------------------+- ...  |
175  *   ||[ sample ][ sample ]|[ sample ][ sample ]|  ...  |
176  *   |+--------------------+--------------------+- ...  |
177  * ==|============================================ ... =|==
178  */
179
180 /*
181  *      FSI FIFO image
182  *
183  *      |            |
184  *      |            |
185  *      | [ sample ] |
186  *      | [ sample ] |
187  *      | [ sample ] |
188  *      | [ sample ] |
189  *              --> go to codecs
190  */
191
192 /*
193  *      FSI clock
194  *
195  * FSIxCLK [CPG] (ick) -------> |
196  *                              |-> FSI_DIV (div)-> FSI2
197  * FSIxCK [external] (xck) ---> |
198  */
199
200 /*
201  *              struct
202  */
203
204 struct fsi_stream_handler;
205 struct fsi_stream {
206
207         /*
208          * these are initialized by fsi_stream_init()
209          */
210         struct snd_pcm_substream *substream;
211         int fifo_sample_capa;   /* sample capacity of FSI FIFO */
212         int buff_sample_capa;   /* sample capacity of ALSA buffer */
213         int buff_sample_pos;    /* sample position of ALSA buffer */
214         int period_samples;     /* sample number / 1 period */
215         int period_pos;         /* current period position */
216         int sample_width;       /* sample width */
217         int uerr_num;
218         int oerr_num;
219
220         /*
221          * bus options
222          */
223         u32 bus_option;
224
225         /*
226          * thse are initialized by fsi_handler_init()
227          */
228         struct fsi_stream_handler *handler;
229         struct fsi_priv         *priv;
230
231         /*
232          * these are for DMAEngine
233          */
234         struct dma_chan         *chan;
235         struct work_struct      work;
236         int                     dma_id;
237         int                     loop_cnt;
238         int                     additional_pos;
239 };
240
241 struct fsi_clk {
242         /* see [FSI clock] */
243         struct clk *own;
244         struct clk *xck;
245         struct clk *ick;
246         struct clk *div;
247         int (*set_rate)(struct device *dev,
248                         struct fsi_priv *fsi);
249
250         unsigned long rate;
251         unsigned int count;
252 };
253
254 struct fsi_priv {
255         void __iomem *base;
256         struct fsi_master *master;
257
258         struct fsi_stream playback;
259         struct fsi_stream capture;
260
261         struct fsi_clk clock;
262
263         u32 fmt;
264
265         int chan_num:16;
266         int clk_master:1;
267         int clk_cpg:1;
268         int spdif:1;
269         int enable_stream:1;
270         int bit_clk_inv:1;
271         int lr_clk_inv:1;
272 };
273
274 struct fsi_stream_handler {
275         int (*init)(struct fsi_priv *fsi, struct fsi_stream *io);
276         int (*quit)(struct fsi_priv *fsi, struct fsi_stream *io);
277         int (*probe)(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev);
278         int (*transfer)(struct fsi_priv *fsi, struct fsi_stream *io);
279         int (*remove)(struct fsi_priv *fsi, struct fsi_stream *io);
280         int (*start_stop)(struct fsi_priv *fsi, struct fsi_stream *io,
281                            int enable);
282 };
283 #define fsi_stream_handler_call(io, func, args...)      \
284         (!(io) ? -ENODEV :                              \
285          !((io)->handler->func) ? 0 :                   \
286          (io)->handler->func(args))
287
288 struct fsi_core {
289         int ver;
290
291         u32 int_st;
292         u32 iemsk;
293         u32 imsk;
294         u32 a_mclk;
295         u32 b_mclk;
296 };
297
298 struct fsi_master {
299         void __iomem *base;
300         struct fsi_priv fsia;
301         struct fsi_priv fsib;
302         const struct fsi_core *core;
303         spinlock_t lock;
304 };
305
306 static int fsi_stream_is_play(struct fsi_priv *fsi, struct fsi_stream *io);
307
308 /*
309  *              basic read write function
310  */
311
312 static void __fsi_reg_write(u32 __iomem *reg, u32 data)
313 {
314         /* valid data area is 24bit */
315         data &= 0x00ffffff;
316
317         __raw_writel(data, reg);
318 }
319
320 static u32 __fsi_reg_read(u32 __iomem *reg)
321 {
322         return __raw_readl(reg);
323 }
324
325 static void __fsi_reg_mask_set(u32 __iomem *reg, u32 mask, u32 data)
326 {
327         u32 val = __fsi_reg_read(reg);
328
329         val &= ~mask;
330         val |= data & mask;
331
332         __fsi_reg_write(reg, val);
333 }
334
335 #define fsi_reg_write(p, r, d)\
336         __fsi_reg_write((p->base + REG_##r), d)
337
338 #define fsi_reg_read(p, r)\
339         __fsi_reg_read((p->base + REG_##r))
340
341 #define fsi_reg_mask_set(p, r, m, d)\
342         __fsi_reg_mask_set((p->base + REG_##r), m, d)
343
344 #define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
345 #define fsi_core_read(p, r)   _fsi_master_read(p, p->core->r)
346 static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
347 {
348         u32 ret;
349         unsigned long flags;
350
351         spin_lock_irqsave(&master->lock, flags);
352         ret = __fsi_reg_read(master->base + reg);
353         spin_unlock_irqrestore(&master->lock, flags);
354
355         return ret;
356 }
357
358 #define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
359 #define fsi_core_mask_set(p, r, m, d)  _fsi_master_mask_set(p, p->core->r, m, d)
360 static void _fsi_master_mask_set(struct fsi_master *master,
361                                u32 reg, u32 mask, u32 data)
362 {
363         unsigned long flags;
364
365         spin_lock_irqsave(&master->lock, flags);
366         __fsi_reg_mask_set(master->base + reg, mask, data);
367         spin_unlock_irqrestore(&master->lock, flags);
368 }
369
370 /*
371  *              basic function
372  */
373 static int fsi_version(struct fsi_master *master)
374 {
375         return master->core->ver;
376 }
377
378 static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
379 {
380         return fsi->master;
381 }
382
383 static int fsi_is_clk_master(struct fsi_priv *fsi)
384 {
385         return fsi->clk_master;
386 }
387
388 static int fsi_is_port_a(struct fsi_priv *fsi)
389 {
390         return fsi->master->base == fsi->base;
391 }
392
393 static int fsi_is_spdif(struct fsi_priv *fsi)
394 {
395         return fsi->spdif;
396 }
397
398 static int fsi_is_enable_stream(struct fsi_priv *fsi)
399 {
400         return fsi->enable_stream;
401 }
402
403 static int fsi_is_play(struct snd_pcm_substream *substream)
404 {
405         return substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
406 }
407
408 static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
409 {
410         struct snd_soc_pcm_runtime *rtd = substream->private_data;
411
412         return  rtd->cpu_dai;
413 }
414
415 static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai)
416 {
417         struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
418
419         if (dai->id == 0)
420                 return &master->fsia;
421         else
422                 return &master->fsib;
423 }
424
425 static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
426 {
427         return fsi_get_priv_frm_dai(fsi_get_dai(substream));
428 }
429
430 static u32 fsi_get_port_shift(struct fsi_priv *fsi, struct fsi_stream *io)
431 {
432         int is_play = fsi_stream_is_play(fsi, io);
433         int is_porta = fsi_is_port_a(fsi);
434         u32 shift;
435
436         if (is_porta)
437                 shift = is_play ? AO_SHIFT : AI_SHIFT;
438         else
439                 shift = is_play ? BO_SHIFT : BI_SHIFT;
440
441         return shift;
442 }
443
444 static int fsi_frame2sample(struct fsi_priv *fsi, int frames)
445 {
446         return frames * fsi->chan_num;
447 }
448
449 static int fsi_sample2frame(struct fsi_priv *fsi, int samples)
450 {
451         return samples / fsi->chan_num;
452 }
453
454 static int fsi_get_current_fifo_samples(struct fsi_priv *fsi,
455                                         struct fsi_stream *io)
456 {
457         int is_play = fsi_stream_is_play(fsi, io);
458         u32 status;
459         int frames;
460
461         status = is_play ?
462                 fsi_reg_read(fsi, DOFF_ST) :
463                 fsi_reg_read(fsi, DIFF_ST);
464
465         frames = 0x1ff & (status >> 8);
466
467         return fsi_frame2sample(fsi, frames);
468 }
469
470 static void fsi_count_fifo_err(struct fsi_priv *fsi)
471 {
472         u32 ostatus = fsi_reg_read(fsi, DOFF_ST);
473         u32 istatus = fsi_reg_read(fsi, DIFF_ST);
474
475         if (ostatus & ERR_OVER)
476                 fsi->playback.oerr_num++;
477
478         if (ostatus & ERR_UNDER)
479                 fsi->playback.uerr_num++;
480
481         if (istatus & ERR_OVER)
482                 fsi->capture.oerr_num++;
483
484         if (istatus & ERR_UNDER)
485                 fsi->capture.uerr_num++;
486
487         fsi_reg_write(fsi, DOFF_ST, 0);
488         fsi_reg_write(fsi, DIFF_ST, 0);
489 }
490
491 /*
492  *              fsi_stream_xx() function
493  */
494 static inline int fsi_stream_is_play(struct fsi_priv *fsi,
495                                      struct fsi_stream *io)
496 {
497         return &fsi->playback == io;
498 }
499
500 static inline struct fsi_stream *fsi_stream_get(struct fsi_priv *fsi,
501                                         struct snd_pcm_substream *substream)
502 {
503         return fsi_is_play(substream) ? &fsi->playback : &fsi->capture;
504 }
505
506 static int fsi_stream_is_working(struct fsi_priv *fsi,
507                                  struct fsi_stream *io)
508 {
509         struct fsi_master *master = fsi_get_master(fsi);
510         unsigned long flags;
511         int ret;
512
513         spin_lock_irqsave(&master->lock, flags);
514         ret = !!(io->substream && io->substream->runtime);
515         spin_unlock_irqrestore(&master->lock, flags);
516
517         return ret;
518 }
519
520 static struct fsi_priv *fsi_stream_to_priv(struct fsi_stream *io)
521 {
522         return io->priv;
523 }
524
525 static void fsi_stream_init(struct fsi_priv *fsi,
526                             struct fsi_stream *io,
527                             struct snd_pcm_substream *substream)
528 {
529         struct snd_pcm_runtime *runtime = substream->runtime;
530         struct fsi_master *master = fsi_get_master(fsi);
531         unsigned long flags;
532
533         spin_lock_irqsave(&master->lock, flags);
534         io->substream   = substream;
535         io->buff_sample_capa    = fsi_frame2sample(fsi, runtime->buffer_size);
536         io->buff_sample_pos     = 0;
537         io->period_samples      = fsi_frame2sample(fsi, runtime->period_size);
538         io->period_pos          = 0;
539         io->sample_width        = samples_to_bytes(runtime, 1);
540         io->bus_option          = 0;
541         io->oerr_num    = -1; /* ignore 1st err */
542         io->uerr_num    = -1; /* ignore 1st err */
543         fsi_stream_handler_call(io, init, fsi, io);
544         spin_unlock_irqrestore(&master->lock, flags);
545 }
546
547 static void fsi_stream_quit(struct fsi_priv *fsi, struct fsi_stream *io)
548 {
549         struct snd_soc_dai *dai = fsi_get_dai(io->substream);
550         struct fsi_master *master = fsi_get_master(fsi);
551         unsigned long flags;
552
553         spin_lock_irqsave(&master->lock, flags);
554
555         if (io->oerr_num > 0)
556                 dev_err(dai->dev, "over_run = %d\n", io->oerr_num);
557
558         if (io->uerr_num > 0)
559                 dev_err(dai->dev, "under_run = %d\n", io->uerr_num);
560
561         fsi_stream_handler_call(io, quit, fsi, io);
562         io->substream   = NULL;
563         io->buff_sample_capa    = 0;
564         io->buff_sample_pos     = 0;
565         io->period_samples      = 0;
566         io->period_pos          = 0;
567         io->sample_width        = 0;
568         io->bus_option          = 0;
569         io->oerr_num    = 0;
570         io->uerr_num    = 0;
571         spin_unlock_irqrestore(&master->lock, flags);
572 }
573
574 static int fsi_stream_transfer(struct fsi_stream *io)
575 {
576         struct fsi_priv *fsi = fsi_stream_to_priv(io);
577         if (!fsi)
578                 return -EIO;
579
580         return fsi_stream_handler_call(io, transfer, fsi, io);
581 }
582
583 #define fsi_stream_start(fsi, io)\
584         fsi_stream_handler_call(io, start_stop, fsi, io, 1)
585
586 #define fsi_stream_stop(fsi, io)\
587         fsi_stream_handler_call(io, start_stop, fsi, io, 0)
588
589 static int fsi_stream_probe(struct fsi_priv *fsi, struct device *dev)
590 {
591         struct fsi_stream *io;
592         int ret1, ret2;
593
594         io = &fsi->playback;
595         ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev);
596
597         io = &fsi->capture;
598         ret2 = fsi_stream_handler_call(io, probe, fsi, io, dev);
599
600         if (ret1 < 0)
601                 return ret1;
602         if (ret2 < 0)
603                 return ret2;
604
605         return 0;
606 }
607
608 static int fsi_stream_remove(struct fsi_priv *fsi)
609 {
610         struct fsi_stream *io;
611         int ret1, ret2;
612
613         io = &fsi->playback;
614         ret1 = fsi_stream_handler_call(io, remove, fsi, io);
615
616         io = &fsi->capture;
617         ret2 = fsi_stream_handler_call(io, remove, fsi, io);
618
619         if (ret1 < 0)
620                 return ret1;
621         if (ret2 < 0)
622                 return ret2;
623
624         return 0;
625 }
626
627 /*
628  *      format/bus/dma setting
629  */
630 static void fsi_format_bus_setup(struct fsi_priv *fsi, struct fsi_stream *io,
631                                  u32 bus, struct device *dev)
632 {
633         struct fsi_master *master = fsi_get_master(fsi);
634         int is_play = fsi_stream_is_play(fsi, io);
635         u32 fmt = fsi->fmt;
636
637         if (fsi_version(master) >= 2) {
638                 u32 dma = 0;
639
640                 /*
641                  * FSI2 needs DMA/Bus setting
642                  */
643                 switch (bus) {
644                 case PACKAGE_24BITBUS_FRONT:
645                         fmt |= CR_BWS_24;
646                         dma |= VDMD_FRONT;
647                         dev_dbg(dev, "24bit bus / package in front\n");
648                         break;
649                 case PACKAGE_16BITBUS_STREAM:
650                         fmt |= CR_BWS_16;
651                         dma |= VDMD_STREAM;
652                         dev_dbg(dev, "16bit bus / stream mode\n");
653                         break;
654                 case PACKAGE_24BITBUS_BACK:
655                 default:
656                         fmt |= CR_BWS_24;
657                         dma |= VDMD_BACK;
658                         dev_dbg(dev, "24bit bus / package in back\n");
659                         break;
660                 }
661
662                 if (is_play)
663                         fsi_reg_write(fsi, OUT_DMAC,    dma);
664                 else
665                         fsi_reg_write(fsi, IN_DMAC,     dma);
666         }
667
668         if (is_play)
669                 fsi_reg_write(fsi, DO_FMT, fmt);
670         else
671                 fsi_reg_write(fsi, DI_FMT, fmt);
672 }
673
674 /*
675  *              irq function
676  */
677
678 static void fsi_irq_enable(struct fsi_priv *fsi, struct fsi_stream *io)
679 {
680         u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
681         struct fsi_master *master = fsi_get_master(fsi);
682
683         fsi_core_mask_set(master, imsk,  data, data);
684         fsi_core_mask_set(master, iemsk, data, data);
685 }
686
687 static void fsi_irq_disable(struct fsi_priv *fsi, struct fsi_stream *io)
688 {
689         u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
690         struct fsi_master *master = fsi_get_master(fsi);
691
692         fsi_core_mask_set(master, imsk,  data, 0);
693         fsi_core_mask_set(master, iemsk, data, 0);
694 }
695
696 static u32 fsi_irq_get_status(struct fsi_master *master)
697 {
698         return fsi_core_read(master, int_st);
699 }
700
701 static void fsi_irq_clear_status(struct fsi_priv *fsi)
702 {
703         u32 data = 0;
704         struct fsi_master *master = fsi_get_master(fsi);
705
706         data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->playback));
707         data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->capture));
708
709         /* clear interrupt factor */
710         fsi_core_mask_set(master, int_st, data, 0);
711 }
712
713 /*
714  *              SPDIF master clock function
715  *
716  * These functions are used later FSI2
717  */
718 static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
719 {
720         struct fsi_master *master = fsi_get_master(fsi);
721         u32 mask, val;
722
723         mask = BP | SE;
724         val = enable ? mask : 0;
725
726         fsi_is_port_a(fsi) ?
727                 fsi_core_mask_set(master, a_mclk, mask, val) :
728                 fsi_core_mask_set(master, b_mclk, mask, val);
729 }
730
731 /*
732  *              clock function
733  */
734 static int fsi_clk_init(struct device *dev,
735                         struct fsi_priv *fsi,
736                         int xck,
737                         int ick,
738                         int div,
739                         int (*set_rate)(struct device *dev,
740                                         struct fsi_priv *fsi))
741 {
742         struct fsi_clk *clock = &fsi->clock;
743         int is_porta = fsi_is_port_a(fsi);
744
745         clock->xck      = NULL;
746         clock->ick      = NULL;
747         clock->div      = NULL;
748         clock->rate     = 0;
749         clock->count    = 0;
750         clock->set_rate = set_rate;
751
752         clock->own = devm_clk_get(dev, NULL);
753         if (IS_ERR(clock->own))
754                 return -EINVAL;
755
756         /* external clock */
757         if (xck) {
758                 clock->xck = devm_clk_get(dev, is_porta ? "xcka" : "xckb");
759                 if (IS_ERR(clock->xck)) {
760                         dev_err(dev, "can't get xck clock\n");
761                         return -EINVAL;
762                 }
763                 if (clock->xck == clock->own) {
764                         dev_err(dev, "cpu doesn't support xck clock\n");
765                         return -EINVAL;
766                 }
767         }
768
769         /* FSIACLK/FSIBCLK */
770         if (ick) {
771                 clock->ick = devm_clk_get(dev,  is_porta ? "icka" : "ickb");
772                 if (IS_ERR(clock->ick)) {
773                         dev_err(dev, "can't get ick clock\n");
774                         return -EINVAL;
775                 }
776                 if (clock->ick == clock->own) {
777                         dev_err(dev, "cpu doesn't support ick clock\n");
778                         return -EINVAL;
779                 }
780         }
781
782         /* FSI-DIV */
783         if (div) {
784                 clock->div = devm_clk_get(dev,  is_porta ? "diva" : "divb");
785                 if (IS_ERR(clock->div)) {
786                         dev_err(dev, "can't get div clock\n");
787                         return -EINVAL;
788                 }
789                 if (clock->div == clock->own) {
790                         dev_err(dev, "cpu doens't support div clock\n");
791                         return -EINVAL;
792                 }
793         }
794
795         return 0;
796 }
797
798 #define fsi_clk_invalid(fsi) fsi_clk_valid(fsi, 0)
799 static void fsi_clk_valid(struct fsi_priv *fsi, unsigned long rate)
800 {
801         fsi->clock.rate = rate;
802 }
803
804 static int fsi_clk_is_valid(struct fsi_priv *fsi)
805 {
806         return  fsi->clock.set_rate &&
807                 fsi->clock.rate;
808 }
809
810 static int fsi_clk_enable(struct device *dev,
811                           struct fsi_priv *fsi)
812 {
813         struct fsi_clk *clock = &fsi->clock;
814         int ret = -EINVAL;
815
816         if (!fsi_clk_is_valid(fsi))
817                 return ret;
818
819         if (0 == clock->count) {
820                 ret = clock->set_rate(dev, fsi);
821                 if (ret < 0) {
822                         fsi_clk_invalid(fsi);
823                         return ret;
824                 }
825
826                 if (clock->xck)
827                         clk_enable(clock->xck);
828                 if (clock->ick)
829                         clk_enable(clock->ick);
830                 if (clock->div)
831                         clk_enable(clock->div);
832
833                 clock->count++;
834         }
835
836         return ret;
837 }
838
839 static int fsi_clk_disable(struct device *dev,
840                             struct fsi_priv *fsi)
841 {
842         struct fsi_clk *clock = &fsi->clock;
843
844         if (!fsi_clk_is_valid(fsi))
845                 return -EINVAL;
846
847         if (1 == clock->count--) {
848                 if (clock->xck)
849                         clk_disable(clock->xck);
850                 if (clock->ick)
851                         clk_disable(clock->ick);
852                 if (clock->div)
853                         clk_disable(clock->div);
854         }
855
856         return 0;
857 }
858
859 static int fsi_clk_set_ackbpf(struct device *dev,
860                               struct fsi_priv *fsi,
861                               int ackmd, int bpfmd)
862 {
863         u32 data = 0;
864
865         /* check ackmd/bpfmd relationship */
866         if (bpfmd > ackmd) {
867                 dev_err(dev, "unsupported rate (%d/%d)\n", ackmd, bpfmd);
868                 return -EINVAL;
869         }
870
871         /*  ACKMD */
872         switch (ackmd) {
873         case 512:
874                 data |= (0x0 << 12);
875                 break;
876         case 256:
877                 data |= (0x1 << 12);
878                 break;
879         case 128:
880                 data |= (0x2 << 12);
881                 break;
882         case 64:
883                 data |= (0x3 << 12);
884                 break;
885         case 32:
886                 data |= (0x4 << 12);
887                 break;
888         default:
889                 dev_err(dev, "unsupported ackmd (%d)\n", ackmd);
890                 return -EINVAL;
891         }
892
893         /* BPFMD */
894         switch (bpfmd) {
895         case 32:
896                 data |= (0x0 << 8);
897                 break;
898         case 64:
899                 data |= (0x1 << 8);
900                 break;
901         case 128:
902                 data |= (0x2 << 8);
903                 break;
904         case 256:
905                 data |= (0x3 << 8);
906                 break;
907         case 512:
908                 data |= (0x4 << 8);
909                 break;
910         case 16:
911                 data |= (0x7 << 8);
912                 break;
913         default:
914                 dev_err(dev, "unsupported bpfmd (%d)\n", bpfmd);
915                 return -EINVAL;
916         }
917
918         dev_dbg(dev, "ACKMD/BPFMD = %d/%d\n", ackmd, bpfmd);
919
920         fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
921         udelay(10);
922
923         return 0;
924 }
925
926 static int fsi_clk_set_rate_external(struct device *dev,
927                                      struct fsi_priv *fsi)
928 {
929         struct clk *xck = fsi->clock.xck;
930         struct clk *ick = fsi->clock.ick;
931         unsigned long rate = fsi->clock.rate;
932         unsigned long xrate;
933         int ackmd, bpfmd;
934         int ret = 0;
935
936         /* check clock rate */
937         xrate = clk_get_rate(xck);
938         if (xrate % rate) {
939                 dev_err(dev, "unsupported clock rate\n");
940                 return -EINVAL;
941         }
942
943         clk_set_parent(ick, xck);
944         clk_set_rate(ick, xrate);
945
946         bpfmd = fsi->chan_num * 32;
947         ackmd = xrate / rate;
948
949         dev_dbg(dev, "external/rate = %ld/%ld\n", xrate, rate);
950
951         ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
952         if (ret < 0)
953                 dev_err(dev, "%s failed", __func__);
954
955         return ret;
956 }
957
958 static int fsi_clk_set_rate_cpg(struct device *dev,
959                                 struct fsi_priv *fsi)
960 {
961         struct clk *ick = fsi->clock.ick;
962         struct clk *div = fsi->clock.div;
963         unsigned long rate = fsi->clock.rate;
964         unsigned long target = 0; /* 12288000 or 11289600 */
965         unsigned long actual, cout;
966         unsigned long diff, min;
967         unsigned long best_cout, best_act;
968         int adj;
969         int ackmd, bpfmd;
970         int ret = -EINVAL;
971
972         if (!(12288000 % rate))
973                 target = 12288000;
974         if (!(11289600 % rate))
975                 target = 11289600;
976         if (!target) {
977                 dev_err(dev, "unsupported rate\n");
978                 return ret;
979         }
980
981         bpfmd = fsi->chan_num * 32;
982         ackmd = target / rate;
983         ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
984         if (ret < 0) {
985                 dev_err(dev, "%s failed", __func__);
986                 return ret;
987         }
988
989         /*
990          * The clock flow is
991          *
992          * [CPG] = cout => [FSI_DIV] = audio => [FSI] => [codec]
993          *
994          * But, it needs to find best match of CPG and FSI_DIV
995          * combination, since it is difficult to generate correct
996          * frequency of audio clock from ick clock only.
997          * Because ick is created from its parent clock.
998          *
999          * target       = rate x [512/256/128/64]fs
1000          * cout         = round(target x adjustment)
1001          * actual       = cout / adjustment (by FSI-DIV) ~= target
1002          * audio        = actual
1003          */
1004         min = ~0;
1005         best_cout = 0;
1006         best_act = 0;
1007         for (adj = 1; adj < 0xffff; adj++) {
1008
1009                 cout = target * adj;
1010                 if (cout > 100000000) /* max clock = 100MHz */
1011                         break;
1012
1013                 /* cout/actual audio clock */
1014                 cout    = clk_round_rate(ick, cout);
1015                 actual  = cout / adj;
1016
1017                 /* find best frequency */
1018                 diff = abs(actual - target);
1019                 if (diff < min) {
1020                         min             = diff;
1021                         best_cout       = cout;
1022                         best_act        = actual;
1023                 }
1024         }
1025
1026         ret = clk_set_rate(ick, best_cout);
1027         if (ret < 0) {
1028                 dev_err(dev, "ick clock failed\n");
1029                 return -EIO;
1030         }
1031
1032         ret = clk_set_rate(div, clk_round_rate(div, best_act));
1033         if (ret < 0) {
1034                 dev_err(dev, "div clock failed\n");
1035                 return -EIO;
1036         }
1037
1038         dev_dbg(dev, "ick/div = %ld/%ld\n",
1039                 clk_get_rate(ick), clk_get_rate(div));
1040
1041         return ret;
1042 }
1043
1044 /*
1045  *              pio data transfer handler
1046  */
1047 static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples)
1048 {
1049         int i;
1050
1051         if (fsi_is_enable_stream(fsi)) {
1052                 /*
1053                  * stream mode
1054                  * see
1055                  *      fsi_pio_push_init()
1056                  */
1057                 u32 *buf = (u32 *)_buf;
1058
1059                 for (i = 0; i < samples / 2; i++)
1060                         fsi_reg_write(fsi, DODT, buf[i]);
1061         } else {
1062                 /* normal mode */
1063                 u16 *buf = (u16 *)_buf;
1064
1065                 for (i = 0; i < samples; i++)
1066                         fsi_reg_write(fsi, DODT, ((u32)*(buf + i) << 8));
1067         }
1068 }
1069
1070 static void fsi_pio_pop16(struct fsi_priv *fsi, u8 *_buf, int samples)
1071 {
1072         u16 *buf = (u16 *)_buf;
1073         int i;
1074
1075         for (i = 0; i < samples; i++)
1076                 *(buf + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
1077 }
1078
1079 static void fsi_pio_push32(struct fsi_priv *fsi, u8 *_buf, int samples)
1080 {
1081         u32 *buf = (u32 *)_buf;
1082         int i;
1083
1084         for (i = 0; i < samples; i++)
1085                 fsi_reg_write(fsi, DODT, *(buf + i));
1086 }
1087
1088 static void fsi_pio_pop32(struct fsi_priv *fsi, u8 *_buf, int samples)
1089 {
1090         u32 *buf = (u32 *)_buf;
1091         int i;
1092
1093         for (i = 0; i < samples; i++)
1094                 *(buf + i) = fsi_reg_read(fsi, DIDT);
1095 }
1096
1097 static u8 *fsi_pio_get_area(struct fsi_priv *fsi, struct fsi_stream *io)
1098 {
1099         struct snd_pcm_runtime *runtime = io->substream->runtime;
1100
1101         return runtime->dma_area +
1102                 samples_to_bytes(runtime, io->buff_sample_pos);
1103 }
1104
1105 static int fsi_pio_transfer(struct fsi_priv *fsi, struct fsi_stream *io,
1106                 void (*run16)(struct fsi_priv *fsi, u8 *buf, int samples),
1107                 void (*run32)(struct fsi_priv *fsi, u8 *buf, int samples),
1108                 int samples)
1109 {
1110         struct snd_pcm_runtime *runtime;
1111         struct snd_pcm_substream *substream;
1112         u8 *buf;
1113         int over_period;
1114
1115         if (!fsi_stream_is_working(fsi, io))
1116                 return -EINVAL;
1117
1118         over_period     = 0;
1119         substream       = io->substream;
1120         runtime         = substream->runtime;
1121
1122         /* FSI FIFO has limit.
1123          * So, this driver can not send periods data at a time
1124          */
1125         if (io->buff_sample_pos >=
1126             io->period_samples * (io->period_pos + 1)) {
1127
1128                 over_period = 1;
1129                 io->period_pos = (io->period_pos + 1) % runtime->periods;
1130
1131                 if (0 == io->period_pos)
1132                         io->buff_sample_pos = 0;
1133         }
1134
1135         buf = fsi_pio_get_area(fsi, io);
1136
1137         switch (io->sample_width) {
1138         case 2:
1139                 run16(fsi, buf, samples);
1140                 break;
1141         case 4:
1142                 run32(fsi, buf, samples);
1143                 break;
1144         default:
1145                 return -EINVAL;
1146         }
1147
1148         /* update buff_sample_pos */
1149         io->buff_sample_pos += samples;
1150
1151         if (over_period)
1152                 snd_pcm_period_elapsed(substream);
1153
1154         return 0;
1155 }
1156
1157 static int fsi_pio_pop(struct fsi_priv *fsi, struct fsi_stream *io)
1158 {
1159         int sample_residues;    /* samples in FSI fifo */
1160         int sample_space;       /* ALSA free samples space */
1161         int samples;
1162
1163         sample_residues = fsi_get_current_fifo_samples(fsi, io);
1164         sample_space    = io->buff_sample_capa - io->buff_sample_pos;
1165
1166         samples = min(sample_residues, sample_space);
1167
1168         return fsi_pio_transfer(fsi, io,
1169                                   fsi_pio_pop16,
1170                                   fsi_pio_pop32,
1171                                   samples);
1172 }
1173
1174 static int fsi_pio_push(struct fsi_priv *fsi, struct fsi_stream *io)
1175 {
1176         int sample_residues;    /* ALSA residue samples */
1177         int sample_space;       /* FSI fifo free samples space */
1178         int samples;
1179
1180         sample_residues = io->buff_sample_capa - io->buff_sample_pos;
1181         sample_space    = io->fifo_sample_capa -
1182                 fsi_get_current_fifo_samples(fsi, io);
1183
1184         samples = min(sample_residues, sample_space);
1185
1186         return fsi_pio_transfer(fsi, io,
1187                                   fsi_pio_push16,
1188                                   fsi_pio_push32,
1189                                   samples);
1190 }
1191
1192 static int fsi_pio_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
1193                                int enable)
1194 {
1195         struct fsi_master *master = fsi_get_master(fsi);
1196         u32 clk  = fsi_is_port_a(fsi) ? CRA  : CRB;
1197
1198         if (enable)
1199                 fsi_irq_enable(fsi, io);
1200         else
1201                 fsi_irq_disable(fsi, io);
1202
1203         if (fsi_is_clk_master(fsi))
1204                 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
1205
1206         return 0;
1207 }
1208
1209 static int fsi_pio_push_init(struct fsi_priv *fsi, struct fsi_stream *io)
1210 {
1211         /*
1212          * we can use 16bit stream mode
1213          * when "playback" and "16bit data"
1214          * and platform allows "stream mode"
1215          * see
1216          *      fsi_pio_push16()
1217          */
1218         if (fsi_is_enable_stream(fsi))
1219                 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1220                                  BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);
1221         else
1222                 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1223                                  BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
1224         return 0;
1225 }
1226
1227 static int fsi_pio_pop_init(struct fsi_priv *fsi, struct fsi_stream *io)
1228 {
1229         /*
1230          * always 24bit bus, package back when "capture"
1231          */
1232         io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1233                          BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
1234         return 0;
1235 }
1236
1237 static struct fsi_stream_handler fsi_pio_push_handler = {
1238         .init           = fsi_pio_push_init,
1239         .transfer       = fsi_pio_push,
1240         .start_stop     = fsi_pio_start_stop,
1241 };
1242
1243 static struct fsi_stream_handler fsi_pio_pop_handler = {
1244         .init           = fsi_pio_pop_init,
1245         .transfer       = fsi_pio_pop,
1246         .start_stop     = fsi_pio_start_stop,
1247 };
1248
1249 static irqreturn_t fsi_interrupt(int irq, void *data)
1250 {
1251         struct fsi_master *master = data;
1252         u32 int_st = fsi_irq_get_status(master);
1253
1254         /* clear irq status */
1255         fsi_master_mask_set(master, SOFT_RST, IR, 0);
1256         fsi_master_mask_set(master, SOFT_RST, IR, IR);
1257
1258         if (int_st & AB_IO(1, AO_SHIFT))
1259                 fsi_stream_transfer(&master->fsia.playback);
1260         if (int_st & AB_IO(1, BO_SHIFT))
1261                 fsi_stream_transfer(&master->fsib.playback);
1262         if (int_st & AB_IO(1, AI_SHIFT))
1263                 fsi_stream_transfer(&master->fsia.capture);
1264         if (int_st & AB_IO(1, BI_SHIFT))
1265                 fsi_stream_transfer(&master->fsib.capture);
1266
1267         fsi_count_fifo_err(&master->fsia);
1268         fsi_count_fifo_err(&master->fsib);
1269
1270         fsi_irq_clear_status(&master->fsia);
1271         fsi_irq_clear_status(&master->fsib);
1272
1273         return IRQ_HANDLED;
1274 }
1275
1276 /*
1277  *              dma data transfer handler
1278  */
1279 static int fsi_dma_init(struct fsi_priv *fsi, struct fsi_stream *io)
1280 {
1281         /*
1282          * 24bit data : 24bit bus / package in back
1283          * 16bit data : 16bit bus / stream mode
1284          */
1285         io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1286                          BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);
1287
1288         io->loop_cnt = 2; /* push 1st, 2nd period first, then 3rd, 4th... */
1289         io->additional_pos = 0;
1290
1291         return 0;
1292 }
1293
1294 static dma_addr_t fsi_dma_get_area(struct fsi_stream *io, int additional)
1295 {
1296         struct snd_pcm_runtime *runtime = io->substream->runtime;
1297         int period = io->period_pos + additional;
1298
1299         if (period >= runtime->periods)
1300                 period = 0;
1301
1302         return runtime->dma_addr +
1303                 samples_to_bytes(runtime, period * io->period_samples);
1304 }
1305
1306 static void fsi_dma_complete(void *data)
1307 {
1308         struct fsi_stream *io = (struct fsi_stream *)data;
1309         struct fsi_priv *fsi = fsi_stream_to_priv(io);
1310         struct snd_pcm_runtime *runtime = io->substream->runtime;
1311
1312         io->buff_sample_pos += io->period_samples;
1313         io->period_pos++;
1314
1315         if (io->period_pos >= runtime->periods) {
1316                 io->period_pos = 0;
1317                 io->buff_sample_pos = 0;
1318         }
1319
1320         fsi_count_fifo_err(fsi);
1321         fsi_stream_transfer(io);
1322
1323         snd_pcm_period_elapsed(io->substream);
1324 }
1325
1326 static void fsi_dma_do_work(struct work_struct *work)
1327 {
1328         struct fsi_stream *io = container_of(work, struct fsi_stream, work);
1329         struct fsi_priv *fsi = fsi_stream_to_priv(io);
1330         struct snd_soc_dai *dai;
1331         struct dma_async_tx_descriptor *desc;
1332         struct snd_pcm_runtime *runtime;
1333         enum dma_data_direction dir;
1334         int is_play = fsi_stream_is_play(fsi, io);
1335         int len, i;
1336         dma_addr_t buf;
1337
1338         if (!fsi_stream_is_working(fsi, io))
1339                 return;
1340
1341         dai     = fsi_get_dai(io->substream);
1342         runtime = io->substream->runtime;
1343         dir     = is_play ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
1344         len     = samples_to_bytes(runtime, io->period_samples);
1345
1346         for (i = 0; i < io->loop_cnt; i++) {
1347                 buf     = fsi_dma_get_area(io, io->additional_pos);
1348
1349                 desc = dmaengine_prep_slave_single(io->chan, buf, len, dir,
1350                                         DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1351                 if (!desc) {
1352                         dev_err(dai->dev, "dmaengine_prep_slave_sg() fail\n");
1353                         return;
1354                 }
1355
1356                 desc->callback          = fsi_dma_complete;
1357                 desc->callback_param    = io;
1358
1359                 if (dmaengine_submit(desc) < 0) {
1360                         dev_err(dai->dev, "tx_submit() fail\n");
1361                         return;
1362                 }
1363
1364                 dma_async_issue_pending(io->chan);
1365
1366                 io->additional_pos = 1;
1367         }
1368
1369         io->loop_cnt = 1;
1370
1371         /*
1372          * FIXME
1373          *
1374          * In DMAEngine case, codec and FSI cannot be started simultaneously
1375          * since FSI is using the scheduler work queue.
1376          * Therefore, in capture case, probably FSI FIFO will have got
1377          * overflow error in this point.
1378          * in that case, DMA cannot start transfer until error was cleared.
1379          */
1380         if (!is_play) {
1381                 if (ERR_OVER & fsi_reg_read(fsi, DIFF_ST)) {
1382                         fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
1383                         fsi_reg_write(fsi, DIFF_ST, 0);
1384                 }
1385         }
1386 }
1387
1388 static int fsi_dma_transfer(struct fsi_priv *fsi, struct fsi_stream *io)
1389 {
1390         schedule_work(&io->work);
1391
1392         return 0;
1393 }
1394
1395 static int fsi_dma_push_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
1396                                  int start)
1397 {
1398         struct fsi_master *master = fsi_get_master(fsi);
1399         u32 clk  = fsi_is_port_a(fsi) ? CRA  : CRB;
1400         u32 enable = start ? DMA_ON : 0;
1401
1402         fsi_reg_mask_set(fsi, OUT_DMAC, DMA_ON, enable);
1403
1404         dmaengine_terminate_all(io->chan);
1405
1406         if (fsi_is_clk_master(fsi))
1407                 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
1408
1409         return 0;
1410 }
1411
1412 static int fsi_dma_probe(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev)
1413 {
1414         dma_cap_mask_t mask;
1415         int is_play = fsi_stream_is_play(fsi, io);
1416
1417         dma_cap_zero(mask);
1418         dma_cap_set(DMA_SLAVE, mask);
1419
1420         io->chan = dma_request_slave_channel_compat(mask,
1421                                 shdma_chan_filter, (void *)io->dma_id,
1422                                 dev, is_play ? "tx" : "rx");
1423         if (io->chan) {
1424                 struct dma_slave_config cfg;
1425                 int ret;
1426
1427                 cfg.slave_id    = io->dma_id;
1428                 cfg.dst_addr    = 0; /* use default addr */
1429                 cfg.src_addr    = 0; /* use default addr */
1430                 cfg.direction   = is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
1431
1432                 ret = dmaengine_slave_config(io->chan, &cfg);
1433                 if (ret < 0) {
1434                         dma_release_channel(io->chan);
1435                         io->chan = NULL;
1436                 }
1437         }
1438
1439         if (!io->chan) {
1440
1441                 /* switch to PIO handler */
1442                 if (is_play)
1443                         fsi->playback.handler   = &fsi_pio_push_handler;
1444                 else
1445                         fsi->capture.handler    = &fsi_pio_pop_handler;
1446
1447                 dev_info(dev, "switch handler (dma => pio)\n");
1448
1449                 /* probe again */
1450                 return fsi_stream_probe(fsi, dev);
1451         }
1452
1453         INIT_WORK(&io->work, fsi_dma_do_work);
1454
1455         return 0;
1456 }
1457
1458 static int fsi_dma_remove(struct fsi_priv *fsi, struct fsi_stream *io)
1459 {
1460         cancel_work_sync(&io->work);
1461
1462         fsi_stream_stop(fsi, io);
1463
1464         if (io->chan)
1465                 dma_release_channel(io->chan);
1466
1467         io->chan = NULL;
1468         return 0;
1469 }
1470
1471 static struct fsi_stream_handler fsi_dma_push_handler = {
1472         .init           = fsi_dma_init,
1473         .probe          = fsi_dma_probe,
1474         .transfer       = fsi_dma_transfer,
1475         .remove         = fsi_dma_remove,
1476         .start_stop     = fsi_dma_push_start_stop,
1477 };
1478
1479 /*
1480  *              dai ops
1481  */
1482 static void fsi_fifo_init(struct fsi_priv *fsi,
1483                           struct fsi_stream *io,
1484                           struct device *dev)
1485 {
1486         struct fsi_master *master = fsi_get_master(fsi);
1487         int is_play = fsi_stream_is_play(fsi, io);
1488         u32 shift, i;
1489         int frame_capa;
1490
1491         /* get on-chip RAM capacity */
1492         shift = fsi_master_read(master, FIFO_SZ);
1493         shift >>= fsi_get_port_shift(fsi, io);
1494         shift &= FIFO_SZ_MASK;
1495         frame_capa = 256 << shift;
1496         dev_dbg(dev, "fifo = %d words\n", frame_capa);
1497
1498         /*
1499          * The maximum number of sample data varies depending
1500          * on the number of channels selected for the format.
1501          *
1502          * FIFOs are used in 4-channel units in 3-channel mode
1503          * and in 8-channel units in 5- to 7-channel mode
1504          * meaning that more FIFOs than the required size of DPRAM
1505          * are used.
1506          *
1507          * ex) if 256 words of DP-RAM is connected
1508          * 1 channel:  256 (256 x 1 = 256)
1509          * 2 channels: 128 (128 x 2 = 256)
1510          * 3 channels:  64 ( 64 x 3 = 192)
1511          * 4 channels:  64 ( 64 x 4 = 256)
1512          * 5 channels:  32 ( 32 x 5 = 160)
1513          * 6 channels:  32 ( 32 x 6 = 192)
1514          * 7 channels:  32 ( 32 x 7 = 224)
1515          * 8 channels:  32 ( 32 x 8 = 256)
1516          */
1517         for (i = 1; i < fsi->chan_num; i <<= 1)
1518                 frame_capa >>= 1;
1519         dev_dbg(dev, "%d channel %d store\n",
1520                 fsi->chan_num, frame_capa);
1521
1522         io->fifo_sample_capa = fsi_frame2sample(fsi, frame_capa);
1523
1524         /*
1525          * set interrupt generation factor
1526          * clear FIFO
1527          */
1528         if (is_play) {
1529                 fsi_reg_write(fsi,      DOFF_CTL, IRQ_HALF);
1530                 fsi_reg_mask_set(fsi,   DOFF_CTL, FIFO_CLR, FIFO_CLR);
1531         } else {
1532                 fsi_reg_write(fsi,      DIFF_CTL, IRQ_HALF);
1533                 fsi_reg_mask_set(fsi,   DIFF_CTL, FIFO_CLR, FIFO_CLR);
1534         }
1535 }
1536
1537 static int fsi_hw_startup(struct fsi_priv *fsi,
1538                           struct fsi_stream *io,
1539                           struct device *dev)
1540 {
1541         u32 data = 0;
1542
1543         /* clock setting */
1544         if (fsi_is_clk_master(fsi))
1545                 data = DIMD | DOMD;
1546
1547         fsi_reg_mask_set(fsi, CKG1, (DIMD | DOMD), data);
1548
1549         /* clock inversion (CKG2) */
1550         data = 0;
1551         if (fsi->bit_clk_inv)
1552                 data |= (1 << 0);
1553         if (fsi->lr_clk_inv)
1554                 data |= (1 << 4);
1555         if (fsi_is_clk_master(fsi))
1556                 data <<= 8;
1557         fsi_reg_write(fsi, CKG2, data);
1558
1559         /* spdif ? */
1560         if (fsi_is_spdif(fsi)) {
1561                 fsi_spdif_clk_ctrl(fsi, 1);
1562                 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
1563         }
1564
1565         /*
1566          * get bus settings
1567          */
1568         data = 0;
1569         switch (io->sample_width) {
1570         case 2:
1571                 data = BUSOP_GET(16, io->bus_option);
1572                 break;
1573         case 4:
1574                 data = BUSOP_GET(24, io->bus_option);
1575                 break;
1576         }
1577         fsi_format_bus_setup(fsi, io, data, dev);
1578
1579         /* irq clear */
1580         fsi_irq_disable(fsi, io);
1581         fsi_irq_clear_status(fsi);
1582
1583         /* fifo init */
1584         fsi_fifo_init(fsi, io, dev);
1585
1586         /* start master clock */
1587         if (fsi_is_clk_master(fsi))
1588                 return fsi_clk_enable(dev, fsi);
1589
1590         return 0;
1591 }
1592
1593 static int fsi_hw_shutdown(struct fsi_priv *fsi,
1594                             struct device *dev)
1595 {
1596         /* stop master clock */
1597         if (fsi_is_clk_master(fsi))
1598                 return fsi_clk_disable(dev, fsi);
1599
1600         return 0;
1601 }
1602
1603 static int fsi_dai_startup(struct snd_pcm_substream *substream,
1604                            struct snd_soc_dai *dai)
1605 {
1606         struct fsi_priv *fsi = fsi_get_priv(substream);
1607
1608         fsi_clk_invalid(fsi);
1609
1610         return 0;
1611 }
1612
1613 static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
1614                              struct snd_soc_dai *dai)
1615 {
1616         struct fsi_priv *fsi = fsi_get_priv(substream);
1617
1618         fsi_clk_invalid(fsi);
1619 }
1620
1621 static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
1622                            struct snd_soc_dai *dai)
1623 {
1624         struct fsi_priv *fsi = fsi_get_priv(substream);
1625         struct fsi_stream *io = fsi_stream_get(fsi, substream);
1626         int ret = 0;
1627
1628         switch (cmd) {
1629         case SNDRV_PCM_TRIGGER_START:
1630                 fsi_stream_init(fsi, io, substream);
1631                 if (!ret)
1632                         ret = fsi_hw_startup(fsi, io, dai->dev);
1633                 if (!ret)
1634                         ret = fsi_stream_transfer(io);
1635                 if (!ret)
1636                         fsi_stream_start(fsi, io);
1637                 break;
1638         case SNDRV_PCM_TRIGGER_STOP:
1639                 if (!ret)
1640                         ret = fsi_hw_shutdown(fsi, dai->dev);
1641                 fsi_stream_stop(fsi, io);
1642                 fsi_stream_quit(fsi, io);
1643                 break;
1644         }
1645
1646         return ret;
1647 }
1648
1649 static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt)
1650 {
1651         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1652         case SND_SOC_DAIFMT_I2S:
1653                 fsi->fmt = CR_I2S;
1654                 fsi->chan_num = 2;
1655                 break;
1656         case SND_SOC_DAIFMT_LEFT_J:
1657                 fsi->fmt = CR_PCM;
1658                 fsi->chan_num = 2;
1659                 break;
1660         default:
1661                 return -EINVAL;
1662         }
1663
1664         return 0;
1665 }
1666
1667 static int fsi_set_fmt_spdif(struct fsi_priv *fsi)
1668 {
1669         struct fsi_master *master = fsi_get_master(fsi);
1670
1671         if (fsi_version(master) < 2)
1672                 return -EINVAL;
1673
1674         fsi->fmt = CR_DTMD_SPDIF_PCM | CR_PCM;
1675         fsi->chan_num = 2;
1676
1677         return 0;
1678 }
1679
1680 static int fsi_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
1681 {
1682         struct fsi_priv *fsi = fsi_get_priv_frm_dai(dai);
1683         int ret;
1684
1685         /* set master/slave audio interface */
1686         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1687         case SND_SOC_DAIFMT_CBM_CFM:
1688                 break;
1689         case SND_SOC_DAIFMT_CBS_CFS:
1690                 fsi->clk_master = 1; /* codec is slave, cpu is master */
1691                 break;
1692         default:
1693                 return -EINVAL;
1694         }
1695
1696         /* set clock inversion */
1697         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1698         case SND_SOC_DAIFMT_NB_IF:
1699                 fsi->bit_clk_inv = 0;
1700                 fsi->lr_clk_inv = 1;
1701                 break;
1702         case SND_SOC_DAIFMT_IB_NF:
1703                 fsi->bit_clk_inv = 1;
1704                 fsi->lr_clk_inv = 0;
1705                 break;
1706         case SND_SOC_DAIFMT_IB_IF:
1707                 fsi->bit_clk_inv = 1;
1708                 fsi->lr_clk_inv = 1;
1709                 break;
1710         case SND_SOC_DAIFMT_NB_NF:
1711         default:
1712                 fsi->bit_clk_inv = 0;
1713                 fsi->lr_clk_inv = 0;
1714                 break;
1715         }
1716
1717         if (fsi_is_clk_master(fsi)) {
1718                 if (fsi->clk_cpg)
1719                         fsi_clk_init(dai->dev, fsi, 0, 1, 1,
1720                                      fsi_clk_set_rate_cpg);
1721                 else
1722                         fsi_clk_init(dai->dev, fsi, 1, 1, 0,
1723                                      fsi_clk_set_rate_external);
1724         }
1725
1726         /* set format */
1727         if (fsi_is_spdif(fsi))
1728                 ret = fsi_set_fmt_spdif(fsi);
1729         else
1730                 ret = fsi_set_fmt_dai(fsi, fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1731
1732         return ret;
1733 }
1734
1735 static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
1736                              struct snd_pcm_hw_params *params,
1737                              struct snd_soc_dai *dai)
1738 {
1739         struct fsi_priv *fsi = fsi_get_priv(substream);
1740
1741         if (fsi_is_clk_master(fsi))
1742                 fsi_clk_valid(fsi, params_rate(params));
1743
1744         return 0;
1745 }
1746
1747 static const struct snd_soc_dai_ops fsi_dai_ops = {
1748         .startup        = fsi_dai_startup,
1749         .shutdown       = fsi_dai_shutdown,
1750         .trigger        = fsi_dai_trigger,
1751         .set_fmt        = fsi_dai_set_fmt,
1752         .hw_params      = fsi_dai_hw_params,
1753 };
1754
1755 /*
1756  *              pcm ops
1757  */
1758
1759 static struct snd_pcm_hardware fsi_pcm_hardware = {
1760         .info =         SNDRV_PCM_INFO_INTERLEAVED      |
1761                         SNDRV_PCM_INFO_MMAP             |
1762                         SNDRV_PCM_INFO_MMAP_VALID,
1763         .buffer_bytes_max       = 64 * 1024,
1764         .period_bytes_min       = 32,
1765         .period_bytes_max       = 8192,
1766         .periods_min            = 1,
1767         .periods_max            = 32,
1768         .fifo_size              = 256,
1769 };
1770
1771 static int fsi_pcm_open(struct snd_pcm_substream *substream)
1772 {
1773         struct snd_pcm_runtime *runtime = substream->runtime;
1774         int ret = 0;
1775
1776         snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
1777
1778         ret = snd_pcm_hw_constraint_integer(runtime,
1779                                             SNDRV_PCM_HW_PARAM_PERIODS);
1780
1781         return ret;
1782 }
1783
1784 static int fsi_hw_params(struct snd_pcm_substream *substream,
1785                          struct snd_pcm_hw_params *hw_params)
1786 {
1787         return snd_pcm_lib_malloc_pages(substream,
1788                                         params_buffer_bytes(hw_params));
1789 }
1790
1791 static int fsi_hw_free(struct snd_pcm_substream *substream)
1792 {
1793         return snd_pcm_lib_free_pages(substream);
1794 }
1795
1796 static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1797 {
1798         struct fsi_priv *fsi = fsi_get_priv(substream);
1799         struct fsi_stream *io = fsi_stream_get(fsi, substream);
1800
1801         return fsi_sample2frame(fsi, io->buff_sample_pos);
1802 }
1803
1804 static struct snd_pcm_ops fsi_pcm_ops = {
1805         .open           = fsi_pcm_open,
1806         .ioctl          = snd_pcm_lib_ioctl,
1807         .hw_params      = fsi_hw_params,
1808         .hw_free        = fsi_hw_free,
1809         .pointer        = fsi_pointer,
1810 };
1811
1812 /*
1813  *              snd_soc_platform
1814  */
1815
1816 #define PREALLOC_BUFFER         (32 * 1024)
1817 #define PREALLOC_BUFFER_MAX     (32 * 1024)
1818
1819 static void fsi_pcm_free(struct snd_pcm *pcm)
1820 {
1821         snd_pcm_lib_preallocate_free_for_all(pcm);
1822 }
1823
1824 static int fsi_pcm_new(struct snd_soc_pcm_runtime *rtd)
1825 {
1826         return snd_pcm_lib_preallocate_pages_for_all(
1827                 rtd->pcm,
1828                 SNDRV_DMA_TYPE_DEV,
1829                 rtd->card->snd_card->dev,
1830                 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1831 }
1832
1833 /*
1834  *              alsa struct
1835  */
1836
1837 static struct snd_soc_dai_driver fsi_soc_dai[] = {
1838         {
1839                 .name                   = "fsia-dai",
1840                 .playback = {
1841                         .rates          = FSI_RATES,
1842                         .formats        = FSI_FMTS,
1843                         .channels_min   = 2,
1844                         .channels_max   = 2,
1845                 },
1846                 .capture = {
1847                         .rates          = FSI_RATES,
1848                         .formats        = FSI_FMTS,
1849                         .channels_min   = 2,
1850                         .channels_max   = 2,
1851                 },
1852                 .ops = &fsi_dai_ops,
1853         },
1854         {
1855                 .name                   = "fsib-dai",
1856                 .playback = {
1857                         .rates          = FSI_RATES,
1858                         .formats        = FSI_FMTS,
1859                         .channels_min   = 2,
1860                         .channels_max   = 2,
1861                 },
1862                 .capture = {
1863                         .rates          = FSI_RATES,
1864                         .formats        = FSI_FMTS,
1865                         .channels_min   = 2,
1866                         .channels_max   = 2,
1867                 },
1868                 .ops = &fsi_dai_ops,
1869         },
1870 };
1871
1872 static struct snd_soc_platform_driver fsi_soc_platform = {
1873         .ops            = &fsi_pcm_ops,
1874         .pcm_new        = fsi_pcm_new,
1875         .pcm_free       = fsi_pcm_free,
1876 };
1877
1878 static const struct snd_soc_component_driver fsi_soc_component = {
1879         .name           = "fsi",
1880 };
1881
1882 /*
1883  *              platform function
1884  */
1885 static void fsi_of_parse(char *name,
1886                          struct device_node *np,
1887                          struct sh_fsi_port_info *info,
1888                          struct device *dev)
1889 {
1890         int i;
1891         char prop[128];
1892         unsigned long flags = 0;
1893         struct {
1894                 char *name;
1895                 unsigned int val;
1896         } of_parse_property[] = {
1897                 { "spdif-connection",           SH_FSI_FMT_SPDIF },
1898                 { "stream-mode-support",        SH_FSI_ENABLE_STREAM_MODE },
1899                 { "use-internal-clock",         SH_FSI_CLK_CPG },
1900         };
1901
1902         for (i = 0; i < ARRAY_SIZE(of_parse_property); i++) {
1903                 sprintf(prop, "%s,%s", name, of_parse_property[i].name);
1904                 if (of_get_property(np, prop, NULL))
1905                         flags |= of_parse_property[i].val;
1906         }
1907         info->flags = flags;
1908
1909         dev_dbg(dev, "%s flags : %lx\n", name, info->flags);
1910 }
1911
1912 static void fsi_port_info_init(struct fsi_priv *fsi,
1913                                struct sh_fsi_port_info *info)
1914 {
1915         if (info->flags & SH_FSI_FMT_SPDIF)
1916                 fsi->spdif = 1;
1917
1918         if (info->flags & SH_FSI_CLK_CPG)
1919                 fsi->clk_cpg = 1;
1920
1921         if (info->flags & SH_FSI_ENABLE_STREAM_MODE)
1922                 fsi->enable_stream = 1;
1923 }
1924
1925 static void fsi_handler_init(struct fsi_priv *fsi,
1926                              struct sh_fsi_port_info *info)
1927 {
1928         fsi->playback.handler   = &fsi_pio_push_handler; /* default PIO */
1929         fsi->playback.priv      = fsi;
1930         fsi->capture.handler    = &fsi_pio_pop_handler;  /* default PIO */
1931         fsi->capture.priv       = fsi;
1932
1933         if (info->tx_id) {
1934                 fsi->playback.dma_id  = info->tx_id;
1935                 fsi->playback.handler = &fsi_dma_push_handler;
1936         }
1937 }
1938
1939 static struct of_device_id fsi_of_match[];
1940 static int fsi_probe(struct platform_device *pdev)
1941 {
1942         struct fsi_master *master;
1943         struct device_node *np = pdev->dev.of_node;
1944         struct sh_fsi_platform_info info;
1945         const struct fsi_core *core;
1946         struct fsi_priv *fsi;
1947         struct resource *res;
1948         unsigned int irq;
1949         int ret;
1950
1951         memset(&info, 0, sizeof(info));
1952
1953         core = NULL;
1954         if (np) {
1955                 const struct of_device_id *of_id;
1956
1957                 of_id = of_match_device(fsi_of_match, &pdev->dev);
1958                 if (of_id) {
1959                         core = of_id->data;
1960                         fsi_of_parse("fsia", np, &info.port_a, &pdev->dev);
1961                         fsi_of_parse("fsib", np, &info.port_b, &pdev->dev);
1962                 }
1963         } else {
1964                 const struct platform_device_id *id_entry = pdev->id_entry;
1965                 if (id_entry)
1966                         core = (struct fsi_core *)id_entry->driver_data;
1967
1968                 if (pdev->dev.platform_data)
1969                         memcpy(&info, pdev->dev.platform_data, sizeof(info));
1970         }
1971
1972         if (!core) {
1973                 dev_err(&pdev->dev, "unknown fsi device\n");
1974                 return -ENODEV;
1975         }
1976
1977         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1978         irq = platform_get_irq(pdev, 0);
1979         if (!res || (int)irq <= 0) {
1980                 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1981                 return -ENODEV;
1982         }
1983
1984         master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL);
1985         if (!master) {
1986                 dev_err(&pdev->dev, "Could not allocate master\n");
1987                 return -ENOMEM;
1988         }
1989
1990         master->base = devm_ioremap_nocache(&pdev->dev,
1991                                             res->start, resource_size(res));
1992         if (!master->base) {
1993                 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1994                 return -ENXIO;
1995         }
1996
1997         /* master setting */
1998         master->core            = core;
1999         spin_lock_init(&master->lock);
2000
2001         /* FSI A setting */
2002         fsi             = &master->fsia;
2003         fsi->base       = master->base;
2004         fsi->master     = master;
2005         fsi_port_info_init(fsi, &info.port_a);
2006         fsi_handler_init(fsi, &info.port_a);
2007         ret = fsi_stream_probe(fsi, &pdev->dev);
2008         if (ret < 0) {
2009                 dev_err(&pdev->dev, "FSIA stream probe failed\n");
2010                 return ret;
2011         }
2012
2013         /* FSI B setting */
2014         fsi             = &master->fsib;
2015         fsi->base       = master->base + 0x40;
2016         fsi->master     = master;
2017         fsi_port_info_init(fsi, &info.port_b);
2018         fsi_handler_init(fsi, &info.port_b);
2019         ret = fsi_stream_probe(fsi, &pdev->dev);
2020         if (ret < 0) {
2021                 dev_err(&pdev->dev, "FSIB stream probe failed\n");
2022                 goto exit_fsia;
2023         }
2024
2025         pm_runtime_enable(&pdev->dev);
2026         dev_set_drvdata(&pdev->dev, master);
2027
2028         ret = devm_request_irq(&pdev->dev, irq, &fsi_interrupt, 0,
2029                                dev_name(&pdev->dev), master);
2030         if (ret) {
2031                 dev_err(&pdev->dev, "irq request err\n");
2032                 goto exit_fsib;
2033         }
2034
2035         ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
2036         if (ret < 0) {
2037                 dev_err(&pdev->dev, "cannot snd soc register\n");
2038                 goto exit_fsib;
2039         }
2040
2041         ret = snd_soc_register_component(&pdev->dev, &fsi_soc_component,
2042                                     fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
2043         if (ret < 0) {
2044                 dev_err(&pdev->dev, "cannot snd component register\n");
2045                 goto exit_snd_soc;
2046         }
2047
2048         return ret;
2049
2050 exit_snd_soc:
2051         snd_soc_unregister_platform(&pdev->dev);
2052 exit_fsib:
2053         pm_runtime_disable(&pdev->dev);
2054         fsi_stream_remove(&master->fsib);
2055 exit_fsia:
2056         fsi_stream_remove(&master->fsia);
2057
2058         return ret;
2059 }
2060
2061 static int fsi_remove(struct platform_device *pdev)
2062 {
2063         struct fsi_master *master;
2064
2065         master = dev_get_drvdata(&pdev->dev);
2066
2067         pm_runtime_disable(&pdev->dev);
2068
2069         snd_soc_unregister_component(&pdev->dev);
2070         snd_soc_unregister_platform(&pdev->dev);
2071
2072         fsi_stream_remove(&master->fsia);
2073         fsi_stream_remove(&master->fsib);
2074
2075         return 0;
2076 }
2077
2078 static void __fsi_suspend(struct fsi_priv *fsi,
2079                           struct fsi_stream *io,
2080                           struct device *dev)
2081 {
2082         if (!fsi_stream_is_working(fsi, io))
2083                 return;
2084
2085         fsi_stream_stop(fsi, io);
2086         fsi_hw_shutdown(fsi, dev);
2087 }
2088
2089 static void __fsi_resume(struct fsi_priv *fsi,
2090                          struct fsi_stream *io,
2091                          struct device *dev)
2092 {
2093         if (!fsi_stream_is_working(fsi, io))
2094                 return;
2095
2096         fsi_hw_startup(fsi, io, dev);
2097         fsi_stream_start(fsi, io);
2098 }
2099
2100 static int fsi_suspend(struct device *dev)
2101 {
2102         struct fsi_master *master = dev_get_drvdata(dev);
2103         struct fsi_priv *fsia = &master->fsia;
2104         struct fsi_priv *fsib = &master->fsib;
2105
2106         __fsi_suspend(fsia, &fsia->playback, dev);
2107         __fsi_suspend(fsia, &fsia->capture, dev);
2108
2109         __fsi_suspend(fsib, &fsib->playback, dev);
2110         __fsi_suspend(fsib, &fsib->capture, dev);
2111
2112         return 0;
2113 }
2114
2115 static int fsi_resume(struct device *dev)
2116 {
2117         struct fsi_master *master = dev_get_drvdata(dev);
2118         struct fsi_priv *fsia = &master->fsia;
2119         struct fsi_priv *fsib = &master->fsib;
2120
2121         __fsi_resume(fsia, &fsia->playback, dev);
2122         __fsi_resume(fsia, &fsia->capture, dev);
2123
2124         __fsi_resume(fsib, &fsib->playback, dev);
2125         __fsi_resume(fsib, &fsib->capture, dev);
2126
2127         return 0;
2128 }
2129
2130 static struct dev_pm_ops fsi_pm_ops = {
2131         .suspend                = fsi_suspend,
2132         .resume                 = fsi_resume,
2133 };
2134
2135 static struct fsi_core fsi1_core = {
2136         .ver    = 1,
2137
2138         /* Interrupt */
2139         .int_st = INT_ST,
2140         .iemsk  = IEMSK,
2141         .imsk   = IMSK,
2142 };
2143
2144 static struct fsi_core fsi2_core = {
2145         .ver    = 2,
2146
2147         /* Interrupt */
2148         .int_st = CPU_INT_ST,
2149         .iemsk  = CPU_IEMSK,
2150         .imsk   = CPU_IMSK,
2151         .a_mclk = A_MST_CTLR,
2152         .b_mclk = B_MST_CTLR,
2153 };
2154
2155 static struct of_device_id fsi_of_match[] = {
2156         { .compatible = "renesas,sh_fsi",       .data = &fsi1_core},
2157         { .compatible = "renesas,sh_fsi2",      .data = &fsi2_core},
2158         {},
2159 };
2160 MODULE_DEVICE_TABLE(of, fsi_of_match);
2161
2162 static struct platform_device_id fsi_id_table[] = {
2163         { "sh_fsi",     (kernel_ulong_t)&fsi1_core },
2164         { "sh_fsi2",    (kernel_ulong_t)&fsi2_core },
2165         {},
2166 };
2167 MODULE_DEVICE_TABLE(platform, fsi_id_table);
2168
2169 static struct platform_driver fsi_driver = {
2170         .driver         = {
2171                 .name   = "fsi-pcm-audio",
2172                 .pm     = &fsi_pm_ops,
2173                 .of_match_table = fsi_of_match,
2174         },
2175         .probe          = fsi_probe,
2176         .remove         = fsi_remove,
2177         .id_table       = fsi_id_table,
2178 };
2179
2180 module_platform_driver(fsi_driver);
2181
2182 MODULE_LICENSE("GPL");
2183 MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
2184 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
2185 MODULE_ALIAS("platform:fsi-pcm-audio");