2 * Renesas R-Car SRU/SCU/SSIU/SSI support
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
8 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
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.
16 * Renesas R-Car sound device structure
20 * SRU : Sound Routing Unit
21 * - SRC : Sampling Rate Converter
23 * - CTU : Channel Count Conversion Unit
25 * - DVC : Digital Volume and Mute Function
26 * - SSI : Serial Sound Interface
30 * SCU : Sampling Rate Converter Unit
31 * - SRC : Sampling Rate Converter
33 * - CTU : Channel Count Conversion Unit
35 * - DVC : Digital Volume and Mute Function
36 * SSIU : Serial Sound Interface Unit
37 * - SSI : Serial Sound Interface
45 * | ** this depends on Gen1/Gen2
49 * | ** these depend on data path
50 * | ** gen and platform data control it
54 * | +- playback -> [mod] -> [mod] -> [mod] -> ...
57 * | +- capture -> [mod] -> [mod] -> [mod] -> ...
61 * | +- playback -> [mod] -> [mod] -> [mod] -> ...
64 * | +- capture -> [mod] -> [mod] -> [mod] -> ...
67 * | ** these control ssi
76 * | ** these control src
86 * for_each_rsnd_dai(xx, priv, xx)
87 * rdai[0] => rdai[1] => rdai[2] => ...
89 * for_each_rsnd_mod(xx, rdai, xx)
90 * [mod] => [mod] => [mod] => ...
92 * rsnd_dai_call(xxx, fn )
93 * [mod]->fn() -> [mod]->fn() -> [mod]->fn()...
96 #include <linux/pm_runtime.h>
99 #define RSND_RATES SNDRV_PCM_RATE_8000_96000
100 #define RSND_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
102 static const struct of_device_id rsnd_of_match
[] = {
103 { .compatible
= "renesas,rcar_sound-gen1", .data
= (void *)RSND_GEN1
},
104 { .compatible
= "renesas,rcar_sound-gen2", .data
= (void *)RSND_GEN2
},
105 { .compatible
= "renesas,rcar_sound-gen3", .data
= (void *)RSND_GEN2
}, /* gen2 compatible */
108 MODULE_DEVICE_TABLE(of
, rsnd_of_match
);
114 void rsnd_mod_make_sure(struct rsnd_mod
*mod
, enum rsnd_mod_type type
)
116 if (mod
->type
!= type
) {
117 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
118 struct device
*dev
= rsnd_priv_to_dev(priv
);
120 dev_warn(dev
, "%s[%d] is not your expected module\n",
121 rsnd_mod_name(mod
), rsnd_mod_id(mod
));
126 char *rsnd_mod_name(struct rsnd_mod
*mod
)
128 if (!mod
|| !mod
->ops
)
131 return mod
->ops
->name
;
134 struct dma_chan
*rsnd_mod_dma_req(struct rsnd_dai_stream
*io
,
135 struct rsnd_mod
*mod
)
137 if (!mod
|| !mod
->ops
|| !mod
->ops
->dma_req
)
140 return mod
->ops
->dma_req(io
, mod
);
143 u32
*rsnd_mod_get_status(struct rsnd_dai_stream
*io
,
144 struct rsnd_mod
*mod
,
145 enum rsnd_mod_type type
)
150 int rsnd_mod_init(struct rsnd_priv
*priv
,
151 struct rsnd_mod
*mod
,
152 struct rsnd_mod_ops
*ops
,
154 u32
* (*get_status
)(struct rsnd_dai_stream
*io
,
155 struct rsnd_mod
*mod
,
156 enum rsnd_mod_type type
),
157 enum rsnd_mod_type type
,
160 int ret
= clk_prepare(clk
);
170 mod
->get_status
= get_status
;
175 void rsnd_mod_quit(struct rsnd_mod
*mod
)
178 clk_unprepare(mod
->clk
);
182 void rsnd_mod_interrupt(struct rsnd_mod
*mod
,
183 void (*callback
)(struct rsnd_mod
*mod
,
184 struct rsnd_dai_stream
*io
))
186 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
187 struct rsnd_dai_stream
*io
;
188 struct rsnd_dai
*rdai
;
191 for_each_rsnd_dai(rdai
, priv
, i
) {
192 io
= &rdai
->playback
;
193 if (mod
== io
->mod
[mod
->type
])
197 if (mod
== io
->mod
[mod
->type
])
202 int rsnd_io_is_working(struct rsnd_dai_stream
*io
)
204 /* see rsnd_dai_stream_init/quit() */
205 return !!io
->substream
;
208 void rsnd_set_slot(struct rsnd_dai
*rdai
,
212 rdai
->slots_num
= num
;
215 int rsnd_get_slot(struct rsnd_dai_stream
*io
)
217 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
222 int rsnd_get_slot_num(struct rsnd_dai_stream
*io
)
224 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
226 return rdai
->slots_num
;
229 int rsnd_runtime_channel_original(struct rsnd_dai_stream
*io
)
231 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
233 return runtime
->channels
;
236 int rsnd_runtime_channel_after_ctu(struct rsnd_dai_stream
*io
)
238 int chan
= rsnd_runtime_channel_original(io
);
239 struct rsnd_mod
*ctu_mod
= rsnd_io_to_mod_ctu(io
);
242 u32 converted_chan
= rsnd_ctu_converted_channel(ctu_mod
);
245 return converted_chan
;
251 int rsnd_runtime_channel_for_ssi(struct rsnd_dai_stream
*io
)
253 int chan
= rsnd_io_is_play(io
) ?
254 rsnd_runtime_channel_after_ctu(io
) :
255 rsnd_runtime_channel_original(io
);
258 if (rsnd_runtime_is_ssi_multi(io
))
259 chan
/= rsnd_get_slot_num(io
);
261 /* TDM Extend Mode needs 8ch */
268 int rsnd_runtime_is_ssi_multi(struct rsnd_dai_stream
*io
)
270 int slots
= rsnd_get_slot_num(io
);
271 int chan
= rsnd_io_is_play(io
) ?
272 rsnd_runtime_channel_after_ctu(io
) :
273 rsnd_runtime_channel_original(io
);
275 return (chan
>= 6) && (slots
> 1);
278 int rsnd_runtime_is_ssi_tdm(struct rsnd_dai_stream
*io
)
280 return rsnd_runtime_channel_for_ssi(io
) >= 6;
286 u32
rsnd_get_adinr_bit(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
)
288 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
289 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
290 struct device
*dev
= rsnd_priv_to_dev(priv
);
292 switch (runtime
->sample_bits
) {
299 dev_warn(dev
, "not supported sample bits\n");
307 u32
rsnd_get_dalign(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
)
309 struct rsnd_mod
*ssiu
= rsnd_io_to_mod_ssiu(io
);
310 struct rsnd_mod
*target
;
311 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
312 u32 val
= 0x76543210;
315 if (rsnd_io_is_play(io
)) {
316 struct rsnd_mod
*src
= rsnd_io_to_mod_src(io
);
318 target
= src
? src
: ssiu
;
320 struct rsnd_mod
*cmd
= rsnd_io_to_mod_cmd(io
);
322 target
= cmd
? cmd
: ssiu
;
325 mask
<<= runtime
->channels
* 4;
328 switch (runtime
->sample_bits
) {
330 val
|= 0x67452301 & ~mask
;
333 val
|= 0x76543210 & ~mask
;
338 * exchange channeles on SRC if possible,
339 * otherwise, R/L volume settings on DVC
340 * changes inverted channels
351 struct rsnd_mod
*rsnd_mod_next(int *iterator
,
352 struct rsnd_dai_stream
*io
,
353 enum rsnd_mod_type
*array
,
356 struct rsnd_mod
*mod
;
357 enum rsnd_mod_type type
;
358 int max
= array
? array_size
: RSND_MOD_MAX
;
360 for (; *iterator
< max
; (*iterator
)++) {
361 type
= (array
) ? array
[*iterator
] : *iterator
;
374 static enum rsnd_mod_type rsnd_mod_sequence
[][RSND_MOD_MAX
] = {
408 static int rsnd_status_update(u32
*status
,
409 int shift
, int add
, int timing
)
411 u32 mask
= 0xF << shift
;
412 u8 val
= (*status
>> shift
) & 0xF;
413 u8 next_val
= (val
+ add
) & 0xF;
414 int func_call
= (val
== timing
);
416 if (next_val
== 0xF) /* underflow case */
419 *status
= (*status
& ~mask
) + (next_val
<< shift
);
424 #define rsnd_dai_call(fn, io, param...) \
426 struct rsnd_priv *priv = rsnd_io_to_priv(io); \
427 struct device *dev = rsnd_priv_to_dev(priv); \
428 struct rsnd_mod *mod; \
429 int is_play = rsnd_io_is_play(io); \
431 enum rsnd_mod_type *types = rsnd_mod_sequence[is_play]; \
432 for_each_rsnd_mod_arrays(i, mod, io, types, RSND_MOD_MAX) { \
434 u32 *status = mod->get_status(io, mod, types[i]); \
435 int func_call = rsnd_status_update(status, \
436 __rsnd_mod_shift_##fn, \
437 __rsnd_mod_add_##fn, \
438 __rsnd_mod_call_##fn); \
439 dev_dbg(dev, "%s[%d]\t0x%08x %s\n", \
440 rsnd_mod_name(mod), rsnd_mod_id(mod), *status, \
441 (func_call && (mod)->ops->fn) ? #fn : ""); \
442 if (func_call && (mod)->ops->fn) \
443 tmp = (mod)->ops->fn(mod, io, param); \
445 dev_err(dev, "%s[%d] : %s error %d\n", \
446 rsnd_mod_name(mod), rsnd_mod_id(mod), \
453 int rsnd_dai_connect(struct rsnd_mod
*mod
,
454 struct rsnd_dai_stream
*io
,
455 enum rsnd_mod_type type
)
457 struct rsnd_priv
*priv
;
463 if (io
->mod
[type
] == mod
)
469 priv
= rsnd_mod_to_priv(mod
);
470 dev
= rsnd_priv_to_dev(priv
);
474 dev_dbg(dev
, "%s[%d] is connected to io (%s)\n",
475 rsnd_mod_name(mod
), rsnd_mod_id(mod
),
476 rsnd_io_is_play(io
) ? "Playback" : "Capture");
481 static void rsnd_dai_disconnect(struct rsnd_mod
*mod
,
482 struct rsnd_dai_stream
*io
,
483 enum rsnd_mod_type type
)
485 io
->mod
[type
] = NULL
;
488 struct rsnd_dai
*rsnd_rdai_get(struct rsnd_priv
*priv
, int id
)
490 if ((id
< 0) || (id
>= rsnd_rdai_nr(priv
)))
493 return priv
->rdai
+ id
;
496 #define rsnd_dai_to_priv(dai) snd_soc_dai_get_drvdata(dai)
497 static struct rsnd_dai
*rsnd_dai_to_rdai(struct snd_soc_dai
*dai
)
499 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
501 return rsnd_rdai_get(priv
, dai
->id
);
505 * rsnd_soc_dai functions
507 int rsnd_dai_pointer_offset(struct rsnd_dai_stream
*io
, int additional
)
509 struct snd_pcm_substream
*substream
= io
->substream
;
510 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
511 int pos
= io
->byte_pos
+ additional
;
513 pos
%= (runtime
->periods
* io
->byte_per_period
);
518 bool rsnd_dai_pointer_update(struct rsnd_dai_stream
*io
, int byte
)
520 io
->byte_pos
+= byte
;
522 if (io
->byte_pos
>= io
->next_period_byte
) {
523 struct snd_pcm_substream
*substream
= io
->substream
;
524 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
527 io
->next_period_byte
+= io
->byte_per_period
;
529 if (io
->period_pos
>= runtime
->periods
) {
532 io
->next_period_byte
= io
->byte_per_period
;
541 void rsnd_dai_period_elapsed(struct rsnd_dai_stream
*io
)
543 struct snd_pcm_substream
*substream
= io
->substream
;
546 * this function should be called...
548 * - if rsnd_dai_pointer_update() returns true
549 * - without spin lock
552 snd_pcm_period_elapsed(substream
);
555 static void rsnd_dai_stream_init(struct rsnd_dai_stream
*io
,
556 struct snd_pcm_substream
*substream
)
558 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
560 io
->substream
= substream
;
563 io
->byte_per_period
= runtime
->period_size
*
565 samples_to_bytes(runtime
, 1);
566 io
->next_period_byte
= io
->byte_per_period
;
569 static void rsnd_dai_stream_quit(struct rsnd_dai_stream
*io
)
571 io
->substream
= NULL
;
575 struct snd_soc_dai
*rsnd_substream_to_dai(struct snd_pcm_substream
*substream
)
577 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
583 struct rsnd_dai_stream
*rsnd_rdai_to_io(struct rsnd_dai
*rdai
,
584 struct snd_pcm_substream
*substream
)
586 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
587 return &rdai
->playback
;
589 return &rdai
->capture
;
592 static int rsnd_soc_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
593 struct snd_soc_dai
*dai
)
595 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
596 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
597 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
601 spin_lock_irqsave(&priv
->lock
, flags
);
604 case SNDRV_PCM_TRIGGER_START
:
605 case SNDRV_PCM_TRIGGER_RESUME
:
606 rsnd_dai_stream_init(io
, substream
);
608 ret
= rsnd_dai_call(init
, io
, priv
);
610 goto dai_trigger_end
;
612 ret
= rsnd_dai_call(start
, io
, priv
);
614 goto dai_trigger_end
;
616 ret
= rsnd_dai_call(irq
, io
, priv
, 1);
618 goto dai_trigger_end
;
621 case SNDRV_PCM_TRIGGER_STOP
:
622 case SNDRV_PCM_TRIGGER_SUSPEND
:
623 ret
= rsnd_dai_call(irq
, io
, priv
, 0);
625 ret
|= rsnd_dai_call(stop
, io
, priv
);
627 ret
|= rsnd_dai_call(quit
, io
, priv
);
629 rsnd_dai_stream_quit(io
);
636 spin_unlock_irqrestore(&priv
->lock
, flags
);
641 static int rsnd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
643 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
645 /* set master/slave audio interface */
646 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
647 case SND_SOC_DAIFMT_CBM_CFM
:
648 rdai
->clk_master
= 0;
650 case SND_SOC_DAIFMT_CBS_CFS
:
651 rdai
->clk_master
= 1; /* codec is slave, cpu is master */
658 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
659 case SND_SOC_DAIFMT_I2S
:
661 rdai
->data_alignment
= 0;
662 rdai
->frm_clk_inv
= 0;
664 case SND_SOC_DAIFMT_LEFT_J
:
666 rdai
->data_alignment
= 0;
667 rdai
->frm_clk_inv
= 1;
669 case SND_SOC_DAIFMT_RIGHT_J
:
671 rdai
->data_alignment
= 1;
672 rdai
->frm_clk_inv
= 1;
676 /* set clock inversion */
677 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
678 case SND_SOC_DAIFMT_NB_IF
:
679 rdai
->bit_clk_inv
= rdai
->bit_clk_inv
;
680 rdai
->frm_clk_inv
= !rdai
->frm_clk_inv
;
682 case SND_SOC_DAIFMT_IB_NF
:
683 rdai
->bit_clk_inv
= !rdai
->bit_clk_inv
;
684 rdai
->frm_clk_inv
= rdai
->frm_clk_inv
;
686 case SND_SOC_DAIFMT_IB_IF
:
687 rdai
->bit_clk_inv
= !rdai
->bit_clk_inv
;
688 rdai
->frm_clk_inv
= !rdai
->frm_clk_inv
;
690 case SND_SOC_DAIFMT_NB_NF
:
698 static int rsnd_soc_set_dai_tdm_slot(struct snd_soc_dai
*dai
,
699 u32 tx_mask
, u32 rx_mask
,
700 int slots
, int slot_width
)
702 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
703 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
704 struct device
*dev
= rsnd_priv_to_dev(priv
);
708 /* TDM Extend Mode */
709 rsnd_set_slot(rdai
, slots
, 1);
712 dev_err(dev
, "unsupported TDM slots (%d)\n", slots
);
719 static int rsnd_soc_dai_startup(struct snd_pcm_substream
*substream
,
720 struct snd_soc_dai
*dai
)
722 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
723 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
726 * call rsnd_dai_call without spinlock
728 return rsnd_dai_call(nolock_start
, io
, priv
);
731 static void rsnd_soc_dai_shutdown(struct snd_pcm_substream
*substream
,
732 struct snd_soc_dai
*dai
)
734 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
735 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
738 * call rsnd_dai_call without spinlock
740 rsnd_dai_call(nolock_stop
, io
, priv
);
743 static const struct snd_soc_dai_ops rsnd_soc_dai_ops
= {
744 .startup
= rsnd_soc_dai_startup
,
745 .shutdown
= rsnd_soc_dai_shutdown
,
746 .trigger
= rsnd_soc_dai_trigger
,
747 .set_fmt
= rsnd_soc_dai_set_fmt
,
748 .set_tdm_slot
= rsnd_soc_set_dai_tdm_slot
,
751 void rsnd_parse_connect_common(struct rsnd_dai
*rdai
,
752 struct rsnd_mod
* (*mod_get
)(struct rsnd_priv
*priv
, int id
),
753 struct device_node
*node
,
754 struct device_node
*playback
,
755 struct device_node
*capture
)
757 struct rsnd_priv
*priv
= rsnd_rdai_to_priv(rdai
);
758 struct device_node
*np
;
759 struct rsnd_mod
*mod
;
766 for_each_child_of_node(node
, np
) {
767 mod
= mod_get(priv
, i
);
769 rsnd_dai_connect(mod
, &rdai
->playback
, mod
->type
);
771 rsnd_dai_connect(mod
, &rdai
->capture
, mod
->type
);
778 static int rsnd_dai_probe(struct rsnd_priv
*priv
)
780 struct device_node
*dai_node
;
781 struct device_node
*dai_np
;
782 struct device_node
*playback
, *capture
;
783 struct rsnd_dai_stream
*io_playback
;
784 struct rsnd_dai_stream
*io_capture
;
785 struct snd_soc_dai_driver
*rdrv
, *drv
;
786 struct rsnd_dai
*rdai
;
787 struct device
*dev
= rsnd_priv_to_dev(priv
);
791 dai_node
= rsnd_dai_of_node(priv
);
792 nr
= of_get_child_count(dai_node
);
795 goto rsnd_dai_probe_done
;
798 rdrv
= devm_kzalloc(dev
, sizeof(*rdrv
) * nr
, GFP_KERNEL
);
799 rdai
= devm_kzalloc(dev
, sizeof(*rdai
) * nr
, GFP_KERNEL
);
800 if (!rdrv
|| !rdai
) {
802 goto rsnd_dai_probe_done
;
813 for_each_child_of_node(dai_node
, dai_np
) {
814 rdai
= rsnd_rdai_get(priv
, dai_i
);
816 io_playback
= &rdai
->playback
;
817 io_capture
= &rdai
->capture
;
819 snprintf(rdai
->name
, RSND_DAI_NAME_SIZE
, "rsnd-dai.%d", dai_i
);
822 drv
->name
= rdai
->name
;
823 drv
->ops
= &rsnd_soc_dai_ops
;
825 snprintf(rdai
->playback
.name
, RSND_DAI_NAME_SIZE
,
826 "DAI%d Playback", dai_i
);
827 drv
->playback
.rates
= RSND_RATES
;
828 drv
->playback
.formats
= RSND_FMTS
;
829 drv
->playback
.channels_min
= 2;
830 drv
->playback
.channels_max
= 6;
831 drv
->playback
.stream_name
= rdai
->playback
.name
;
833 snprintf(rdai
->capture
.name
, RSND_DAI_NAME_SIZE
,
834 "DAI%d Capture", dai_i
);
835 drv
->capture
.rates
= RSND_RATES
;
836 drv
->capture
.formats
= RSND_FMTS
;
837 drv
->capture
.channels_min
= 2;
838 drv
->capture
.channels_max
= 6;
839 drv
->capture
.stream_name
= rdai
->capture
.name
;
841 rdai
->playback
.rdai
= rdai
;
842 rdai
->capture
.rdai
= rdai
;
843 rsnd_set_slot(rdai
, 2, 1); /* default */
845 for (io_i
= 0;; io_i
++) {
846 playback
= of_parse_phandle(dai_np
, "playback", io_i
);
847 capture
= of_parse_phandle(dai_np
, "capture", io_i
);
849 if (!playback
&& !capture
)
852 rsnd_parse_connect_ssi(rdai
, playback
, capture
);
853 rsnd_parse_connect_src(rdai
, playback
, capture
);
854 rsnd_parse_connect_ctu(rdai
, playback
, capture
);
855 rsnd_parse_connect_mix(rdai
, playback
, capture
);
856 rsnd_parse_connect_dvc(rdai
, playback
, capture
);
858 of_node_put(playback
);
859 of_node_put(capture
);
864 dev_dbg(dev
, "%s (%s/%s)\n", rdai
->name
,
865 rsnd_io_to_mod_ssi(io_playback
) ? "play" : " -- ",
866 rsnd_io_to_mod_ssi(io_capture
) ? "capture" : " -- ");
872 of_node_put(dai_node
);
880 static struct snd_pcm_hardware rsnd_pcm_hardware
= {
881 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
882 SNDRV_PCM_INFO_MMAP
|
883 SNDRV_PCM_INFO_MMAP_VALID
,
884 .buffer_bytes_max
= 64 * 1024,
885 .period_bytes_min
= 32,
886 .period_bytes_max
= 8192,
892 static int rsnd_pcm_open(struct snd_pcm_substream
*substream
)
894 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
897 snd_soc_set_runtime_hwparams(substream
, &rsnd_pcm_hardware
);
899 ret
= snd_pcm_hw_constraint_integer(runtime
,
900 SNDRV_PCM_HW_PARAM_PERIODS
);
905 static int rsnd_hw_params(struct snd_pcm_substream
*substream
,
906 struct snd_pcm_hw_params
*hw_params
)
908 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
909 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
910 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
913 ret
= rsnd_dai_call(hw_params
, io
, substream
, hw_params
);
917 return snd_pcm_lib_malloc_pages(substream
,
918 params_buffer_bytes(hw_params
));
921 static snd_pcm_uframes_t
rsnd_pointer(struct snd_pcm_substream
*substream
)
923 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
924 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
925 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
926 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
928 return bytes_to_frames(runtime
, io
->byte_pos
);
931 static struct snd_pcm_ops rsnd_pcm_ops
= {
932 .open
= rsnd_pcm_open
,
933 .ioctl
= snd_pcm_lib_ioctl
,
934 .hw_params
= rsnd_hw_params
,
935 .hw_free
= snd_pcm_lib_free_pages
,
936 .pointer
= rsnd_pointer
,
942 #define kcontrol_to_cfg(kctrl) ((struct rsnd_kctrl_cfg *)kctrl->private_value)
943 static int rsnd_kctrl_info(struct snd_kcontrol
*kctrl
,
944 struct snd_ctl_elem_info
*uinfo
)
946 struct rsnd_kctrl_cfg
*cfg
= kcontrol_to_cfg(kctrl
);
949 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
950 uinfo
->count
= cfg
->size
;
951 uinfo
->value
.enumerated
.items
= cfg
->max
;
952 if (uinfo
->value
.enumerated
.item
>= cfg
->max
)
953 uinfo
->value
.enumerated
.item
= cfg
->max
- 1;
954 strlcpy(uinfo
->value
.enumerated
.name
,
955 cfg
->texts
[uinfo
->value
.enumerated
.item
],
956 sizeof(uinfo
->value
.enumerated
.name
));
958 uinfo
->count
= cfg
->size
;
959 uinfo
->value
.integer
.min
= 0;
960 uinfo
->value
.integer
.max
= cfg
->max
;
961 uinfo
->type
= (cfg
->max
== 1) ?
962 SNDRV_CTL_ELEM_TYPE_BOOLEAN
:
963 SNDRV_CTL_ELEM_TYPE_INTEGER
;
969 static int rsnd_kctrl_get(struct snd_kcontrol
*kctrl
,
970 struct snd_ctl_elem_value
*uc
)
972 struct rsnd_kctrl_cfg
*cfg
= kcontrol_to_cfg(kctrl
);
975 for (i
= 0; i
< cfg
->size
; i
++)
977 uc
->value
.enumerated
.item
[i
] = cfg
->val
[i
];
979 uc
->value
.integer
.value
[i
] = cfg
->val
[i
];
984 static int rsnd_kctrl_put(struct snd_kcontrol
*kctrl
,
985 struct snd_ctl_elem_value
*uc
)
987 struct rsnd_mod
*mod
= snd_kcontrol_chip(kctrl
);
988 struct rsnd_kctrl_cfg
*cfg
= kcontrol_to_cfg(kctrl
);
991 for (i
= 0; i
< cfg
->size
; i
++) {
993 change
|= (uc
->value
.enumerated
.item
[i
] != cfg
->val
[i
]);
994 cfg
->val
[i
] = uc
->value
.enumerated
.item
[i
];
996 change
|= (uc
->value
.integer
.value
[i
] != cfg
->val
[i
]);
997 cfg
->val
[i
] = uc
->value
.integer
.value
[i
];
1001 if (change
&& cfg
->update
)
1002 cfg
->update(cfg
->io
, mod
);
1007 static int __rsnd_kctrl_new(struct rsnd_mod
*mod
,
1008 struct rsnd_dai_stream
*io
,
1009 struct snd_soc_pcm_runtime
*rtd
,
1010 const unsigned char *name
,
1011 struct rsnd_kctrl_cfg
*cfg
,
1012 void (*update
)(struct rsnd_dai_stream
*io
,
1013 struct rsnd_mod
*mod
))
1015 struct snd_card
*card
= rtd
->card
->snd_card
;
1016 struct snd_kcontrol
*kctrl
;
1017 struct snd_kcontrol_new knew
= {
1018 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1020 .info
= rsnd_kctrl_info
,
1022 .get
= rsnd_kctrl_get
,
1023 .put
= rsnd_kctrl_put
,
1024 .private_value
= (unsigned long)cfg
,
1028 kctrl
= snd_ctl_new1(&knew
, mod
);
1032 ret
= snd_ctl_add(card
, kctrl
);
1034 snd_ctl_free_one(kctrl
);
1038 cfg
->update
= update
;
1046 void _rsnd_kctrl_remove(struct rsnd_kctrl_cfg
*cfg
)
1048 if (cfg
->card
&& cfg
->kctrl
)
1049 snd_ctl_remove(cfg
->card
, cfg
->kctrl
);
1055 int rsnd_kctrl_new_m(struct rsnd_mod
*mod
,
1056 struct rsnd_dai_stream
*io
,
1057 struct snd_soc_pcm_runtime
*rtd
,
1058 const unsigned char *name
,
1059 void (*update
)(struct rsnd_dai_stream
*io
,
1060 struct rsnd_mod
*mod
),
1061 struct rsnd_kctrl_cfg_m
*_cfg
,
1065 if (ch_size
> RSND_MAX_CHANNELS
)
1068 _cfg
->cfg
.max
= max
;
1069 _cfg
->cfg
.size
= ch_size
;
1070 _cfg
->cfg
.val
= _cfg
->val
;
1071 return __rsnd_kctrl_new(mod
, io
, rtd
, name
, &_cfg
->cfg
, update
);
1074 int rsnd_kctrl_new_s(struct rsnd_mod
*mod
,
1075 struct rsnd_dai_stream
*io
,
1076 struct snd_soc_pcm_runtime
*rtd
,
1077 const unsigned char *name
,
1078 void (*update
)(struct rsnd_dai_stream
*io
,
1079 struct rsnd_mod
*mod
),
1080 struct rsnd_kctrl_cfg_s
*_cfg
,
1083 _cfg
->cfg
.max
= max
;
1085 _cfg
->cfg
.val
= &_cfg
->val
;
1086 return __rsnd_kctrl_new(mod
, io
, rtd
, name
, &_cfg
->cfg
, update
);
1089 int rsnd_kctrl_new_e(struct rsnd_mod
*mod
,
1090 struct rsnd_dai_stream
*io
,
1091 struct snd_soc_pcm_runtime
*rtd
,
1092 const unsigned char *name
,
1093 struct rsnd_kctrl_cfg_s
*_cfg
,
1094 void (*update
)(struct rsnd_dai_stream
*io
,
1095 struct rsnd_mod
*mod
),
1096 const char * const *texts
,
1099 _cfg
->cfg
.max
= max
;
1101 _cfg
->cfg
.val
= &_cfg
->val
;
1102 _cfg
->cfg
.texts
= texts
;
1103 return __rsnd_kctrl_new(mod
, io
, rtd
, name
, &_cfg
->cfg
, update
);
1110 #define PREALLOC_BUFFER (32 * 1024)
1111 #define PREALLOC_BUFFER_MAX (32 * 1024)
1113 static int rsnd_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
1115 struct snd_soc_dai
*dai
= rtd
->cpu_dai
;
1116 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1119 ret
= rsnd_dai_call(pcm_new
, &rdai
->playback
, rtd
);
1123 ret
= rsnd_dai_call(pcm_new
, &rdai
->capture
, rtd
);
1127 return snd_pcm_lib_preallocate_pages_for_all(
1129 SNDRV_DMA_TYPE_CONTINUOUS
,
1130 snd_dma_continuous_data(GFP_KERNEL
),
1131 PREALLOC_BUFFER
, PREALLOC_BUFFER_MAX
);
1134 static struct snd_soc_platform_driver rsnd_soc_platform
= {
1135 .ops
= &rsnd_pcm_ops
,
1136 .pcm_new
= rsnd_pcm_new
,
1139 static const struct snd_soc_component_driver rsnd_soc_component
= {
1143 static int rsnd_rdai_continuance_probe(struct rsnd_priv
*priv
,
1144 struct rsnd_dai_stream
*io
)
1148 ret
= rsnd_dai_call(probe
, io
, priv
);
1149 if (ret
== -EAGAIN
) {
1150 struct rsnd_mod
*ssi_mod
= rsnd_io_to_mod_ssi(io
);
1151 struct rsnd_mod
*mod
;
1155 * Fallback to PIO mode
1159 * call "remove" for SSI/SRC/DVC
1160 * SSI will be switch to PIO mode if it was DMA mode
1163 * rsnd_ssi_fallback()
1165 rsnd_dai_call(remove
, io
, priv
);
1168 * remove all mod from io
1169 * and, re connect ssi
1171 for_each_rsnd_mod(i
, mod
, io
)
1172 rsnd_dai_disconnect(mod
, io
, i
);
1173 rsnd_dai_connect(ssi_mod
, io
, RSND_MOD_SSI
);
1178 rsnd_dai_call(fallback
, io
, priv
);
1182 * DAI has SSI which is PIO mode only now.
1184 ret
= rsnd_dai_call(probe
, io
, priv
);
1193 static int rsnd_probe(struct platform_device
*pdev
)
1195 struct rsnd_priv
*priv
;
1196 struct device
*dev
= &pdev
->dev
;
1197 struct rsnd_dai
*rdai
;
1198 int (*probe_func
[])(struct rsnd_priv
*priv
) = {
1216 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
1218 dev_err(dev
, "priv allocate failed\n");
1223 priv
->flags
= (unsigned long)of_device_get_match_data(dev
);
1224 spin_lock_init(&priv
->lock
);
1229 for (i
= 0; i
< ARRAY_SIZE(probe_func
); i
++) {
1230 ret
= probe_func
[i
](priv
);
1235 for_each_rsnd_dai(rdai
, priv
, i
) {
1236 ret
= rsnd_rdai_continuance_probe(priv
, &rdai
->playback
);
1238 goto exit_snd_probe
;
1240 ret
= rsnd_rdai_continuance_probe(priv
, &rdai
->capture
);
1242 goto exit_snd_probe
;
1245 dev_set_drvdata(dev
, priv
);
1250 ret
= snd_soc_register_platform(dev
, &rsnd_soc_platform
);
1252 dev_err(dev
, "cannot snd soc register\n");
1256 ret
= snd_soc_register_component(dev
, &rsnd_soc_component
,
1257 priv
->daidrv
, rsnd_rdai_nr(priv
));
1259 dev_err(dev
, "cannot snd dai register\n");
1263 pm_runtime_enable(dev
);
1265 dev_info(dev
, "probed\n");
1269 snd_soc_unregister_platform(dev
);
1271 for_each_rsnd_dai(rdai
, priv
, i
) {
1272 rsnd_dai_call(remove
, &rdai
->playback
, priv
);
1273 rsnd_dai_call(remove
, &rdai
->capture
, priv
);
1279 static int rsnd_remove(struct platform_device
*pdev
)
1281 struct rsnd_priv
*priv
= dev_get_drvdata(&pdev
->dev
);
1282 struct rsnd_dai
*rdai
;
1283 void (*remove_func
[])(struct rsnd_priv
*priv
) = {
1295 pm_runtime_disable(&pdev
->dev
);
1297 for_each_rsnd_dai(rdai
, priv
, i
) {
1298 ret
|= rsnd_dai_call(remove
, &rdai
->playback
, priv
);
1299 ret
|= rsnd_dai_call(remove
, &rdai
->capture
, priv
);
1302 for (i
= 0; i
< ARRAY_SIZE(remove_func
); i
++)
1303 remove_func
[i
](priv
);
1305 snd_soc_unregister_component(&pdev
->dev
);
1306 snd_soc_unregister_platform(&pdev
->dev
);
1311 static int rsnd_suspend(struct device
*dev
)
1313 struct rsnd_priv
*priv
= dev_get_drvdata(dev
);
1315 rsnd_adg_clk_disable(priv
);
1320 static int rsnd_resume(struct device
*dev
)
1322 struct rsnd_priv
*priv
= dev_get_drvdata(dev
);
1324 rsnd_adg_clk_enable(priv
);
1329 static struct dev_pm_ops rsnd_pm_ops
= {
1330 .suspend
= rsnd_suspend
,
1331 .resume
= rsnd_resume
,
1334 static struct platform_driver rsnd_driver
= {
1336 .name
= "rcar_sound",
1338 .of_match_table
= rsnd_of_match
,
1340 .probe
= rsnd_probe
,
1341 .remove
= rsnd_remove
,
1343 module_platform_driver(rsnd_driver
);
1345 MODULE_LICENSE("GPL");
1346 MODULE_DESCRIPTION("Renesas R-Car audio driver");
1347 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
1348 MODULE_ALIAS("platform:rcar-pcm-audio");