1 // SPDX-License-Identifier: GPL-2.0
3 // Renesas R-Car SRU/SCU/SSIU/SSI support
5 // Copyright (C) 2013 Renesas Solutions Corp.
6 // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
9 // Kuninori Morimoto <morimoto.kuninori@renesas.com>
12 * Renesas R-Car sound device structure
16 * SRU : Sound Routing Unit
17 * - SRC : Sampling Rate Converter
19 * - CTU : Channel Count Conversion Unit
21 * - DVC : Digital Volume and Mute Function
22 * - SSI : Serial Sound Interface
26 * SCU : Sampling Rate Converter Unit
27 * - SRC : Sampling Rate Converter
29 * - CTU : Channel Count Conversion Unit
31 * - DVC : Digital Volume and Mute Function
32 * SSIU : Serial Sound Interface Unit
33 * - SSI : Serial Sound Interface
41 * | ** this depends on Gen1/Gen2
45 * | ** these depend on data path
46 * | ** gen and platform data control it
50 * | +- playback -> [mod] -> [mod] -> [mod] -> ...
53 * | +- capture -> [mod] -> [mod] -> [mod] -> ...
57 * | +- playback -> [mod] -> [mod] -> [mod] -> ...
60 * | +- capture -> [mod] -> [mod] -> [mod] -> ...
63 * | ** these control ssi
72 * | ** these control src
82 * for_each_rsnd_dai(xx, priv, xx)
83 * rdai[0] => rdai[1] => rdai[2] => ...
85 * for_each_rsnd_mod(xx, rdai, xx)
86 * [mod] => [mod] => [mod] => ...
88 * rsnd_dai_call(xxx, fn )
89 * [mod]->fn() -> [mod]->fn() -> [mod]->fn()...
94 * you can enable below define if you don't need
95 * DAI status debug message when debugging
96 * see rsnd_dbg_dai_call()
98 * #define RSND_DEBUG_NO_DAI_CALL 1
101 #include <linux/pm_runtime.h>
104 #define RSND_RATES SNDRV_PCM_RATE_8000_192000
105 #define RSND_FMTS (SNDRV_PCM_FMTBIT_S8 |\
106 SNDRV_PCM_FMTBIT_S16_LE |\
107 SNDRV_PCM_FMTBIT_S24_LE)
109 static const struct of_device_id rsnd_of_match
[] = {
110 { .compatible
= "renesas,rcar_sound-gen1", .data
= (void *)RSND_GEN1
},
111 { .compatible
= "renesas,rcar_sound-gen2", .data
= (void *)RSND_GEN2
},
112 { .compatible
= "renesas,rcar_sound-gen3", .data
= (void *)RSND_GEN3
},
113 /* Special Handling */
114 { .compatible
= "renesas,rcar_sound-r8a77990", .data
= (void *)(RSND_GEN3
| RSND_SOC_E
) },
117 MODULE_DEVICE_TABLE(of
, rsnd_of_match
);
122 void rsnd_mod_make_sure(struct rsnd_mod
*mod
, enum rsnd_mod_type type
)
124 if (mod
->type
!= type
) {
125 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
126 struct device
*dev
= rsnd_priv_to_dev(priv
);
128 dev_warn(dev
, "%s is not your expected module\n",
133 struct dma_chan
*rsnd_mod_dma_req(struct rsnd_dai_stream
*io
,
134 struct rsnd_mod
*mod
)
136 if (!mod
|| !mod
->ops
|| !mod
->ops
->dma_req
)
139 return mod
->ops
->dma_req(io
, mod
);
142 #define MOD_NAME_NUM 5
143 #define MOD_NAME_SIZE 16
144 char *rsnd_mod_name(struct rsnd_mod
*mod
)
146 static char names
[MOD_NAME_NUM
][MOD_NAME_SIZE
];
148 char *name
= names
[num
];
151 if (num
>= MOD_NAME_NUM
)
155 * Let's use same char to avoid pointlessness memory
156 * Thus, rsnd_mod_name() should be used immediately
159 if ((mod
)->ops
->id_sub
) {
160 snprintf(name
, MOD_NAME_SIZE
, "%s[%d%d]",
163 rsnd_mod_id_sub(mod
));
165 snprintf(name
, MOD_NAME_SIZE
, "%s[%d]",
173 u32
*rsnd_mod_get_status(struct rsnd_mod
*mod
,
174 struct rsnd_dai_stream
*io
,
175 enum rsnd_mod_type type
)
180 int rsnd_mod_id_raw(struct rsnd_mod
*mod
)
185 int rsnd_mod_id(struct rsnd_mod
*mod
)
188 return (mod
)->ops
->id(mod
);
190 return rsnd_mod_id_raw(mod
);
193 int rsnd_mod_id_sub(struct rsnd_mod
*mod
)
195 if ((mod
)->ops
->id_sub
)
196 return (mod
)->ops
->id_sub(mod
);
201 int rsnd_mod_init(struct rsnd_priv
*priv
,
202 struct rsnd_mod
*mod
,
203 struct rsnd_mod_ops
*ops
,
205 enum rsnd_mod_type type
,
208 int ret
= clk_prepare(clk
);
222 void rsnd_mod_quit(struct rsnd_mod
*mod
)
224 clk_unprepare(mod
->clk
);
228 void rsnd_mod_interrupt(struct rsnd_mod
*mod
,
229 void (*callback
)(struct rsnd_mod
*mod
,
230 struct rsnd_dai_stream
*io
))
232 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
233 struct rsnd_dai_stream
*io
;
234 struct rsnd_dai
*rdai
;
237 for_each_rsnd_dai(rdai
, priv
, i
) {
238 io
= &rdai
->playback
;
239 if (mod
== io
->mod
[mod
->type
])
243 if (mod
== io
->mod
[mod
->type
])
248 int rsnd_io_is_working(struct rsnd_dai_stream
*io
)
250 /* see rsnd_dai_stream_init/quit() */
252 return snd_pcm_running(io
->substream
);
257 int rsnd_runtime_channel_original_with_params(struct rsnd_dai_stream
*io
,
258 struct snd_pcm_hw_params
*params
)
260 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
263 * params will be added when refine
265 * __rsnd_soc_hw_rule_rate()
266 * __rsnd_soc_hw_rule_channels()
269 return params_channels(params
);
271 return runtime
->channels
;
274 int rsnd_runtime_channel_after_ctu_with_params(struct rsnd_dai_stream
*io
,
275 struct snd_pcm_hw_params
*params
)
277 int chan
= rsnd_runtime_channel_original_with_params(io
, params
);
278 struct rsnd_mod
*ctu_mod
= rsnd_io_to_mod_ctu(io
);
281 u32 converted_chan
= rsnd_io_converted_chan(io
);
286 * converted_chan will be used for CTU,
288 * User shouldn't use CTU with TDM Split mode.
290 if (rsnd_runtime_is_tdm_split(io
)) {
291 struct device
*dev
= rsnd_priv_to_dev(rsnd_io_to_priv(io
));
293 dev_err(dev
, "CTU and TDM Split should be used\n");
297 return converted_chan
;
303 int rsnd_channel_normalization(int chan
)
305 if (WARN_ON((chan
> 8) || (chan
< 0)))
308 /* TDM Extend Mode needs 8ch */
315 int rsnd_runtime_channel_for_ssi_with_params(struct rsnd_dai_stream
*io
,
316 struct snd_pcm_hw_params
*params
)
318 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
319 int chan
= rsnd_io_is_play(io
) ?
320 rsnd_runtime_channel_after_ctu_with_params(io
, params
) :
321 rsnd_runtime_channel_original_with_params(io
, params
);
324 if (rsnd_runtime_is_multi_ssi(io
))
325 chan
/= rsnd_rdai_ssi_lane_get(rdai
);
327 return rsnd_channel_normalization(chan
);
330 int rsnd_runtime_is_multi_ssi(struct rsnd_dai_stream
*io
)
332 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
333 int lane
= rsnd_rdai_ssi_lane_get(rdai
);
334 int chan
= rsnd_io_is_play(io
) ?
335 rsnd_runtime_channel_after_ctu(io
) :
336 rsnd_runtime_channel_original(io
);
338 return (chan
> 2) && (lane
> 1);
341 int rsnd_runtime_is_tdm(struct rsnd_dai_stream
*io
)
343 return rsnd_runtime_channel_for_ssi(io
) >= 6;
346 int rsnd_runtime_is_tdm_split(struct rsnd_dai_stream
*io
)
348 return !!rsnd_flags_has(io
, RSND_STREAM_TDM_SPLIT
);
354 u32
rsnd_get_adinr_bit(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
)
356 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
357 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
358 struct device
*dev
= rsnd_priv_to_dev(priv
);
360 switch (snd_pcm_format_width(runtime
->format
)) {
369 dev_warn(dev
, "not supported sample bits\n");
377 u32
rsnd_get_dalign(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
)
379 static const u32 dalign_values
[8] = {
380 0x76543210, 0x00000032, 0x00007654, 0x00000076,
381 0xfedcba98, 0x000000ba, 0x0000fedc, 0x000000fe,
384 struct rsnd_mod
*ssiu
= rsnd_io_to_mod_ssiu(io
);
385 struct rsnd_mod
*target
;
386 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
390 * *Hardware* L/R and *Software* L/R are inverted for 16bit data.
394 * We need to care about inversion timing to control
395 * Playback/Capture correctly.
396 * The point is [DVC] needs *Hardware* L/R, [MEM] needs *Software* L/R
398 * sL/R : software L/R
399 * hL/R : hardware L/R
400 * (*) : conversion timing
403 * sL/R (*) hL/R hL/R hL/R hL/R hL/R
404 * [MEM] -> [SRC] -> [DVC] -> [CMD] -> [SSIU] -> [SSI] -> codec
407 * hL/R hL/R hL/R hL/R hL/R (*) sL/R
408 * codec -> [SSI] -> [SSIU] -> [SRC] -> [DVC] -> [CMD] -> [MEM]
410 if (rsnd_io_is_play(io
)) {
411 struct rsnd_mod
*src
= rsnd_io_to_mod_src(io
);
413 target
= src
? src
: ssiu
;
415 struct rsnd_mod
*cmd
= rsnd_io_to_mod_cmd(io
);
417 target
= cmd
? cmd
: ssiu
;
421 id
= rsnd_mod_id_sub(mod
);
423 dalign
= dalign_values
[id
];
425 if (mod
== target
&& snd_pcm_format_width(runtime
->format
) == 16) {
426 /* Target mod needs inverted DALIGN when 16bit */
427 dalign
= (dalign
& 0xf0f0f0f0) >> 4 |
428 (dalign
& 0x0f0f0f0f) << 4;
434 u32
rsnd_get_busif_shift(struct rsnd_dai_stream
*io
, struct rsnd_mod
*mod
)
436 enum rsnd_mod_type playback_mods
[] = {
441 enum rsnd_mod_type capture_mods
[] = {
446 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
447 struct rsnd_mod
*tmod
= NULL
;
448 enum rsnd_mod_type
*mods
=
449 rsnd_io_is_play(io
) ?
450 playback_mods
: capture_mods
;
454 * This is needed for 24bit data
455 * We need to shift 8bit
457 * Linux 24bit data is located as 0x00******
458 * HW 24bit data is located as 0x******00
461 if (snd_pcm_format_width(runtime
->format
) != 24)
464 for (i
= 0; i
< ARRAY_SIZE(playback_mods
); i
++) {
465 tmod
= rsnd_io_to_mod(io
, mods
[i
]);
473 if (rsnd_io_is_play(io
))
474 return (0 << 20) | /* shift to Left */
475 (8 << 16); /* 8bit */
477 return (1 << 20) | /* shift to Right */
478 (8 << 16); /* 8bit */
484 struct rsnd_mod
*rsnd_mod_next(int *iterator
,
485 struct rsnd_dai_stream
*io
,
486 enum rsnd_mod_type
*array
,
489 struct rsnd_mod
*mod
;
490 enum rsnd_mod_type type
;
491 int max
= array
? array_size
: RSND_MOD_MAX
;
493 for (; *iterator
< max
; (*iterator
)++) {
494 type
= (array
) ? array
[*iterator
] : *iterator
;
495 mod
= rsnd_io_to_mod(io
, type
);
503 static enum rsnd_mod_type rsnd_mod_sequence
[][RSND_MOD_MAX
] = {
537 static int rsnd_status_update(u32
*status
,
538 int shift
, int add
, int timing
)
540 u32 mask
= 0xF << shift
;
541 u8 val
= (*status
>> shift
) & 0xF;
542 u8 next_val
= (val
+ add
) & 0xF;
543 int func_call
= (val
== timing
);
545 if (next_val
== 0xF) /* underflow case */
548 *status
= (*status
& ~mask
) + (next_val
<< shift
);
553 #define rsnd_dai_call(fn, io, param...) \
555 struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io)); \
556 struct rsnd_mod *mod; \
557 int is_play = rsnd_io_is_play(io); \
559 enum rsnd_mod_type *types = rsnd_mod_sequence[is_play]; \
560 for_each_rsnd_mod_arrays(i, mod, io, types, RSND_MOD_MAX) { \
562 u32 *status = mod->ops->get_status(mod, io, types[i]); \
563 int func_call = rsnd_status_update(status, \
564 __rsnd_mod_shift_##fn, \
565 __rsnd_mod_add_##fn, \
566 __rsnd_mod_call_##fn); \
567 rsnd_dbg_dai_call(dev, "%s\t0x%08x %s\n", \
568 rsnd_mod_name(mod), *status, \
569 (func_call && (mod)->ops->fn) ? #fn : ""); \
570 if (func_call && (mod)->ops->fn) \
571 tmp = (mod)->ops->fn(mod, io, param); \
572 if (tmp && (tmp != -EPROBE_DEFER)) \
573 dev_err(dev, "%s : %s error %d\n", \
574 rsnd_mod_name(mod), #fn, tmp); \
580 int rsnd_dai_connect(struct rsnd_mod
*mod
,
581 struct rsnd_dai_stream
*io
,
582 enum rsnd_mod_type type
)
584 struct rsnd_priv
*priv
;
590 if (io
->mod
[type
] == mod
)
596 priv
= rsnd_mod_to_priv(mod
);
597 dev
= rsnd_priv_to_dev(priv
);
601 dev_dbg(dev
, "%s is connected to io (%s)\n",
603 rsnd_io_is_play(io
) ? "Playback" : "Capture");
608 static void rsnd_dai_disconnect(struct rsnd_mod
*mod
,
609 struct rsnd_dai_stream
*io
,
610 enum rsnd_mod_type type
)
612 io
->mod
[type
] = NULL
;
615 int rsnd_rdai_channels_ctrl(struct rsnd_dai
*rdai
,
618 if (max_channels
> 0)
619 rdai
->max_channels
= max_channels
;
621 return rdai
->max_channels
;
624 int rsnd_rdai_ssi_lane_ctrl(struct rsnd_dai
*rdai
,
628 rdai
->ssi_lane
= ssi_lane
;
630 return rdai
->ssi_lane
;
633 int rsnd_rdai_width_ctrl(struct rsnd_dai
*rdai
, int width
)
636 rdai
->chan_width
= width
;
638 return rdai
->chan_width
;
641 struct rsnd_dai
*rsnd_rdai_get(struct rsnd_priv
*priv
, int id
)
643 if ((id
< 0) || (id
>= rsnd_rdai_nr(priv
)))
646 return priv
->rdai
+ id
;
649 static struct snd_soc_dai_driver
650 *rsnd_daidrv_get(struct rsnd_priv
*priv
, int id
)
652 if ((id
< 0) || (id
>= rsnd_rdai_nr(priv
)))
655 return priv
->daidrv
+ id
;
658 #define rsnd_dai_to_priv(dai) snd_soc_dai_get_drvdata(dai)
659 static struct rsnd_dai
*rsnd_dai_to_rdai(struct snd_soc_dai
*dai
)
661 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
663 return rsnd_rdai_get(priv
, dai
->id
);
667 * rsnd_soc_dai functions
669 void rsnd_dai_period_elapsed(struct rsnd_dai_stream
*io
)
671 struct snd_pcm_substream
*substream
= io
->substream
;
674 * this function should be called...
676 * - if rsnd_dai_pointer_update() returns true
677 * - without spin lock
680 snd_pcm_period_elapsed(substream
);
683 static void rsnd_dai_stream_init(struct rsnd_dai_stream
*io
,
684 struct snd_pcm_substream
*substream
)
686 io
->substream
= substream
;
689 static void rsnd_dai_stream_quit(struct rsnd_dai_stream
*io
)
691 io
->substream
= NULL
;
695 struct snd_soc_dai
*rsnd_substream_to_dai(struct snd_pcm_substream
*substream
)
697 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
699 return asoc_rtd_to_cpu(rtd
, 0);
703 struct rsnd_dai_stream
*rsnd_rdai_to_io(struct rsnd_dai
*rdai
,
704 struct snd_pcm_substream
*substream
)
706 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
707 return &rdai
->playback
;
709 return &rdai
->capture
;
712 static int rsnd_soc_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
713 struct snd_soc_dai
*dai
)
715 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
716 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
717 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
721 spin_lock_irqsave(&priv
->lock
, flags
);
724 case SNDRV_PCM_TRIGGER_START
:
725 case SNDRV_PCM_TRIGGER_RESUME
:
726 ret
= rsnd_dai_call(init
, io
, priv
);
728 goto dai_trigger_end
;
730 ret
= rsnd_dai_call(start
, io
, priv
);
732 goto dai_trigger_end
;
734 ret
= rsnd_dai_call(irq
, io
, priv
, 1);
736 goto dai_trigger_end
;
739 case SNDRV_PCM_TRIGGER_STOP
:
740 case SNDRV_PCM_TRIGGER_SUSPEND
:
741 ret
= rsnd_dai_call(irq
, io
, priv
, 0);
743 ret
|= rsnd_dai_call(stop
, io
, priv
);
745 ret
|= rsnd_dai_call(quit
, io
, priv
);
753 spin_unlock_irqrestore(&priv
->lock
, flags
);
758 static int rsnd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
760 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
762 /* set clock master for audio interface */
763 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
764 case SND_SOC_DAIFMT_CBM_CFM
:
765 rdai
->clk_master
= 0;
767 case SND_SOC_DAIFMT_CBS_CFS
:
768 rdai
->clk_master
= 1; /* cpu is master */
775 rdai
->bit_clk_inv
= 0;
776 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
777 case SND_SOC_DAIFMT_I2S
:
779 rdai
->data_alignment
= 0;
780 rdai
->frm_clk_inv
= 0;
782 case SND_SOC_DAIFMT_LEFT_J
:
783 case SND_SOC_DAIFMT_DSP_B
:
785 rdai
->data_alignment
= 0;
786 rdai
->frm_clk_inv
= 1;
788 case SND_SOC_DAIFMT_RIGHT_J
:
790 rdai
->data_alignment
= 1;
791 rdai
->frm_clk_inv
= 1;
793 case SND_SOC_DAIFMT_DSP_A
:
795 rdai
->data_alignment
= 0;
796 rdai
->frm_clk_inv
= 1;
800 /* set clock inversion */
801 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
802 case SND_SOC_DAIFMT_NB_IF
:
803 rdai
->frm_clk_inv
= !rdai
->frm_clk_inv
;
805 case SND_SOC_DAIFMT_IB_NF
:
806 rdai
->bit_clk_inv
= !rdai
->bit_clk_inv
;
808 case SND_SOC_DAIFMT_IB_IF
:
809 rdai
->bit_clk_inv
= !rdai
->bit_clk_inv
;
810 rdai
->frm_clk_inv
= !rdai
->frm_clk_inv
;
812 case SND_SOC_DAIFMT_NB_NF
:
820 static int rsnd_soc_set_dai_tdm_slot(struct snd_soc_dai
*dai
,
821 u32 tx_mask
, u32 rx_mask
,
822 int slots
, int slot_width
)
824 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
825 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
826 struct device
*dev
= rsnd_priv_to_dev(priv
);
828 switch (slot_width
) {
843 /* TDM Extend Mode */
844 rsnd_rdai_channels_set(rdai
, slots
);
845 rsnd_rdai_ssi_lane_set(rdai
, 1);
846 rsnd_rdai_width_set(rdai
, slot_width
);
849 dev_err(dev
, "unsupported TDM slots (%d)\n", slots
);
856 static unsigned int rsnd_soc_hw_channels_list
[] = {
860 static unsigned int rsnd_soc_hw_rate_list
[] = {
875 static int rsnd_soc_hw_rule(struct rsnd_dai
*rdai
,
876 unsigned int *list
, int list_num
,
877 struct snd_interval
*baseline
, struct snd_interval
*iv
)
879 struct snd_interval p
;
883 snd_interval_any(&p
);
887 for (i
= 0; i
< list_num
; i
++) {
889 if (!snd_interval_test(iv
, list
[i
]))
892 rate
= rsnd_ssi_clk_query(rdai
,
893 baseline
->min
, list
[i
], NULL
);
895 p
.min
= min(p
.min
, list
[i
]);
896 p
.max
= max(p
.max
, list
[i
]);
899 rate
= rsnd_ssi_clk_query(rdai
,
900 baseline
->max
, list
[i
], NULL
);
902 p
.min
= min(p
.min
, list
[i
]);
903 p
.max
= max(p
.max
, list
[i
]);
907 return snd_interval_refine(iv
, &p
);
910 static int rsnd_soc_hw_rule_rate(struct snd_pcm_hw_params
*params
,
911 struct snd_pcm_hw_rule
*rule
)
913 struct snd_interval
*ic_
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
914 struct snd_interval
*ir
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
915 struct snd_interval ic
;
916 struct rsnd_dai_stream
*io
= rule
->private;
917 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
920 * possible sampling rate limitation is same as
921 * 2ch if it supports multi ssi
922 * and same as 8ch if TDM 6ch (see rsnd_ssi_config_init())
926 ic
.max
= rsnd_runtime_channel_for_ssi_with_params(io
, params
);
928 return rsnd_soc_hw_rule(rdai
, rsnd_soc_hw_rate_list
,
929 ARRAY_SIZE(rsnd_soc_hw_rate_list
),
933 static int rsnd_soc_hw_rule_channels(struct snd_pcm_hw_params
*params
,
934 struct snd_pcm_hw_rule
*rule
)
936 struct snd_interval
*ic_
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
937 struct snd_interval
*ir
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
938 struct snd_interval ic
;
939 struct rsnd_dai_stream
*io
= rule
->private;
940 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
943 * possible sampling rate limitation is same as
944 * 2ch if it supports multi ssi
945 * and same as 8ch if TDM 6ch (see rsnd_ssi_config_init())
949 ic
.max
= rsnd_runtime_channel_for_ssi_with_params(io
, params
);
951 return rsnd_soc_hw_rule(rdai
, rsnd_soc_hw_channels_list
,
952 ARRAY_SIZE(rsnd_soc_hw_channels_list
),
956 static const struct snd_pcm_hardware rsnd_pcm_hardware
= {
957 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
958 SNDRV_PCM_INFO_MMAP
|
959 SNDRV_PCM_INFO_MMAP_VALID
,
960 .buffer_bytes_max
= 64 * 1024,
961 .period_bytes_min
= 32,
962 .period_bytes_max
= 8192,
968 static int rsnd_soc_dai_startup(struct snd_pcm_substream
*substream
,
969 struct snd_soc_dai
*dai
)
971 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
972 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
973 struct snd_pcm_hw_constraint_list
*constraint
= &rdai
->constraint
;
974 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
975 unsigned int max_channels
= rsnd_rdai_channels_get(rdai
);
978 rsnd_dai_stream_init(io
, substream
);
982 * It depends on Platform design
984 constraint
->list
= rsnd_soc_hw_channels_list
;
985 constraint
->count
= 0;
986 constraint
->mask
= 0;
988 for (i
= 0; i
< ARRAY_SIZE(rsnd_soc_hw_channels_list
); i
++) {
989 if (rsnd_soc_hw_channels_list
[i
] > max_channels
)
991 constraint
->count
= i
+ 1;
994 snd_soc_set_runtime_hwparams(substream
, &rsnd_pcm_hardware
);
996 snd_pcm_hw_constraint_list(runtime
, 0,
997 SNDRV_PCM_HW_PARAM_CHANNELS
, constraint
);
999 snd_pcm_hw_constraint_integer(runtime
,
1000 SNDRV_PCM_HW_PARAM_PERIODS
);
1003 * Sampling Rate / Channel Limitation
1004 * It depends on Clock Master Mode
1006 if (rsnd_rdai_is_clk_master(rdai
)) {
1007 int is_play
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
1009 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1010 rsnd_soc_hw_rule_rate
,
1011 is_play
? &rdai
->playback
: &rdai
->capture
,
1012 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1013 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1014 rsnd_soc_hw_rule_channels
,
1015 is_play
? &rdai
->playback
: &rdai
->capture
,
1016 SNDRV_PCM_HW_PARAM_RATE
, -1);
1022 static void rsnd_soc_dai_shutdown(struct snd_pcm_substream
*substream
,
1023 struct snd_soc_dai
*dai
)
1025 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1026 struct rsnd_priv
*priv
= rsnd_rdai_to_priv(rdai
);
1027 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
1030 * call rsnd_dai_call without spinlock
1032 rsnd_dai_call(cleanup
, io
, priv
);
1034 rsnd_dai_stream_quit(io
);
1037 static int rsnd_soc_dai_prepare(struct snd_pcm_substream
*substream
,
1038 struct snd_soc_dai
*dai
)
1040 struct rsnd_priv
*priv
= rsnd_dai_to_priv(dai
);
1041 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1042 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
1044 return rsnd_dai_call(prepare
, io
, priv
);
1047 static const struct snd_soc_dai_ops rsnd_soc_dai_ops
= {
1048 .startup
= rsnd_soc_dai_startup
,
1049 .shutdown
= rsnd_soc_dai_shutdown
,
1050 .trigger
= rsnd_soc_dai_trigger
,
1051 .set_fmt
= rsnd_soc_dai_set_fmt
,
1052 .set_tdm_slot
= rsnd_soc_set_dai_tdm_slot
,
1053 .prepare
= rsnd_soc_dai_prepare
,
1056 static void rsnd_parse_tdm_split_mode(struct rsnd_priv
*priv
,
1057 struct rsnd_dai_stream
*io
,
1058 struct device_node
*dai_np
)
1060 struct device
*dev
= rsnd_priv_to_dev(priv
);
1061 struct device_node
*ssiu_np
= rsnd_ssiu_of_node(priv
);
1062 struct device_node
*np
;
1063 int is_play
= rsnd_io_is_play(io
);
1070 * This driver assumes that it is TDM Split mode
1071 * if it includes ssiu node
1074 struct device_node
*node
= is_play
?
1075 of_parse_phandle(dai_np
, "playback", i
) :
1076 of_parse_phandle(dai_np
, "capture", i
);
1082 for_each_child_of_node(ssiu_np
, np
) {
1084 rsnd_flags_set(io
, RSND_STREAM_TDM_SPLIT
);
1085 dev_dbg(dev
, "%s is part of TDM Split\n", io
->name
);
1093 of_node_put(ssiu_np
);
1096 static void rsnd_parse_connect_simple(struct rsnd_priv
*priv
,
1097 struct rsnd_dai_stream
*io
,
1098 struct device_node
*dai_np
)
1100 if (!rsnd_io_to_mod_ssi(io
))
1103 rsnd_parse_tdm_split_mode(priv
, io
, dai_np
);
1106 static void rsnd_parse_connect_graph(struct rsnd_priv
*priv
,
1107 struct rsnd_dai_stream
*io
,
1108 struct device_node
*endpoint
)
1110 struct device
*dev
= rsnd_priv_to_dev(priv
);
1111 struct device_node
*remote_node
;
1113 if (!rsnd_io_to_mod_ssi(io
))
1116 remote_node
= of_graph_get_remote_port_parent(endpoint
);
1119 if (strstr(remote_node
->full_name
, "hdmi@fead0000")) {
1120 rsnd_flags_set(io
, RSND_STREAM_HDMI0
);
1121 dev_dbg(dev
, "%s connected to HDMI0\n", io
->name
);
1125 if (strstr(remote_node
->full_name
, "hdmi@feae0000")) {
1126 rsnd_flags_set(io
, RSND_STREAM_HDMI1
);
1127 dev_dbg(dev
, "%s connected to HDMI1\n", io
->name
);
1130 rsnd_parse_tdm_split_mode(priv
, io
, endpoint
);
1132 of_node_put(remote_node
);
1135 void rsnd_parse_connect_common(struct rsnd_dai
*rdai
,
1136 struct rsnd_mod
* (*mod_get
)(struct rsnd_priv
*priv
, int id
),
1137 struct device_node
*node
,
1138 struct device_node
*playback
,
1139 struct device_node
*capture
)
1141 struct rsnd_priv
*priv
= rsnd_rdai_to_priv(rdai
);
1142 struct device_node
*np
;
1143 struct rsnd_mod
*mod
;
1150 for_each_child_of_node(node
, np
) {
1151 mod
= mod_get(priv
, i
);
1153 rsnd_dai_connect(mod
, &rdai
->playback
, mod
->type
);
1155 rsnd_dai_connect(mod
, &rdai
->capture
, mod
->type
);
1162 static struct device_node
*rsnd_dai_of_node(struct rsnd_priv
*priv
,
1165 struct device
*dev
= rsnd_priv_to_dev(priv
);
1166 struct device_node
*np
= dev
->of_node
;
1167 struct device_node
*dai_node
;
1168 struct device_node
*ret
;
1173 * parse both previous dai (= rcar_sound,dai), and
1174 * graph dai (= ports/port)
1176 dai_node
= of_get_child_by_name(np
, RSND_NODE_DAI
);
1179 goto of_node_compatible
;
1184 dai_node
= of_graph_get_next_endpoint(np
, NULL
);
1193 of_node_put(dai_node
);
1199 #define PREALLOC_BUFFER (32 * 1024)
1200 #define PREALLOC_BUFFER_MAX (32 * 1024)
1202 static int rsnd_preallocate_pages(struct snd_soc_pcm_runtime
*rtd
,
1203 struct rsnd_dai_stream
*io
,
1206 struct rsnd_priv
*priv
= rsnd_io_to_priv(io
);
1207 struct device
*dev
= rsnd_priv_to_dev(priv
);
1208 struct snd_pcm_substream
*substream
;
1211 * use Audio-DMAC dev if we can use IPMMU
1213 * rsnd_dmaen_attach()
1218 for (substream
= rtd
->pcm
->streams
[stream
].substream
;
1220 substream
= substream
->next
) {
1221 snd_pcm_set_managed_buffer(substream
,
1224 PREALLOC_BUFFER
, PREALLOC_BUFFER_MAX
);
1230 static int rsnd_pcm_new(struct snd_soc_pcm_runtime
*rtd
,
1231 struct snd_soc_dai
*dai
)
1233 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1236 ret
= rsnd_dai_call(pcm_new
, &rdai
->playback
, rtd
);
1240 ret
= rsnd_dai_call(pcm_new
, &rdai
->capture
, rtd
);
1244 ret
= rsnd_preallocate_pages(rtd
, &rdai
->playback
,
1245 SNDRV_PCM_STREAM_PLAYBACK
);
1249 ret
= rsnd_preallocate_pages(rtd
, &rdai
->capture
,
1250 SNDRV_PCM_STREAM_CAPTURE
);
1257 static void __rsnd_dai_probe(struct rsnd_priv
*priv
,
1258 struct device_node
*dai_np
,
1261 struct device_node
*playback
, *capture
;
1262 struct rsnd_dai_stream
*io_playback
;
1263 struct rsnd_dai_stream
*io_capture
;
1264 struct snd_soc_dai_driver
*drv
;
1265 struct rsnd_dai
*rdai
;
1266 struct device
*dev
= rsnd_priv_to_dev(priv
);
1269 rdai
= rsnd_rdai_get(priv
, dai_i
);
1270 drv
= rsnd_daidrv_get(priv
, dai_i
);
1271 io_playback
= &rdai
->playback
;
1272 io_capture
= &rdai
->capture
;
1274 snprintf(rdai
->name
, RSND_DAI_NAME_SIZE
, "rsnd-dai.%d", dai_i
);
1277 drv
->name
= rdai
->name
;
1278 drv
->ops
= &rsnd_soc_dai_ops
;
1279 drv
->pcm_new
= rsnd_pcm_new
;
1281 snprintf(io_playback
->name
, RSND_DAI_NAME_SIZE
,
1282 "DAI%d Playback", dai_i
);
1283 drv
->playback
.rates
= RSND_RATES
;
1284 drv
->playback
.formats
= RSND_FMTS
;
1285 drv
->playback
.channels_min
= 2;
1286 drv
->playback
.channels_max
= 8;
1287 drv
->playback
.stream_name
= io_playback
->name
;
1289 snprintf(io_capture
->name
, RSND_DAI_NAME_SIZE
,
1290 "DAI%d Capture", dai_i
);
1291 drv
->capture
.rates
= RSND_RATES
;
1292 drv
->capture
.formats
= RSND_FMTS
;
1293 drv
->capture
.channels_min
= 2;
1294 drv
->capture
.channels_max
= 8;
1295 drv
->capture
.stream_name
= io_capture
->name
;
1297 io_playback
->rdai
= rdai
;
1298 io_capture
->rdai
= rdai
;
1299 rsnd_rdai_channels_set(rdai
, 2); /* default 2ch */
1300 rsnd_rdai_ssi_lane_set(rdai
, 1); /* default 1lane */
1301 rsnd_rdai_width_set(rdai
, 32); /* default 32bit width */
1303 for (io_i
= 0;; io_i
++) {
1304 playback
= of_parse_phandle(dai_np
, "playback", io_i
);
1305 capture
= of_parse_phandle(dai_np
, "capture", io_i
);
1307 if (!playback
&& !capture
)
1310 rsnd_parse_connect_ssi(rdai
, playback
, capture
);
1311 rsnd_parse_connect_ssiu(rdai
, playback
, capture
);
1312 rsnd_parse_connect_src(rdai
, playback
, capture
);
1313 rsnd_parse_connect_ctu(rdai
, playback
, capture
);
1314 rsnd_parse_connect_mix(rdai
, playback
, capture
);
1315 rsnd_parse_connect_dvc(rdai
, playback
, capture
);
1317 of_node_put(playback
);
1318 of_node_put(capture
);
1321 if (rsnd_ssi_is_pin_sharing(io_capture
) ||
1322 rsnd_ssi_is_pin_sharing(io_playback
)) {
1323 /* should have symmetric_rates if pin sharing */
1324 drv
->symmetric_rates
= 1;
1327 dev_dbg(dev
, "%s (%s/%s)\n", rdai
->name
,
1328 rsnd_io_to_mod_ssi(io_playback
) ? "play" : " -- ",
1329 rsnd_io_to_mod_ssi(io_capture
) ? "capture" : " -- ");
1332 static int rsnd_dai_probe(struct rsnd_priv
*priv
)
1334 struct device_node
*dai_node
;
1335 struct device_node
*dai_np
;
1336 struct snd_soc_dai_driver
*rdrv
;
1337 struct device
*dev
= rsnd_priv_to_dev(priv
);
1338 struct rsnd_dai
*rdai
;
1343 dai_node
= rsnd_dai_of_node(priv
, &is_graph
);
1345 nr
= of_graph_get_endpoint_count(dai_node
);
1347 nr
= of_get_child_count(dai_node
);
1352 rdrv
= devm_kcalloc(dev
, nr
, sizeof(*rdrv
), GFP_KERNEL
);
1353 rdai
= devm_kcalloc(dev
, nr
, sizeof(*rdai
), GFP_KERNEL
);
1358 priv
->daidrv
= rdrv
;
1366 for_each_endpoint_of_node(dai_node
, dai_np
) {
1367 __rsnd_dai_probe(priv
, dai_np
, dai_i
);
1368 if (rsnd_is_gen3(priv
)) {
1369 struct rsnd_dai
*rdai
= rsnd_rdai_get(priv
, dai_i
);
1371 rsnd_parse_connect_graph(priv
, &rdai
->playback
, dai_np
);
1372 rsnd_parse_connect_graph(priv
, &rdai
->capture
, dai_np
);
1377 for_each_child_of_node(dai_node
, dai_np
) {
1378 __rsnd_dai_probe(priv
, dai_np
, dai_i
);
1379 if (rsnd_is_gen3(priv
)) {
1380 struct rsnd_dai
*rdai
= rsnd_rdai_get(priv
, dai_i
);
1382 rsnd_parse_connect_simple(priv
, &rdai
->playback
, dai_np
);
1383 rsnd_parse_connect_simple(priv
, &rdai
->capture
, dai_np
);
1395 static int rsnd_hw_params(struct snd_soc_component
*component
,
1396 struct snd_pcm_substream
*substream
,
1397 struct snd_pcm_hw_params
*hw_params
)
1399 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
1400 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1401 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
1402 struct snd_soc_pcm_runtime
*fe
= asoc_substream_to_rtd(substream
);
1405 * rsnd assumes that it might be used under DPCM if user want to use
1406 * channel / rate convert. Then, rsnd should be FE.
1407 * And then, this function will be called *after* BE settings.
1408 * this means, each BE already has fixuped hw_params.
1410 * dpcm_fe_dai_hw_params()
1411 * dpcm_be_dai_hw_params()
1413 io
->converted_rate
= 0;
1414 io
->converted_chan
= 0;
1415 if (fe
->dai_link
->dynamic
) {
1416 struct rsnd_priv
*priv
= rsnd_io_to_priv(io
);
1417 struct device
*dev
= rsnd_priv_to_dev(priv
);
1418 struct snd_soc_dpcm
*dpcm
;
1419 struct snd_pcm_hw_params
*be_params
;
1420 int stream
= substream
->stream
;
1422 for_each_dpcm_be(fe
, stream
, dpcm
) {
1423 be_params
= &dpcm
->hw_params
;
1424 if (params_channels(hw_params
) != params_channels(be_params
))
1425 io
->converted_chan
= params_channels(be_params
);
1426 if (params_rate(hw_params
) != params_rate(be_params
))
1427 io
->converted_rate
= params_rate(be_params
);
1429 if (io
->converted_chan
)
1430 dev_dbg(dev
, "convert channels = %d\n", io
->converted_chan
);
1431 if (io
->converted_rate
)
1432 dev_dbg(dev
, "convert rate = %d\n", io
->converted_rate
);
1435 return rsnd_dai_call(hw_params
, io
, substream
, hw_params
);
1438 static int rsnd_hw_free(struct snd_soc_component
*component
,
1439 struct snd_pcm_substream
*substream
)
1441 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
1442 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1443 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
1445 return rsnd_dai_call(hw_free
, io
, substream
);
1448 static snd_pcm_uframes_t
rsnd_pointer(struct snd_soc_component
*component
,
1449 struct snd_pcm_substream
*substream
)
1451 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
1452 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
1453 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
1454 snd_pcm_uframes_t pointer
= 0;
1456 rsnd_dai_call(pointer
, io
, &pointer
);
1464 static int rsnd_kctrl_info(struct snd_kcontrol
*kctrl
,
1465 struct snd_ctl_elem_info
*uinfo
)
1467 struct rsnd_kctrl_cfg
*cfg
= snd_kcontrol_chip(kctrl
);
1470 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1471 uinfo
->count
= cfg
->size
;
1472 uinfo
->value
.enumerated
.items
= cfg
->max
;
1473 if (uinfo
->value
.enumerated
.item
>= cfg
->max
)
1474 uinfo
->value
.enumerated
.item
= cfg
->max
- 1;
1475 strlcpy(uinfo
->value
.enumerated
.name
,
1476 cfg
->texts
[uinfo
->value
.enumerated
.item
],
1477 sizeof(uinfo
->value
.enumerated
.name
));
1479 uinfo
->count
= cfg
->size
;
1480 uinfo
->value
.integer
.min
= 0;
1481 uinfo
->value
.integer
.max
= cfg
->max
;
1482 uinfo
->type
= (cfg
->max
== 1) ?
1483 SNDRV_CTL_ELEM_TYPE_BOOLEAN
:
1484 SNDRV_CTL_ELEM_TYPE_INTEGER
;
1490 static int rsnd_kctrl_get(struct snd_kcontrol
*kctrl
,
1491 struct snd_ctl_elem_value
*uc
)
1493 struct rsnd_kctrl_cfg
*cfg
= snd_kcontrol_chip(kctrl
);
1496 for (i
= 0; i
< cfg
->size
; i
++)
1498 uc
->value
.enumerated
.item
[i
] = cfg
->val
[i
];
1500 uc
->value
.integer
.value
[i
] = cfg
->val
[i
];
1505 static int rsnd_kctrl_put(struct snd_kcontrol
*kctrl
,
1506 struct snd_ctl_elem_value
*uc
)
1508 struct rsnd_kctrl_cfg
*cfg
= snd_kcontrol_chip(kctrl
);
1511 if (!cfg
->accept(cfg
->io
))
1514 for (i
= 0; i
< cfg
->size
; i
++) {
1516 change
|= (uc
->value
.enumerated
.item
[i
] != cfg
->val
[i
]);
1517 cfg
->val
[i
] = uc
->value
.enumerated
.item
[i
];
1519 change
|= (uc
->value
.integer
.value
[i
] != cfg
->val
[i
]);
1520 cfg
->val
[i
] = uc
->value
.integer
.value
[i
];
1524 if (change
&& cfg
->update
)
1525 cfg
->update(cfg
->io
, cfg
->mod
);
1530 int rsnd_kctrl_accept_anytime(struct rsnd_dai_stream
*io
)
1535 int rsnd_kctrl_accept_runtime(struct rsnd_dai_stream
*io
)
1537 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
1538 struct rsnd_priv
*priv
= rsnd_io_to_priv(io
);
1539 struct device
*dev
= rsnd_priv_to_dev(priv
);
1542 dev_warn(dev
, "Can't update kctrl when idle\n");
1549 struct rsnd_kctrl_cfg
*rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m
*cfg
)
1551 cfg
->cfg
.val
= cfg
->val
;
1556 struct rsnd_kctrl_cfg
*rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s
*cfg
)
1558 cfg
->cfg
.val
= &cfg
->val
;
1563 const char * const volume_ramp_rate
[] = {
1564 "128 dB/1 step", /* 00000 */
1565 "64 dB/1 step", /* 00001 */
1566 "32 dB/1 step", /* 00010 */
1567 "16 dB/1 step", /* 00011 */
1568 "8 dB/1 step", /* 00100 */
1569 "4 dB/1 step", /* 00101 */
1570 "2 dB/1 step", /* 00110 */
1571 "1 dB/1 step", /* 00111 */
1572 "0.5 dB/1 step", /* 01000 */
1573 "0.25 dB/1 step", /* 01001 */
1574 "0.125 dB/1 step", /* 01010 = VOLUME_RAMP_MAX_MIX */
1575 "0.125 dB/2 steps", /* 01011 */
1576 "0.125 dB/4 steps", /* 01100 */
1577 "0.125 dB/8 steps", /* 01101 */
1578 "0.125 dB/16 steps", /* 01110 */
1579 "0.125 dB/32 steps", /* 01111 */
1580 "0.125 dB/64 steps", /* 10000 */
1581 "0.125 dB/128 steps", /* 10001 */
1582 "0.125 dB/256 steps", /* 10010 */
1583 "0.125 dB/512 steps", /* 10011 */
1584 "0.125 dB/1024 steps", /* 10100 */
1585 "0.125 dB/2048 steps", /* 10101 */
1586 "0.125 dB/4096 steps", /* 10110 */
1587 "0.125 dB/8192 steps", /* 10111 = VOLUME_RAMP_MAX_DVC */
1590 int rsnd_kctrl_new(struct rsnd_mod
*mod
,
1591 struct rsnd_dai_stream
*io
,
1592 struct snd_soc_pcm_runtime
*rtd
,
1593 const unsigned char *name
,
1594 int (*accept
)(struct rsnd_dai_stream
*io
),
1595 void (*update
)(struct rsnd_dai_stream
*io
,
1596 struct rsnd_mod
*mod
),
1597 struct rsnd_kctrl_cfg
*cfg
,
1598 const char * const *texts
,
1602 struct snd_card
*card
= rtd
->card
->snd_card
;
1603 struct snd_kcontrol
*kctrl
;
1604 struct snd_kcontrol_new knew
= {
1605 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1607 .info
= rsnd_kctrl_info
,
1609 .get
= rsnd_kctrl_get
,
1610 .put
= rsnd_kctrl_put
,
1615 * 1) Avoid duplicate register for DVC with MIX case
1616 * 2) Allow duplicate register for MIX
1617 * 3) re-register if card was rebinded
1619 list_for_each_entry(kctrl
, &card
->controls
, list
) {
1620 struct rsnd_kctrl_cfg
*c
= kctrl
->private_data
;
1626 if (size
> RSND_MAX_CHANNELS
)
1629 kctrl
= snd_ctl_new1(&knew
, cfg
);
1633 ret
= snd_ctl_add(card
, kctrl
);
1640 cfg
->accept
= accept
;
1641 cfg
->update
= update
;
1653 static const struct snd_soc_component_driver rsnd_soc_component
= {
1655 .hw_params
= rsnd_hw_params
,
1656 .hw_free
= rsnd_hw_free
,
1657 .pointer
= rsnd_pointer
,
1660 static int rsnd_rdai_continuance_probe(struct rsnd_priv
*priv
,
1661 struct rsnd_dai_stream
*io
)
1665 ret
= rsnd_dai_call(probe
, io
, priv
);
1666 if (ret
== -EAGAIN
) {
1667 struct rsnd_mod
*ssi_mod
= rsnd_io_to_mod_ssi(io
);
1668 struct rsnd_mod
*mod
;
1672 * Fallback to PIO mode
1676 * call "remove" for SSI/SRC/DVC
1677 * SSI will be switch to PIO mode if it was DMA mode
1680 * rsnd_ssi_fallback()
1682 rsnd_dai_call(remove
, io
, priv
);
1685 * remove all mod from io
1686 * and, re connect ssi
1688 for_each_rsnd_mod(i
, mod
, io
)
1689 rsnd_dai_disconnect(mod
, io
, i
);
1690 rsnd_dai_connect(ssi_mod
, io
, RSND_MOD_SSI
);
1695 rsnd_dai_call(fallback
, io
, priv
);
1699 * DAI has SSI which is PIO mode only now.
1701 ret
= rsnd_dai_call(probe
, io
, priv
);
1710 static int rsnd_probe(struct platform_device
*pdev
)
1712 struct rsnd_priv
*priv
;
1713 struct device
*dev
= &pdev
->dev
;
1714 struct rsnd_dai
*rdai
;
1715 int (*probe_func
[])(struct rsnd_priv
*priv
) = {
1733 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
1738 priv
->flags
= (unsigned long)of_device_get_match_data(dev
);
1739 spin_lock_init(&priv
->lock
);
1744 for (i
= 0; i
< ARRAY_SIZE(probe_func
); i
++) {
1745 ret
= probe_func
[i
](priv
);
1750 for_each_rsnd_dai(rdai
, priv
, i
) {
1751 ret
= rsnd_rdai_continuance_probe(priv
, &rdai
->playback
);
1753 goto exit_snd_probe
;
1755 ret
= rsnd_rdai_continuance_probe(priv
, &rdai
->capture
);
1757 goto exit_snd_probe
;
1760 dev_set_drvdata(dev
, priv
);
1765 ret
= devm_snd_soc_register_component(dev
, &rsnd_soc_component
,
1766 priv
->daidrv
, rsnd_rdai_nr(priv
));
1768 dev_err(dev
, "cannot snd dai register\n");
1769 goto exit_snd_probe
;
1772 pm_runtime_enable(dev
);
1774 dev_info(dev
, "probed\n");
1778 for_each_rsnd_dai(rdai
, priv
, i
) {
1779 rsnd_dai_call(remove
, &rdai
->playback
, priv
);
1780 rsnd_dai_call(remove
, &rdai
->capture
, priv
);
1784 * adg is very special mod which can't use rsnd_dai_call(remove),
1785 * and it registers ADG clock on probe.
1786 * It should be unregister if probe failed.
1787 * Mainly it is assuming -EPROBE_DEFER case
1789 rsnd_adg_remove(priv
);
1794 static int rsnd_remove(struct platform_device
*pdev
)
1796 struct rsnd_priv
*priv
= dev_get_drvdata(&pdev
->dev
);
1797 struct rsnd_dai
*rdai
;
1798 void (*remove_func
[])(struct rsnd_priv
*priv
) = {
1810 pm_runtime_disable(&pdev
->dev
);
1812 for_each_rsnd_dai(rdai
, priv
, i
) {
1813 ret
|= rsnd_dai_call(remove
, &rdai
->playback
, priv
);
1814 ret
|= rsnd_dai_call(remove
, &rdai
->capture
, priv
);
1817 for (i
= 0; i
< ARRAY_SIZE(remove_func
); i
++)
1818 remove_func
[i
](priv
);
1823 static int __maybe_unused
rsnd_suspend(struct device
*dev
)
1825 struct rsnd_priv
*priv
= dev_get_drvdata(dev
);
1827 rsnd_adg_clk_disable(priv
);
1832 static int __maybe_unused
rsnd_resume(struct device
*dev
)
1834 struct rsnd_priv
*priv
= dev_get_drvdata(dev
);
1836 rsnd_adg_clk_enable(priv
);
1841 static const struct dev_pm_ops rsnd_pm_ops
= {
1842 SET_SYSTEM_SLEEP_PM_OPS(rsnd_suspend
, rsnd_resume
)
1845 static struct platform_driver rsnd_driver
= {
1847 .name
= "rcar_sound",
1849 .of_match_table
= rsnd_of_match
,
1851 .probe
= rsnd_probe
,
1852 .remove
= rsnd_remove
,
1854 module_platform_driver(rsnd_driver
);
1856 MODULE_LICENSE("GPL v2");
1857 MODULE_DESCRIPTION("Renesas R-Car audio driver");
1858 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
1859 MODULE_ALIAS("platform:rcar-pcm-audio");