2 * Fifo-attached Serial Interface (FSI) support for SH7724
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
8 * Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
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.
15 #include <linux/delay.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/pm_runtime.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>
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
47 #define MST_CLK_RST 0x0210
48 #define MST_SOFT_RST 0x0214
49 #define MST_FIFO_SZ 0x0218
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
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 */
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 */
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)
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) */
86 #define DMA_ON (0x1 << 0)
90 #define IRQ_HALF 0x00100000
91 #define FIFO_CLR 0x00000001
94 #define ERR_OVER 0x00000010
95 #define ERR_UNDER 0x00000001
96 #define ST_ERR (ERR_OVER | ERR_UNDER)
99 #define ACKMD_MASK 0x00007000
100 #define BPFMD_MASK 0x00000700
101 #define DIMD (1 << 4)
102 #define DOMD (1 << 0)
105 #define BP (1 << 4) /* Fix the signal of Biphase output */
106 #define SE (1 << 0) /* Fix the master clock */
112 /* IO SHIFT / MACRO */
117 #define AB_IO(param, shift) (param << shift)
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 */
126 #define DMMD (1 << 4) /* SPDIF output timing 0: Biphase only */
127 /* 1: Biphase and serial */
130 #define FIFO_SZ_MASK 0x7
132 #define FSI_RATES SNDRV_PCM_RATE_8000_96000
134 #define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
141 * A : sample widtht 16bit setting
142 * B : sample widtht 24bit setting
145 #define SHIFT_16DATA 0
146 #define SHIFT_24DATA 4
148 #define PACKAGE_24BITBUS_BACK 0
149 #define PACKAGE_24BITBUS_FRONT 1
150 #define PACKAGE_16BITBUS_STREAM 2
152 #define BUSOP_SET(s, a) ((a) << SHIFT_ ## s ## DATA)
153 #define BUSOP_GET(s, a) (((a) >> SHIFT_ ## s ## DATA) & 0xF)
156 * FSI driver use below type name for variable
158 * xxx_num : number of data
159 * xxx_pos : position of data
160 * xxx_capa : capacity of data
164 * period/frame/sample image
168 * period pos period pos
170 * |<-------------------- period--------------------->|
171 * ==|============================================ ... =|==
173 * ||<----- frame ----->|<------ frame ----->| ... |
174 * |+--------------------+--------------------+- ... |
175 * ||[ sample ][ sample ]|[ sample ][ sample ]| ... |
176 * |+--------------------+--------------------+- ... |
177 * ==|============================================ ... =|==
195 * FSIxCLK [CPG] (ick) -------> |
196 * |-> FSI_DIV (div)-> FSI2
197 * FSIxCK [external] (xck) ---> |
204 struct fsi_stream_handler
;
208 * these are initialized by fsi_stream_init()
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 */
226 * thse are initialized by fsi_handler_init()
228 struct fsi_stream_handler
*handler
;
229 struct fsi_priv
*priv
;
232 * these are for DMAEngine
234 struct dma_chan
*chan
;
239 /* see [FSI clock] */
244 int (*set_rate
)(struct device
*dev
,
245 struct fsi_priv
*fsi
);
254 struct fsi_master
*master
;
256 struct fsi_stream playback
;
257 struct fsi_stream capture
;
259 struct fsi_clk clock
;
264 unsigned int clk_master
:1;
265 unsigned int clk_cpg
:1;
266 unsigned int spdif
:1;
267 unsigned int enable_stream
:1;
268 unsigned int bit_clk_inv
:1;
269 unsigned int lr_clk_inv
:1;
272 struct fsi_stream_handler
{
273 int (*init
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
);
274 int (*quit
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
);
275 int (*probe
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
, struct device
*dev
);
276 int (*transfer
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
);
277 int (*remove
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
);
278 int (*start_stop
)(struct fsi_priv
*fsi
, struct fsi_stream
*io
,
281 #define fsi_stream_handler_call(io, func, args...) \
283 !((io)->handler->func) ? 0 : \
284 (io)->handler->func(args))
298 struct fsi_priv fsia
;
299 struct fsi_priv fsib
;
300 const struct fsi_core
*core
;
304 static inline int fsi_stream_is_play(struct fsi_priv
*fsi
,
305 struct fsi_stream
*io
)
307 return &fsi
->playback
== io
;
312 * basic read write function
315 static void __fsi_reg_write(u32 __iomem
*reg
, u32 data
)
317 /* valid data area is 24bit */
320 __raw_writel(data
, reg
);
323 static u32
__fsi_reg_read(u32 __iomem
*reg
)
325 return __raw_readl(reg
);
328 static void __fsi_reg_mask_set(u32 __iomem
*reg
, u32 mask
, u32 data
)
330 u32 val
= __fsi_reg_read(reg
);
335 __fsi_reg_write(reg
, val
);
338 #define fsi_reg_write(p, r, d)\
339 __fsi_reg_write((p->base + REG_##r), d)
341 #define fsi_reg_read(p, r)\
342 __fsi_reg_read((p->base + REG_##r))
344 #define fsi_reg_mask_set(p, r, m, d)\
345 __fsi_reg_mask_set((p->base + REG_##r), m, d)
347 #define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
348 #define fsi_core_read(p, r) _fsi_master_read(p, p->core->r)
349 static u32
_fsi_master_read(struct fsi_master
*master
, u32 reg
)
354 spin_lock_irqsave(&master
->lock
, flags
);
355 ret
= __fsi_reg_read(master
->base
+ reg
);
356 spin_unlock_irqrestore(&master
->lock
, flags
);
361 #define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
362 #define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d)
363 static void _fsi_master_mask_set(struct fsi_master
*master
,
364 u32 reg
, u32 mask
, u32 data
)
368 spin_lock_irqsave(&master
->lock
, flags
);
369 __fsi_reg_mask_set(master
->base
+ reg
, mask
, data
);
370 spin_unlock_irqrestore(&master
->lock
, flags
);
376 static int fsi_version(struct fsi_master
*master
)
378 return master
->core
->ver
;
381 static struct fsi_master
*fsi_get_master(struct fsi_priv
*fsi
)
386 static int fsi_is_clk_master(struct fsi_priv
*fsi
)
388 return fsi
->clk_master
;
391 static int fsi_is_port_a(struct fsi_priv
*fsi
)
393 return fsi
->master
->base
== fsi
->base
;
396 static int fsi_is_spdif(struct fsi_priv
*fsi
)
401 static int fsi_is_enable_stream(struct fsi_priv
*fsi
)
403 return fsi
->enable_stream
;
406 static int fsi_is_play(struct snd_pcm_substream
*substream
)
408 return substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
411 static struct snd_soc_dai
*fsi_get_dai(struct snd_pcm_substream
*substream
)
413 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
418 static struct fsi_priv
*fsi_get_priv_frm_dai(struct snd_soc_dai
*dai
)
420 struct fsi_master
*master
= snd_soc_dai_get_drvdata(dai
);
423 return &master
->fsia
;
425 return &master
->fsib
;
428 static struct fsi_priv
*fsi_get_priv(struct snd_pcm_substream
*substream
)
430 return fsi_get_priv_frm_dai(fsi_get_dai(substream
));
433 static u32
fsi_get_port_shift(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
435 int is_play
= fsi_stream_is_play(fsi
, io
);
436 int is_porta
= fsi_is_port_a(fsi
);
440 shift
= is_play
? AO_SHIFT
: AI_SHIFT
;
442 shift
= is_play
? BO_SHIFT
: BI_SHIFT
;
447 static int fsi_frame2sample(struct fsi_priv
*fsi
, int frames
)
449 return frames
* fsi
->chan_num
;
452 static int fsi_sample2frame(struct fsi_priv
*fsi
, int samples
)
454 return samples
/ fsi
->chan_num
;
457 static int fsi_get_current_fifo_samples(struct fsi_priv
*fsi
,
458 struct fsi_stream
*io
)
460 int is_play
= fsi_stream_is_play(fsi
, io
);
465 fsi_reg_read(fsi
, DOFF_ST
) :
466 fsi_reg_read(fsi
, DIFF_ST
);
468 frames
= 0x1ff & (status
>> 8);
470 return fsi_frame2sample(fsi
, frames
);
473 static void fsi_count_fifo_err(struct fsi_priv
*fsi
)
475 u32 ostatus
= fsi_reg_read(fsi
, DOFF_ST
);
476 u32 istatus
= fsi_reg_read(fsi
, DIFF_ST
);
478 if (ostatus
& ERR_OVER
)
479 fsi
->playback
.oerr_num
++;
481 if (ostatus
& ERR_UNDER
)
482 fsi
->playback
.uerr_num
++;
484 if (istatus
& ERR_OVER
)
485 fsi
->capture
.oerr_num
++;
487 if (istatus
& ERR_UNDER
)
488 fsi
->capture
.uerr_num
++;
490 fsi_reg_write(fsi
, DOFF_ST
, 0);
491 fsi_reg_write(fsi
, DIFF_ST
, 0);
495 * fsi_stream_xx() function
497 static inline struct fsi_stream
*fsi_stream_get(struct fsi_priv
*fsi
,
498 struct snd_pcm_substream
*substream
)
500 return fsi_is_play(substream
) ? &fsi
->playback
: &fsi
->capture
;
503 static int fsi_stream_is_working(struct fsi_priv
*fsi
,
504 struct fsi_stream
*io
)
506 struct fsi_master
*master
= fsi_get_master(fsi
);
510 spin_lock_irqsave(&master
->lock
, flags
);
511 ret
= !!(io
->substream
&& io
->substream
->runtime
);
512 spin_unlock_irqrestore(&master
->lock
, flags
);
517 static struct fsi_priv
*fsi_stream_to_priv(struct fsi_stream
*io
)
522 static void fsi_stream_init(struct fsi_priv
*fsi
,
523 struct fsi_stream
*io
,
524 struct snd_pcm_substream
*substream
)
526 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
527 struct fsi_master
*master
= fsi_get_master(fsi
);
530 spin_lock_irqsave(&master
->lock
, flags
);
531 io
->substream
= substream
;
532 io
->buff_sample_capa
= fsi_frame2sample(fsi
, runtime
->buffer_size
);
533 io
->buff_sample_pos
= 0;
534 io
->period_samples
= fsi_frame2sample(fsi
, runtime
->period_size
);
536 io
->sample_width
= samples_to_bytes(runtime
, 1);
538 io
->oerr_num
= -1; /* ignore 1st err */
539 io
->uerr_num
= -1; /* ignore 1st err */
540 fsi_stream_handler_call(io
, init
, fsi
, io
);
541 spin_unlock_irqrestore(&master
->lock
, flags
);
544 static void fsi_stream_quit(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
546 struct snd_soc_dai
*dai
= fsi_get_dai(io
->substream
);
547 struct fsi_master
*master
= fsi_get_master(fsi
);
550 spin_lock_irqsave(&master
->lock
, flags
);
552 if (io
->oerr_num
> 0)
553 dev_err(dai
->dev
, "over_run = %d\n", io
->oerr_num
);
555 if (io
->uerr_num
> 0)
556 dev_err(dai
->dev
, "under_run = %d\n", io
->uerr_num
);
558 fsi_stream_handler_call(io
, quit
, fsi
, io
);
559 io
->substream
= NULL
;
560 io
->buff_sample_capa
= 0;
561 io
->buff_sample_pos
= 0;
562 io
->period_samples
= 0;
564 io
->sample_width
= 0;
568 spin_unlock_irqrestore(&master
->lock
, flags
);
571 static int fsi_stream_transfer(struct fsi_stream
*io
)
573 struct fsi_priv
*fsi
= fsi_stream_to_priv(io
);
577 return fsi_stream_handler_call(io
, transfer
, fsi
, io
);
580 #define fsi_stream_start(fsi, io)\
581 fsi_stream_handler_call(io, start_stop, fsi, io, 1)
583 #define fsi_stream_stop(fsi, io)\
584 fsi_stream_handler_call(io, start_stop, fsi, io, 0)
586 static int fsi_stream_probe(struct fsi_priv
*fsi
, struct device
*dev
)
588 struct fsi_stream
*io
;
592 ret1
= fsi_stream_handler_call(io
, probe
, fsi
, io
, dev
);
595 ret2
= fsi_stream_handler_call(io
, probe
, fsi
, io
, dev
);
605 static int fsi_stream_remove(struct fsi_priv
*fsi
)
607 struct fsi_stream
*io
;
611 ret1
= fsi_stream_handler_call(io
, remove
, fsi
, io
);
614 ret2
= fsi_stream_handler_call(io
, remove
, fsi
, io
);
625 * format/bus/dma setting
627 static void fsi_format_bus_setup(struct fsi_priv
*fsi
, struct fsi_stream
*io
,
628 u32 bus
, struct device
*dev
)
630 struct fsi_master
*master
= fsi_get_master(fsi
);
631 int is_play
= fsi_stream_is_play(fsi
, io
);
634 if (fsi_version(master
) >= 2) {
638 * FSI2 needs DMA/Bus setting
641 case PACKAGE_24BITBUS_FRONT
:
644 dev_dbg(dev
, "24bit bus / package in front\n");
646 case PACKAGE_16BITBUS_STREAM
:
649 dev_dbg(dev
, "16bit bus / stream mode\n");
651 case PACKAGE_24BITBUS_BACK
:
655 dev_dbg(dev
, "24bit bus / package in back\n");
660 fsi_reg_write(fsi
, OUT_DMAC
, dma
);
662 fsi_reg_write(fsi
, IN_DMAC
, dma
);
666 fsi_reg_write(fsi
, DO_FMT
, fmt
);
668 fsi_reg_write(fsi
, DI_FMT
, fmt
);
675 static void fsi_irq_enable(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
677 u32 data
= AB_IO(1, fsi_get_port_shift(fsi
, io
));
678 struct fsi_master
*master
= fsi_get_master(fsi
);
680 fsi_core_mask_set(master
, imsk
, data
, data
);
681 fsi_core_mask_set(master
, iemsk
, data
, data
);
684 static void fsi_irq_disable(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
686 u32 data
= AB_IO(1, fsi_get_port_shift(fsi
, io
));
687 struct fsi_master
*master
= fsi_get_master(fsi
);
689 fsi_core_mask_set(master
, imsk
, data
, 0);
690 fsi_core_mask_set(master
, iemsk
, data
, 0);
693 static u32
fsi_irq_get_status(struct fsi_master
*master
)
695 return fsi_core_read(master
, int_st
);
698 static void fsi_irq_clear_status(struct fsi_priv
*fsi
)
701 struct fsi_master
*master
= fsi_get_master(fsi
);
703 data
|= AB_IO(1, fsi_get_port_shift(fsi
, &fsi
->playback
));
704 data
|= AB_IO(1, fsi_get_port_shift(fsi
, &fsi
->capture
));
706 /* clear interrupt factor */
707 fsi_core_mask_set(master
, int_st
, data
, 0);
711 * SPDIF master clock function
713 * These functions are used later FSI2
715 static void fsi_spdif_clk_ctrl(struct fsi_priv
*fsi
, int enable
)
717 struct fsi_master
*master
= fsi_get_master(fsi
);
721 val
= enable
? mask
: 0;
724 fsi_core_mask_set(master
, a_mclk
, mask
, val
) :
725 fsi_core_mask_set(master
, b_mclk
, mask
, val
);
731 static int fsi_clk_init(struct device
*dev
,
732 struct fsi_priv
*fsi
,
736 int (*set_rate
)(struct device
*dev
,
737 struct fsi_priv
*fsi
))
739 struct fsi_clk
*clock
= &fsi
->clock
;
740 int is_porta
= fsi_is_port_a(fsi
);
747 clock
->set_rate
= set_rate
;
749 clock
->own
= devm_clk_get(dev
, NULL
);
750 if (IS_ERR(clock
->own
))
755 clock
->xck
= devm_clk_get(dev
, is_porta
? "xcka" : "xckb");
756 if (IS_ERR(clock
->xck
)) {
757 dev_err(dev
, "can't get xck clock\n");
760 if (clock
->xck
== clock
->own
) {
761 dev_err(dev
, "cpu doesn't support xck clock\n");
766 /* FSIACLK/FSIBCLK */
768 clock
->ick
= devm_clk_get(dev
, is_porta
? "icka" : "ickb");
769 if (IS_ERR(clock
->ick
)) {
770 dev_err(dev
, "can't get ick clock\n");
773 if (clock
->ick
== clock
->own
) {
774 dev_err(dev
, "cpu doesn't support ick clock\n");
781 clock
->div
= devm_clk_get(dev
, is_porta
? "diva" : "divb");
782 if (IS_ERR(clock
->div
)) {
783 dev_err(dev
, "can't get div clock\n");
786 if (clock
->div
== clock
->own
) {
787 dev_err(dev
, "cpu doens't support div clock\n");
795 #define fsi_clk_invalid(fsi) fsi_clk_valid(fsi, 0)
796 static void fsi_clk_valid(struct fsi_priv
*fsi
, unsigned long rate
)
798 fsi
->clock
.rate
= rate
;
801 static int fsi_clk_is_valid(struct fsi_priv
*fsi
)
803 return fsi
->clock
.set_rate
&&
807 static int fsi_clk_enable(struct device
*dev
,
808 struct fsi_priv
*fsi
)
810 struct fsi_clk
*clock
= &fsi
->clock
;
813 if (!fsi_clk_is_valid(fsi
))
816 if (0 == clock
->count
) {
817 ret
= clock
->set_rate(dev
, fsi
);
819 fsi_clk_invalid(fsi
);
823 clk_enable(clock
->xck
);
824 clk_enable(clock
->ick
);
825 clk_enable(clock
->div
);
833 static int fsi_clk_disable(struct device
*dev
,
834 struct fsi_priv
*fsi
)
836 struct fsi_clk
*clock
= &fsi
->clock
;
838 if (!fsi_clk_is_valid(fsi
))
841 if (1 == clock
->count
--) {
842 clk_disable(clock
->xck
);
843 clk_disable(clock
->ick
);
844 clk_disable(clock
->div
);
850 static int fsi_clk_set_ackbpf(struct device
*dev
,
851 struct fsi_priv
*fsi
,
852 int ackmd
, int bpfmd
)
856 /* check ackmd/bpfmd relationship */
858 dev_err(dev
, "unsupported rate (%d/%d)\n", ackmd
, bpfmd
);
880 dev_err(dev
, "unsupported ackmd (%d)\n", ackmd
);
905 dev_err(dev
, "unsupported bpfmd (%d)\n", bpfmd
);
909 dev_dbg(dev
, "ACKMD/BPFMD = %d/%d\n", ackmd
, bpfmd
);
911 fsi_reg_mask_set(fsi
, CKG1
, (ACKMD_MASK
| BPFMD_MASK
) , data
);
917 static int fsi_clk_set_rate_external(struct device
*dev
,
918 struct fsi_priv
*fsi
)
920 struct clk
*xck
= fsi
->clock
.xck
;
921 struct clk
*ick
= fsi
->clock
.ick
;
922 unsigned long rate
= fsi
->clock
.rate
;
927 /* check clock rate */
928 xrate
= clk_get_rate(xck
);
930 dev_err(dev
, "unsupported clock rate\n");
934 clk_set_parent(ick
, xck
);
935 clk_set_rate(ick
, xrate
);
937 bpfmd
= fsi
->chan_num
* 32;
938 ackmd
= xrate
/ rate
;
940 dev_dbg(dev
, "external/rate = %ld/%ld\n", xrate
, rate
);
942 ret
= fsi_clk_set_ackbpf(dev
, fsi
, ackmd
, bpfmd
);
944 dev_err(dev
, "%s failed", __func__
);
949 static int fsi_clk_set_rate_cpg(struct device
*dev
,
950 struct fsi_priv
*fsi
)
952 struct clk
*ick
= fsi
->clock
.ick
;
953 struct clk
*div
= fsi
->clock
.div
;
954 unsigned long rate
= fsi
->clock
.rate
;
955 unsigned long target
= 0; /* 12288000 or 11289600 */
956 unsigned long actual
, cout
;
957 unsigned long diff
, min
;
958 unsigned long best_cout
, best_act
;
963 if (!(12288000 % rate
))
965 if (!(11289600 % rate
))
968 dev_err(dev
, "unsupported rate\n");
972 bpfmd
= fsi
->chan_num
* 32;
973 ackmd
= target
/ rate
;
974 ret
= fsi_clk_set_ackbpf(dev
, fsi
, ackmd
, bpfmd
);
976 dev_err(dev
, "%s failed", __func__
);
983 * [CPG] = cout => [FSI_DIV] = audio => [FSI] => [codec]
985 * But, it needs to find best match of CPG and FSI_DIV
986 * combination, since it is difficult to generate correct
987 * frequency of audio clock from ick clock only.
988 * Because ick is created from its parent clock.
990 * target = rate x [512/256/128/64]fs
991 * cout = round(target x adjustment)
992 * actual = cout / adjustment (by FSI-DIV) ~= target
998 for (adj
= 1; adj
< 0xffff; adj
++) {
1000 cout
= target
* adj
;
1001 if (cout
> 100000000) /* max clock = 100MHz */
1004 /* cout/actual audio clock */
1005 cout
= clk_round_rate(ick
, cout
);
1006 actual
= cout
/ adj
;
1008 /* find best frequency */
1009 diff
= abs(actual
- target
);
1017 ret
= clk_set_rate(ick
, best_cout
);
1019 dev_err(dev
, "ick clock failed\n");
1023 ret
= clk_set_rate(div
, clk_round_rate(div
, best_act
));
1025 dev_err(dev
, "div clock failed\n");
1029 dev_dbg(dev
, "ick/div = %ld/%ld\n",
1030 clk_get_rate(ick
), clk_get_rate(div
));
1035 static void fsi_pointer_update(struct fsi_stream
*io
, int size
)
1037 io
->buff_sample_pos
+= size
;
1039 if (io
->buff_sample_pos
>=
1040 io
->period_samples
* (io
->period_pos
+ 1)) {
1041 struct snd_pcm_substream
*substream
= io
->substream
;
1042 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1046 if (io
->period_pos
>= runtime
->periods
) {
1047 io
->buff_sample_pos
= 0;
1051 snd_pcm_period_elapsed(substream
);
1056 * pio data transfer handler
1058 static void fsi_pio_push16(struct fsi_priv
*fsi
, u8
*_buf
, int samples
)
1062 if (fsi_is_enable_stream(fsi
)) {
1066 * fsi_pio_push_init()
1068 u32
*buf
= (u32
*)_buf
;
1070 for (i
= 0; i
< samples
/ 2; i
++)
1071 fsi_reg_write(fsi
, DODT
, buf
[i
]);
1074 u16
*buf
= (u16
*)_buf
;
1076 for (i
= 0; i
< samples
; i
++)
1077 fsi_reg_write(fsi
, DODT
, ((u32
)*(buf
+ i
) << 8));
1081 static void fsi_pio_pop16(struct fsi_priv
*fsi
, u8
*_buf
, int samples
)
1083 u16
*buf
= (u16
*)_buf
;
1086 for (i
= 0; i
< samples
; i
++)
1087 *(buf
+ i
) = (u16
)(fsi_reg_read(fsi
, DIDT
) >> 8);
1090 static void fsi_pio_push32(struct fsi_priv
*fsi
, u8
*_buf
, int samples
)
1092 u32
*buf
= (u32
*)_buf
;
1095 for (i
= 0; i
< samples
; i
++)
1096 fsi_reg_write(fsi
, DODT
, *(buf
+ i
));
1099 static void fsi_pio_pop32(struct fsi_priv
*fsi
, u8
*_buf
, int samples
)
1101 u32
*buf
= (u32
*)_buf
;
1104 for (i
= 0; i
< samples
; i
++)
1105 *(buf
+ i
) = fsi_reg_read(fsi
, DIDT
);
1108 static u8
*fsi_pio_get_area(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1110 struct snd_pcm_runtime
*runtime
= io
->substream
->runtime
;
1112 return runtime
->dma_area
+
1113 samples_to_bytes(runtime
, io
->buff_sample_pos
);
1116 static int fsi_pio_transfer(struct fsi_priv
*fsi
, struct fsi_stream
*io
,
1117 void (*run16
)(struct fsi_priv
*fsi
, u8
*buf
, int samples
),
1118 void (*run32
)(struct fsi_priv
*fsi
, u8
*buf
, int samples
),
1123 if (!fsi_stream_is_working(fsi
, io
))
1126 buf
= fsi_pio_get_area(fsi
, io
);
1128 switch (io
->sample_width
) {
1130 run16(fsi
, buf
, samples
);
1133 run32(fsi
, buf
, samples
);
1139 fsi_pointer_update(io
, samples
);
1144 static int fsi_pio_pop(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1146 int sample_residues
; /* samples in FSI fifo */
1147 int sample_space
; /* ALSA free samples space */
1150 sample_residues
= fsi_get_current_fifo_samples(fsi
, io
);
1151 sample_space
= io
->buff_sample_capa
- io
->buff_sample_pos
;
1153 samples
= min(sample_residues
, sample_space
);
1155 return fsi_pio_transfer(fsi
, io
,
1161 static int fsi_pio_push(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1163 int sample_residues
; /* ALSA residue samples */
1164 int sample_space
; /* FSI fifo free samples space */
1167 sample_residues
= io
->buff_sample_capa
- io
->buff_sample_pos
;
1168 sample_space
= io
->fifo_sample_capa
-
1169 fsi_get_current_fifo_samples(fsi
, io
);
1171 samples
= min(sample_residues
, sample_space
);
1173 return fsi_pio_transfer(fsi
, io
,
1179 static int fsi_pio_start_stop(struct fsi_priv
*fsi
, struct fsi_stream
*io
,
1182 struct fsi_master
*master
= fsi_get_master(fsi
);
1183 u32 clk
= fsi_is_port_a(fsi
) ? CRA
: CRB
;
1186 fsi_irq_enable(fsi
, io
);
1188 fsi_irq_disable(fsi
, io
);
1190 if (fsi_is_clk_master(fsi
))
1191 fsi_master_mask_set(master
, CLK_RST
, clk
, (enable
) ? clk
: 0);
1196 static int fsi_pio_push_init(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1199 * we can use 16bit stream mode
1200 * when "playback" and "16bit data"
1201 * and platform allows "stream mode"
1205 if (fsi_is_enable_stream(fsi
))
1206 io
->bus_option
= BUSOP_SET(24, PACKAGE_24BITBUS_BACK
) |
1207 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM
);
1209 io
->bus_option
= BUSOP_SET(24, PACKAGE_24BITBUS_BACK
) |
1210 BUSOP_SET(16, PACKAGE_24BITBUS_BACK
);
1214 static int fsi_pio_pop_init(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1217 * always 24bit bus, package back when "capture"
1219 io
->bus_option
= BUSOP_SET(24, PACKAGE_24BITBUS_BACK
) |
1220 BUSOP_SET(16, PACKAGE_24BITBUS_BACK
);
1224 static struct fsi_stream_handler fsi_pio_push_handler
= {
1225 .init
= fsi_pio_push_init
,
1226 .transfer
= fsi_pio_push
,
1227 .start_stop
= fsi_pio_start_stop
,
1230 static struct fsi_stream_handler fsi_pio_pop_handler
= {
1231 .init
= fsi_pio_pop_init
,
1232 .transfer
= fsi_pio_pop
,
1233 .start_stop
= fsi_pio_start_stop
,
1236 static irqreturn_t
fsi_interrupt(int irq
, void *data
)
1238 struct fsi_master
*master
= data
;
1239 u32 int_st
= fsi_irq_get_status(master
);
1241 /* clear irq status */
1242 fsi_master_mask_set(master
, SOFT_RST
, IR
, 0);
1243 fsi_master_mask_set(master
, SOFT_RST
, IR
, IR
);
1245 if (int_st
& AB_IO(1, AO_SHIFT
))
1246 fsi_stream_transfer(&master
->fsia
.playback
);
1247 if (int_st
& AB_IO(1, BO_SHIFT
))
1248 fsi_stream_transfer(&master
->fsib
.playback
);
1249 if (int_st
& AB_IO(1, AI_SHIFT
))
1250 fsi_stream_transfer(&master
->fsia
.capture
);
1251 if (int_st
& AB_IO(1, BI_SHIFT
))
1252 fsi_stream_transfer(&master
->fsib
.capture
);
1254 fsi_count_fifo_err(&master
->fsia
);
1255 fsi_count_fifo_err(&master
->fsib
);
1257 fsi_irq_clear_status(&master
->fsia
);
1258 fsi_irq_clear_status(&master
->fsib
);
1264 * dma data transfer handler
1266 static int fsi_dma_init(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1269 * 24bit data : 24bit bus / package in back
1270 * 16bit data : 16bit bus / stream mode
1272 io
->bus_option
= BUSOP_SET(24, PACKAGE_24BITBUS_BACK
) |
1273 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM
);
1278 static void fsi_dma_complete(void *data
)
1280 struct fsi_stream
*io
= (struct fsi_stream
*)data
;
1281 struct fsi_priv
*fsi
= fsi_stream_to_priv(io
);
1283 fsi_pointer_update(io
, io
->period_samples
);
1285 fsi_count_fifo_err(fsi
);
1288 static int fsi_dma_transfer(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1290 struct snd_soc_dai
*dai
= fsi_get_dai(io
->substream
);
1291 struct snd_pcm_substream
*substream
= io
->substream
;
1292 struct dma_async_tx_descriptor
*desc
;
1293 int is_play
= fsi_stream_is_play(fsi
, io
);
1294 enum dma_transfer_direction dir
;
1298 dir
= DMA_MEM_TO_DEV
;
1300 dir
= DMA_DEV_TO_MEM
;
1302 desc
= dmaengine_prep_dma_cyclic(io
->chan
,
1303 substream
->runtime
->dma_addr
,
1304 snd_pcm_lib_buffer_bytes(substream
),
1305 snd_pcm_lib_period_bytes(substream
),
1307 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1309 dev_err(dai
->dev
, "dmaengine_prep_dma_cyclic() fail\n");
1310 goto fsi_dma_transfer_err
;
1313 desc
->callback
= fsi_dma_complete
;
1314 desc
->callback_param
= io
;
1316 if (dmaengine_submit(desc
) < 0) {
1317 dev_err(dai
->dev
, "tx_submit() fail\n");
1318 goto fsi_dma_transfer_err
;
1321 dma_async_issue_pending(io
->chan
);
1326 * In DMAEngine case, codec and FSI cannot be started simultaneously
1327 * since FSI is using the scheduler work queue.
1328 * Therefore, in capture case, probably FSI FIFO will have got
1329 * overflow error in this point.
1330 * in that case, DMA cannot start transfer until error was cleared.
1333 if (ERR_OVER
& fsi_reg_read(fsi
, DIFF_ST
)) {
1334 fsi_reg_mask_set(fsi
, DIFF_CTL
, FIFO_CLR
, FIFO_CLR
);
1335 fsi_reg_write(fsi
, DIFF_ST
, 0);
1341 fsi_dma_transfer_err
:
1345 static int fsi_dma_push_start_stop(struct fsi_priv
*fsi
, struct fsi_stream
*io
,
1348 struct fsi_master
*master
= fsi_get_master(fsi
);
1349 u32 clk
= fsi_is_port_a(fsi
) ? CRA
: CRB
;
1350 u32 enable
= start
? DMA_ON
: 0;
1352 fsi_reg_mask_set(fsi
, OUT_DMAC
, DMA_ON
, enable
);
1354 dmaengine_terminate_all(io
->chan
);
1356 if (fsi_is_clk_master(fsi
))
1357 fsi_master_mask_set(master
, CLK_RST
, clk
, (enable
) ? clk
: 0);
1362 static int fsi_dma_probe(struct fsi_priv
*fsi
, struct fsi_stream
*io
, struct device
*dev
)
1364 int is_play
= fsi_stream_is_play(fsi
, io
);
1366 #ifdef CONFIG_SUPERH
1367 dma_cap_mask_t mask
;
1369 dma_cap_set(DMA_SLAVE
, mask
);
1371 io
->chan
= dma_request_channel(mask
, shdma_chan_filter
,
1372 (void *)io
->dma_id
);
1374 io
->chan
= dma_request_slave_channel(dev
, is_play
? "tx" : "rx");
1377 struct dma_slave_config cfg
= {};
1381 cfg
.dst_addr
= fsi
->phys
+ REG_DODT
;
1382 cfg
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
1383 cfg
.direction
= DMA_MEM_TO_DEV
;
1385 cfg
.src_addr
= fsi
->phys
+ REG_DIDT
;
1386 cfg
.src_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
1387 cfg
.direction
= DMA_DEV_TO_MEM
;
1390 ret
= dmaengine_slave_config(io
->chan
, &cfg
);
1392 dma_release_channel(io
->chan
);
1399 /* switch to PIO handler */
1401 fsi
->playback
.handler
= &fsi_pio_push_handler
;
1403 fsi
->capture
.handler
= &fsi_pio_pop_handler
;
1405 dev_info(dev
, "switch handler (dma => pio)\n");
1408 return fsi_stream_probe(fsi
, dev
);
1414 static int fsi_dma_remove(struct fsi_priv
*fsi
, struct fsi_stream
*io
)
1416 fsi_stream_stop(fsi
, io
);
1419 dma_release_channel(io
->chan
);
1425 static struct fsi_stream_handler fsi_dma_push_handler
= {
1426 .init
= fsi_dma_init
,
1427 .probe
= fsi_dma_probe
,
1428 .transfer
= fsi_dma_transfer
,
1429 .remove
= fsi_dma_remove
,
1430 .start_stop
= fsi_dma_push_start_stop
,
1436 static void fsi_fifo_init(struct fsi_priv
*fsi
,
1437 struct fsi_stream
*io
,
1440 struct fsi_master
*master
= fsi_get_master(fsi
);
1441 int is_play
= fsi_stream_is_play(fsi
, io
);
1445 /* get on-chip RAM capacity */
1446 shift
= fsi_master_read(master
, FIFO_SZ
);
1447 shift
>>= fsi_get_port_shift(fsi
, io
);
1448 shift
&= FIFO_SZ_MASK
;
1449 frame_capa
= 256 << shift
;
1450 dev_dbg(dev
, "fifo = %d words\n", frame_capa
);
1453 * The maximum number of sample data varies depending
1454 * on the number of channels selected for the format.
1456 * FIFOs are used in 4-channel units in 3-channel mode
1457 * and in 8-channel units in 5- to 7-channel mode
1458 * meaning that more FIFOs than the required size of DPRAM
1461 * ex) if 256 words of DP-RAM is connected
1462 * 1 channel: 256 (256 x 1 = 256)
1463 * 2 channels: 128 (128 x 2 = 256)
1464 * 3 channels: 64 ( 64 x 3 = 192)
1465 * 4 channels: 64 ( 64 x 4 = 256)
1466 * 5 channels: 32 ( 32 x 5 = 160)
1467 * 6 channels: 32 ( 32 x 6 = 192)
1468 * 7 channels: 32 ( 32 x 7 = 224)
1469 * 8 channels: 32 ( 32 x 8 = 256)
1471 for (i
= 1; i
< fsi
->chan_num
; i
<<= 1)
1473 dev_dbg(dev
, "%d channel %d store\n",
1474 fsi
->chan_num
, frame_capa
);
1476 io
->fifo_sample_capa
= fsi_frame2sample(fsi
, frame_capa
);
1479 * set interrupt generation factor
1483 fsi_reg_write(fsi
, DOFF_CTL
, IRQ_HALF
);
1484 fsi_reg_mask_set(fsi
, DOFF_CTL
, FIFO_CLR
, FIFO_CLR
);
1486 fsi_reg_write(fsi
, DIFF_CTL
, IRQ_HALF
);
1487 fsi_reg_mask_set(fsi
, DIFF_CTL
, FIFO_CLR
, FIFO_CLR
);
1491 static int fsi_hw_startup(struct fsi_priv
*fsi
,
1492 struct fsi_stream
*io
,
1498 if (fsi_is_clk_master(fsi
))
1501 fsi_reg_mask_set(fsi
, CKG1
, (DIMD
| DOMD
), data
);
1503 /* clock inversion (CKG2) */
1505 if (fsi
->bit_clk_inv
)
1507 if (fsi
->lr_clk_inv
)
1509 if (fsi_is_clk_master(fsi
))
1511 fsi_reg_write(fsi
, CKG2
, data
);
1514 if (fsi_is_spdif(fsi
)) {
1515 fsi_spdif_clk_ctrl(fsi
, 1);
1516 fsi_reg_mask_set(fsi
, OUT_SEL
, DMMD
, DMMD
);
1523 switch (io
->sample_width
) {
1525 data
= BUSOP_GET(16, io
->bus_option
);
1528 data
= BUSOP_GET(24, io
->bus_option
);
1531 fsi_format_bus_setup(fsi
, io
, data
, dev
);
1534 fsi_irq_disable(fsi
, io
);
1535 fsi_irq_clear_status(fsi
);
1538 fsi_fifo_init(fsi
, io
, dev
);
1540 /* start master clock */
1541 if (fsi_is_clk_master(fsi
))
1542 return fsi_clk_enable(dev
, fsi
);
1547 static int fsi_hw_shutdown(struct fsi_priv
*fsi
,
1550 /* stop master clock */
1551 if (fsi_is_clk_master(fsi
))
1552 return fsi_clk_disable(dev
, fsi
);
1557 static int fsi_dai_startup(struct snd_pcm_substream
*substream
,
1558 struct snd_soc_dai
*dai
)
1560 struct fsi_priv
*fsi
= fsi_get_priv(substream
);
1562 fsi_clk_invalid(fsi
);
1567 static void fsi_dai_shutdown(struct snd_pcm_substream
*substream
,
1568 struct snd_soc_dai
*dai
)
1570 struct fsi_priv
*fsi
= fsi_get_priv(substream
);
1572 fsi_clk_invalid(fsi
);
1575 static int fsi_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
1576 struct snd_soc_dai
*dai
)
1578 struct fsi_priv
*fsi
= fsi_get_priv(substream
);
1579 struct fsi_stream
*io
= fsi_stream_get(fsi
, substream
);
1583 case SNDRV_PCM_TRIGGER_START
:
1584 fsi_stream_init(fsi
, io
, substream
);
1586 ret
= fsi_hw_startup(fsi
, io
, dai
->dev
);
1588 ret
= fsi_stream_start(fsi
, io
);
1590 ret
= fsi_stream_transfer(io
);
1592 case SNDRV_PCM_TRIGGER_STOP
:
1594 ret
= fsi_hw_shutdown(fsi
, dai
->dev
);
1595 fsi_stream_stop(fsi
, io
);
1596 fsi_stream_quit(fsi
, io
);
1603 static int fsi_set_fmt_dai(struct fsi_priv
*fsi
, unsigned int fmt
)
1605 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1606 case SND_SOC_DAIFMT_I2S
:
1610 case SND_SOC_DAIFMT_LEFT_J
:
1621 static int fsi_set_fmt_spdif(struct fsi_priv
*fsi
)
1623 struct fsi_master
*master
= fsi_get_master(fsi
);
1625 if (fsi_version(master
) < 2)
1628 fsi
->fmt
= CR_DTMD_SPDIF_PCM
| CR_PCM
;
1634 static int fsi_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
1636 struct fsi_priv
*fsi
= fsi_get_priv_frm_dai(dai
);
1639 /* set master/slave audio interface */
1640 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
1641 case SND_SOC_DAIFMT_CBM_CFM
:
1643 case SND_SOC_DAIFMT_CBS_CFS
:
1644 fsi
->clk_master
= 1; /* codec is slave, cpu is master */
1650 /* set clock inversion */
1651 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
1652 case SND_SOC_DAIFMT_NB_IF
:
1653 fsi
->bit_clk_inv
= 0;
1654 fsi
->lr_clk_inv
= 1;
1656 case SND_SOC_DAIFMT_IB_NF
:
1657 fsi
->bit_clk_inv
= 1;
1658 fsi
->lr_clk_inv
= 0;
1660 case SND_SOC_DAIFMT_IB_IF
:
1661 fsi
->bit_clk_inv
= 1;
1662 fsi
->lr_clk_inv
= 1;
1664 case SND_SOC_DAIFMT_NB_NF
:
1666 fsi
->bit_clk_inv
= 0;
1667 fsi
->lr_clk_inv
= 0;
1671 if (fsi_is_clk_master(fsi
)) {
1673 fsi_clk_init(dai
->dev
, fsi
, 0, 1, 1,
1674 fsi_clk_set_rate_cpg
);
1676 fsi_clk_init(dai
->dev
, fsi
, 1, 1, 0,
1677 fsi_clk_set_rate_external
);
1681 if (fsi_is_spdif(fsi
))
1682 ret
= fsi_set_fmt_spdif(fsi
);
1684 ret
= fsi_set_fmt_dai(fsi
, fmt
& SND_SOC_DAIFMT_FORMAT_MASK
);
1689 static int fsi_dai_hw_params(struct snd_pcm_substream
*substream
,
1690 struct snd_pcm_hw_params
*params
,
1691 struct snd_soc_dai
*dai
)
1693 struct fsi_priv
*fsi
= fsi_get_priv(substream
);
1695 if (fsi_is_clk_master(fsi
))
1696 fsi_clk_valid(fsi
, params_rate(params
));
1701 static const struct snd_soc_dai_ops fsi_dai_ops
= {
1702 .startup
= fsi_dai_startup
,
1703 .shutdown
= fsi_dai_shutdown
,
1704 .trigger
= fsi_dai_trigger
,
1705 .set_fmt
= fsi_dai_set_fmt
,
1706 .hw_params
= fsi_dai_hw_params
,
1713 static const struct snd_pcm_hardware fsi_pcm_hardware
= {
1714 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
1715 SNDRV_PCM_INFO_MMAP
|
1716 SNDRV_PCM_INFO_MMAP_VALID
,
1717 .buffer_bytes_max
= 64 * 1024,
1718 .period_bytes_min
= 32,
1719 .period_bytes_max
= 8192,
1725 static int fsi_pcm_open(struct snd_pcm_substream
*substream
)
1727 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1730 snd_soc_set_runtime_hwparams(substream
, &fsi_pcm_hardware
);
1732 ret
= snd_pcm_hw_constraint_integer(runtime
,
1733 SNDRV_PCM_HW_PARAM_PERIODS
);
1738 static int fsi_hw_params(struct snd_pcm_substream
*substream
,
1739 struct snd_pcm_hw_params
*hw_params
)
1741 return snd_pcm_lib_malloc_pages(substream
,
1742 params_buffer_bytes(hw_params
));
1745 static int fsi_hw_free(struct snd_pcm_substream
*substream
)
1747 return snd_pcm_lib_free_pages(substream
);
1750 static snd_pcm_uframes_t
fsi_pointer(struct snd_pcm_substream
*substream
)
1752 struct fsi_priv
*fsi
= fsi_get_priv(substream
);
1753 struct fsi_stream
*io
= fsi_stream_get(fsi
, substream
);
1755 return fsi_sample2frame(fsi
, io
->buff_sample_pos
);
1758 static const struct snd_pcm_ops fsi_pcm_ops
= {
1759 .open
= fsi_pcm_open
,
1760 .ioctl
= snd_pcm_lib_ioctl
,
1761 .hw_params
= fsi_hw_params
,
1762 .hw_free
= fsi_hw_free
,
1763 .pointer
= fsi_pointer
,
1770 #define PREALLOC_BUFFER (32 * 1024)
1771 #define PREALLOC_BUFFER_MAX (32 * 1024)
1773 static int fsi_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
1775 return snd_pcm_lib_preallocate_pages_for_all(
1778 rtd
->card
->snd_card
->dev
,
1779 PREALLOC_BUFFER
, PREALLOC_BUFFER_MAX
);
1786 static struct snd_soc_dai_driver fsi_soc_dai
[] = {
1791 .formats
= FSI_FMTS
,
1797 .formats
= FSI_FMTS
,
1801 .ops
= &fsi_dai_ops
,
1807 .formats
= FSI_FMTS
,
1813 .formats
= FSI_FMTS
,
1817 .ops
= &fsi_dai_ops
,
1821 static const struct snd_soc_platform_driver fsi_soc_platform
= {
1822 .ops
= &fsi_pcm_ops
,
1823 .pcm_new
= fsi_pcm_new
,
1826 static const struct snd_soc_component_driver fsi_soc_component
= {
1833 static void fsi_of_parse(char *name
,
1834 struct device_node
*np
,
1835 struct sh_fsi_port_info
*info
,
1840 unsigned long flags
= 0;
1844 } of_parse_property
[] = {
1845 { "spdif-connection", SH_FSI_FMT_SPDIF
},
1846 { "stream-mode-support", SH_FSI_ENABLE_STREAM_MODE
},
1847 { "use-internal-clock", SH_FSI_CLK_CPG
},
1850 for (i
= 0; i
< ARRAY_SIZE(of_parse_property
); i
++) {
1851 sprintf(prop
, "%s,%s", name
, of_parse_property
[i
].name
);
1852 if (of_get_property(np
, prop
, NULL
))
1853 flags
|= of_parse_property
[i
].val
;
1855 info
->flags
= flags
;
1857 dev_dbg(dev
, "%s flags : %lx\n", name
, info
->flags
);
1860 static void fsi_port_info_init(struct fsi_priv
*fsi
,
1861 struct sh_fsi_port_info
*info
)
1863 if (info
->flags
& SH_FSI_FMT_SPDIF
)
1866 if (info
->flags
& SH_FSI_CLK_CPG
)
1869 if (info
->flags
& SH_FSI_ENABLE_STREAM_MODE
)
1870 fsi
->enable_stream
= 1;
1873 static void fsi_handler_init(struct fsi_priv
*fsi
,
1874 struct sh_fsi_port_info
*info
)
1876 fsi
->playback
.handler
= &fsi_pio_push_handler
; /* default PIO */
1877 fsi
->playback
.priv
= fsi
;
1878 fsi
->capture
.handler
= &fsi_pio_pop_handler
; /* default PIO */
1879 fsi
->capture
.priv
= fsi
;
1882 fsi
->playback
.dma_id
= info
->tx_id
;
1883 fsi
->playback
.handler
= &fsi_dma_push_handler
;
1887 static const struct fsi_core fsi1_core
= {
1896 static const struct fsi_core fsi2_core
= {
1900 .int_st
= CPU_INT_ST
,
1903 .a_mclk
= A_MST_CTLR
,
1904 .b_mclk
= B_MST_CTLR
,
1907 static const struct of_device_id fsi_of_match
[] = {
1908 { .compatible
= "renesas,sh_fsi", .data
= &fsi1_core
},
1909 { .compatible
= "renesas,sh_fsi2", .data
= &fsi2_core
},
1912 MODULE_DEVICE_TABLE(of
, fsi_of_match
);
1914 static const struct platform_device_id fsi_id_table
[] = {
1915 { "sh_fsi", (kernel_ulong_t
)&fsi1_core
},
1918 MODULE_DEVICE_TABLE(platform
, fsi_id_table
);
1920 static int fsi_probe(struct platform_device
*pdev
)
1922 struct fsi_master
*master
;
1923 struct device_node
*np
= pdev
->dev
.of_node
;
1924 struct sh_fsi_platform_info info
;
1925 const struct fsi_core
*core
;
1926 struct fsi_priv
*fsi
;
1927 struct resource
*res
;
1931 memset(&info
, 0, sizeof(info
));
1935 const struct of_device_id
*of_id
;
1937 of_id
= of_match_device(fsi_of_match
, &pdev
->dev
);
1940 fsi_of_parse("fsia", np
, &info
.port_a
, &pdev
->dev
);
1941 fsi_of_parse("fsib", np
, &info
.port_b
, &pdev
->dev
);
1944 const struct platform_device_id
*id_entry
= pdev
->id_entry
;
1946 core
= (struct fsi_core
*)id_entry
->driver_data
;
1948 if (pdev
->dev
.platform_data
)
1949 memcpy(&info
, pdev
->dev
.platform_data
, sizeof(info
));
1953 dev_err(&pdev
->dev
, "unknown fsi device\n");
1957 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1958 irq
= platform_get_irq(pdev
, 0);
1959 if (!res
|| (int)irq
<= 0) {
1960 dev_err(&pdev
->dev
, "Not enough FSI platform resources.\n");
1964 master
= devm_kzalloc(&pdev
->dev
, sizeof(*master
), GFP_KERNEL
);
1968 master
->base
= devm_ioremap_nocache(&pdev
->dev
,
1969 res
->start
, resource_size(res
));
1970 if (!master
->base
) {
1971 dev_err(&pdev
->dev
, "Unable to ioremap FSI registers.\n");
1975 /* master setting */
1976 master
->core
= core
;
1977 spin_lock_init(&master
->lock
);
1980 fsi
= &master
->fsia
;
1981 fsi
->base
= master
->base
;
1982 fsi
->phys
= res
->start
;
1983 fsi
->master
= master
;
1984 fsi_port_info_init(fsi
, &info
.port_a
);
1985 fsi_handler_init(fsi
, &info
.port_a
);
1986 ret
= fsi_stream_probe(fsi
, &pdev
->dev
);
1988 dev_err(&pdev
->dev
, "FSIA stream probe failed\n");
1993 fsi
= &master
->fsib
;
1994 fsi
->base
= master
->base
+ 0x40;
1995 fsi
->phys
= res
->start
+ 0x40;
1996 fsi
->master
= master
;
1997 fsi_port_info_init(fsi
, &info
.port_b
);
1998 fsi_handler_init(fsi
, &info
.port_b
);
1999 ret
= fsi_stream_probe(fsi
, &pdev
->dev
);
2001 dev_err(&pdev
->dev
, "FSIB stream probe failed\n");
2005 pm_runtime_enable(&pdev
->dev
);
2006 dev_set_drvdata(&pdev
->dev
, master
);
2008 ret
= devm_request_irq(&pdev
->dev
, irq
, &fsi_interrupt
, 0,
2009 dev_name(&pdev
->dev
), master
);
2011 dev_err(&pdev
->dev
, "irq request err\n");
2015 ret
= snd_soc_register_platform(&pdev
->dev
, &fsi_soc_platform
);
2017 dev_err(&pdev
->dev
, "cannot snd soc register\n");
2021 ret
= snd_soc_register_component(&pdev
->dev
, &fsi_soc_component
,
2022 fsi_soc_dai
, ARRAY_SIZE(fsi_soc_dai
));
2024 dev_err(&pdev
->dev
, "cannot snd component register\n");
2031 snd_soc_unregister_platform(&pdev
->dev
);
2033 pm_runtime_disable(&pdev
->dev
);
2034 fsi_stream_remove(&master
->fsib
);
2036 fsi_stream_remove(&master
->fsia
);
2041 static int fsi_remove(struct platform_device
*pdev
)
2043 struct fsi_master
*master
;
2045 master
= dev_get_drvdata(&pdev
->dev
);
2047 pm_runtime_disable(&pdev
->dev
);
2049 snd_soc_unregister_component(&pdev
->dev
);
2050 snd_soc_unregister_platform(&pdev
->dev
);
2052 fsi_stream_remove(&master
->fsia
);
2053 fsi_stream_remove(&master
->fsib
);
2058 static void __fsi_suspend(struct fsi_priv
*fsi
,
2059 struct fsi_stream
*io
,
2062 if (!fsi_stream_is_working(fsi
, io
))
2065 fsi_stream_stop(fsi
, io
);
2066 fsi_hw_shutdown(fsi
, dev
);
2069 static void __fsi_resume(struct fsi_priv
*fsi
,
2070 struct fsi_stream
*io
,
2073 if (!fsi_stream_is_working(fsi
, io
))
2076 fsi_hw_startup(fsi
, io
, dev
);
2077 fsi_stream_start(fsi
, io
);
2080 static int fsi_suspend(struct device
*dev
)
2082 struct fsi_master
*master
= dev_get_drvdata(dev
);
2083 struct fsi_priv
*fsia
= &master
->fsia
;
2084 struct fsi_priv
*fsib
= &master
->fsib
;
2086 __fsi_suspend(fsia
, &fsia
->playback
, dev
);
2087 __fsi_suspend(fsia
, &fsia
->capture
, dev
);
2089 __fsi_suspend(fsib
, &fsib
->playback
, dev
);
2090 __fsi_suspend(fsib
, &fsib
->capture
, dev
);
2095 static int fsi_resume(struct device
*dev
)
2097 struct fsi_master
*master
= dev_get_drvdata(dev
);
2098 struct fsi_priv
*fsia
= &master
->fsia
;
2099 struct fsi_priv
*fsib
= &master
->fsib
;
2101 __fsi_resume(fsia
, &fsia
->playback
, dev
);
2102 __fsi_resume(fsia
, &fsia
->capture
, dev
);
2104 __fsi_resume(fsib
, &fsib
->playback
, dev
);
2105 __fsi_resume(fsib
, &fsib
->capture
, dev
);
2110 static const struct dev_pm_ops fsi_pm_ops
= {
2111 .suspend
= fsi_suspend
,
2112 .resume
= fsi_resume
,
2115 static struct platform_driver fsi_driver
= {
2117 .name
= "fsi-pcm-audio",
2119 .of_match_table
= fsi_of_match
,
2122 .remove
= fsi_remove
,
2123 .id_table
= fsi_id_table
,
2126 module_platform_driver(fsi_driver
);
2128 MODULE_LICENSE("GPL v2");
2129 MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
2130 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
2131 MODULE_ALIAS("platform:fsi-pcm-audio");