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 scu
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>
97 #include <linux/shdma-base.h>
100 #define RSND_RATES SNDRV_PCM_RATE_8000_96000
101 #define RSND_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
104 * rsnd_platform functions
106 #define rsnd_platform_call(priv, dai, func, param...) \
107 (!(priv->info->func) ? 0 : \
108 priv->info->func(param))
113 char *rsnd_mod_name(struct rsnd_mod
*mod
)
115 if (!mod
|| !mod
->ops
)
118 return mod
->ops
->name
;
121 void rsnd_mod_init(struct rsnd_priv
*priv
,
122 struct rsnd_mod
*mod
,
123 struct rsnd_mod_ops
*ops
,
129 INIT_LIST_HEAD(&mod
->list
);
135 static void rsnd_dma_continue(struct rsnd_dma
*dma
)
137 /* push next A or B plane */
138 dma
->submit_loop
= 1;
139 schedule_work(&dma
->work
);
142 void rsnd_dma_start(struct rsnd_dma
*dma
)
144 /* push both A and B plane*/
145 dma
->submit_loop
= 2;
146 schedule_work(&dma
->work
);
149 void rsnd_dma_stop(struct rsnd_dma
*dma
)
151 dma
->submit_loop
= 0;
152 cancel_work_sync(&dma
->work
);
153 dmaengine_terminate_all(dma
->chan
);
156 static void rsnd_dma_complete(void *data
)
158 struct rsnd_dma
*dma
= (struct rsnd_dma
*)data
;
159 struct rsnd_priv
*priv
= dma
->priv
;
162 rsnd_lock(priv
, flags
);
166 if (dma
->submit_loop
)
167 rsnd_dma_continue(dma
);
169 rsnd_unlock(priv
, flags
);
172 static void rsnd_dma_do_work(struct work_struct
*work
)
174 struct rsnd_dma
*dma
= container_of(work
, struct rsnd_dma
, work
);
175 struct rsnd_priv
*priv
= dma
->priv
;
176 struct device
*dev
= rsnd_priv_to_dev(priv
);
177 struct dma_async_tx_descriptor
*desc
;
182 for (i
= 0; i
< dma
->submit_loop
; i
++) {
184 if (dma
->inquiry(dma
, &buf
, &len
) < 0)
187 desc
= dmaengine_prep_slave_single(
188 dma
->chan
, buf
, len
, dma
->dir
,
189 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
191 dev_err(dev
, "dmaengine_prep_slave_sg() fail\n");
195 desc
->callback
= rsnd_dma_complete
;
196 desc
->callback_param
= dma
;
198 if (dmaengine_submit(desc
) < 0) {
199 dev_err(dev
, "dmaengine_submit() fail\n");
205 dma_async_issue_pending(dma
->chan
);
208 int rsnd_dma_available(struct rsnd_dma
*dma
)
213 int rsnd_dma_init(struct rsnd_priv
*priv
, struct rsnd_dma
*dma
,
215 int (*inquiry
)(struct rsnd_dma
*dma
,
216 dma_addr_t
*buf
, int *len
),
217 int (*complete
)(struct rsnd_dma
*dma
))
219 struct device
*dev
= rsnd_priv_to_dev(priv
);
220 struct dma_slave_config cfg
;
225 dev_err(dev
, "it already has dma channel\n");
230 dma_cap_set(DMA_SLAVE
, mask
);
232 dma
->chan
= dma_request_slave_channel_compat(mask
, shdma_chan_filter
,
234 is_play
? "tx" : "rx");
236 dev_err(dev
, "can't get dma channel\n");
241 cfg
.dst_addr
= 0; /* use default addr when playback */
242 cfg
.src_addr
= 0; /* use default addr when capture */
243 cfg
.direction
= is_play
? DMA_MEM_TO_DEV
: DMA_DEV_TO_MEM
;
245 ret
= dmaengine_slave_config(dma
->chan
, &cfg
);
247 goto rsnd_dma_init_err
;
249 dma
->dir
= is_play
? DMA_TO_DEVICE
: DMA_FROM_DEVICE
;
251 dma
->inquiry
= inquiry
;
252 dma
->complete
= complete
;
253 INIT_WORK(&dma
->work
, rsnd_dma_do_work
);
258 rsnd_dma_quit(priv
, dma
);
263 void rsnd_dma_quit(struct rsnd_priv
*priv
,
264 struct rsnd_dma
*dma
)
267 dma_release_channel(dma
->chan
);
275 #define rsnd_dai_call(rdai, io, fn) \
277 struct rsnd_mod *mod, *n; \
279 for_each_rsnd_mod(mod, n, io) { \
280 ret = rsnd_mod_call(mod, fn, rdai, io); \
287 int rsnd_dai_connect(struct rsnd_dai
*rdai
,
288 struct rsnd_mod
*mod
,
289 struct rsnd_dai_stream
*io
)
291 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
292 struct device
*dev
= rsnd_priv_to_dev(priv
);
295 dev_err(dev
, "NULL mod\n");
299 if (!list_empty(&mod
->list
)) {
300 dev_err(dev
, "%s%d is not empty\n",
306 list_add_tail(&mod
->list
, &io
->head
);
311 int rsnd_dai_disconnect(struct rsnd_mod
*mod
)
313 list_del_init(&mod
->list
);
318 int rsnd_dai_id(struct rsnd_priv
*priv
, struct rsnd_dai
*rdai
)
320 int id
= rdai
- priv
->rdai
;
322 if ((id
< 0) || (id
>= rsnd_dai_nr(priv
)))
328 struct rsnd_dai
*rsnd_dai_get(struct rsnd_priv
*priv
, int id
)
330 if ((id
< 0) || (id
>= rsnd_dai_nr(priv
)))
333 return priv
->rdai
+ id
;
336 static struct rsnd_dai
*rsnd_dai_to_rdai(struct snd_soc_dai
*dai
)
338 struct rsnd_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
340 return rsnd_dai_get(priv
, dai
->id
);
343 int rsnd_dai_is_play(struct rsnd_dai
*rdai
, struct rsnd_dai_stream
*io
)
345 return &rdai
->playback
== io
;
349 * rsnd_soc_dai functions
351 int rsnd_dai_pointer_offset(struct rsnd_dai_stream
*io
, int additional
)
353 struct snd_pcm_substream
*substream
= io
->substream
;
354 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
355 int pos
= io
->byte_pos
+ additional
;
357 pos
%= (runtime
->periods
* io
->byte_per_period
);
362 void rsnd_dai_pointer_update(struct rsnd_dai_stream
*io
, int byte
)
364 io
->byte_pos
+= byte
;
366 if (io
->byte_pos
>= io
->next_period_byte
) {
367 struct snd_pcm_substream
*substream
= io
->substream
;
368 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
371 io
->next_period_byte
+= io
->byte_per_period
;
373 if (io
->period_pos
>= runtime
->periods
) {
376 io
->next_period_byte
= io
->byte_per_period
;
379 snd_pcm_period_elapsed(substream
);
383 static int rsnd_dai_stream_init(struct rsnd_dai_stream
*io
,
384 struct snd_pcm_substream
*substream
)
386 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
388 if (!list_empty(&io
->head
))
391 INIT_LIST_HEAD(&io
->head
);
392 io
->substream
= substream
;
395 io
->byte_per_period
= runtime
->period_size
*
397 samples_to_bytes(runtime
, 1);
398 io
->next_period_byte
= io
->byte_per_period
;
404 struct snd_soc_dai
*rsnd_substream_to_dai(struct snd_pcm_substream
*substream
)
406 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
412 struct rsnd_dai_stream
*rsnd_rdai_to_io(struct rsnd_dai
*rdai
,
413 struct snd_pcm_substream
*substream
)
415 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
416 return &rdai
->playback
;
418 return &rdai
->capture
;
421 static int rsnd_soc_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
422 struct snd_soc_dai
*dai
)
424 struct rsnd_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
425 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
426 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
427 struct rsnd_mod
*mod
= rsnd_ssi_mod_get_frm_dai(priv
,
428 rsnd_dai_id(priv
, rdai
),
429 rsnd_dai_is_play(rdai
, io
));
430 int ssi_id
= rsnd_mod_id(mod
);
434 rsnd_lock(priv
, flags
);
437 case SNDRV_PCM_TRIGGER_START
:
438 ret
= rsnd_dai_stream_init(io
, substream
);
440 goto dai_trigger_end
;
442 ret
= rsnd_platform_call(priv
, dai
, start
, ssi_id
);
444 goto dai_trigger_end
;
446 ret
= rsnd_gen_path_init(priv
, rdai
, io
);
448 goto dai_trigger_end
;
450 ret
= rsnd_dai_call(rdai
, io
, init
);
452 goto dai_trigger_end
;
454 ret
= rsnd_dai_call(rdai
, io
, start
);
456 goto dai_trigger_end
;
458 case SNDRV_PCM_TRIGGER_STOP
:
459 ret
= rsnd_dai_call(rdai
, io
, stop
);
461 goto dai_trigger_end
;
463 ret
= rsnd_dai_call(rdai
, io
, quit
);
465 goto dai_trigger_end
;
467 ret
= rsnd_gen_path_exit(priv
, rdai
, io
);
469 goto dai_trigger_end
;
471 ret
= rsnd_platform_call(priv
, dai
, stop
, ssi_id
);
473 goto dai_trigger_end
;
480 rsnd_unlock(priv
, flags
);
485 static int rsnd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
487 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
489 /* set master/slave audio interface */
490 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
491 case SND_SOC_DAIFMT_CBM_CFM
:
492 rdai
->clk_master
= 1;
494 case SND_SOC_DAIFMT_CBS_CFS
:
495 rdai
->clk_master
= 0;
501 /* set clock inversion */
502 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
503 case SND_SOC_DAIFMT_NB_IF
:
504 rdai
->bit_clk_inv
= 0;
505 rdai
->frm_clk_inv
= 1;
507 case SND_SOC_DAIFMT_IB_NF
:
508 rdai
->bit_clk_inv
= 1;
509 rdai
->frm_clk_inv
= 0;
511 case SND_SOC_DAIFMT_IB_IF
:
512 rdai
->bit_clk_inv
= 1;
513 rdai
->frm_clk_inv
= 1;
515 case SND_SOC_DAIFMT_NB_NF
:
517 rdai
->bit_clk_inv
= 0;
518 rdai
->frm_clk_inv
= 0;
523 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
524 case SND_SOC_DAIFMT_I2S
:
526 rdai
->data_alignment
= 0;
528 case SND_SOC_DAIFMT_LEFT_J
:
530 rdai
->data_alignment
= 0;
532 case SND_SOC_DAIFMT_RIGHT_J
:
534 rdai
->data_alignment
= 1;
541 static const struct snd_soc_dai_ops rsnd_soc_dai_ops
= {
542 .trigger
= rsnd_soc_dai_trigger
,
543 .set_fmt
= rsnd_soc_dai_set_fmt
,
546 static int rsnd_dai_probe(struct platform_device
*pdev
,
547 struct rcar_snd_info
*info
,
548 struct rsnd_priv
*priv
)
550 struct snd_soc_dai_driver
*drv
;
551 struct rsnd_dai
*rdai
;
552 struct rsnd_mod
*pmod
, *cmod
;
553 struct device
*dev
= rsnd_priv_to_dev(priv
);
558 for (dai_nr
= 0; dai_nr
< 32; dai_nr
++) {
559 pmod
= rsnd_ssi_mod_get_frm_dai(priv
, dai_nr
, 1);
560 cmod
= rsnd_ssi_mod_get_frm_dai(priv
, dai_nr
, 0);
567 dev_err(dev
, "no dai\n");
571 drv
= devm_kzalloc(dev
, sizeof(*drv
) * dai_nr
, GFP_KERNEL
);
572 rdai
= devm_kzalloc(dev
, sizeof(*rdai
) * dai_nr
, GFP_KERNEL
);
574 dev_err(dev
, "dai allocate failed\n");
578 for (i
= 0; i
< dai_nr
; i
++) {
580 pmod
= rsnd_ssi_mod_get_frm_dai(priv
, i
, 1);
581 cmod
= rsnd_ssi_mod_get_frm_dai(priv
, i
, 0);
586 INIT_LIST_HEAD(&rdai
[i
].playback
.head
);
587 INIT_LIST_HEAD(&rdai
[i
].capture
.head
);
589 snprintf(rdai
[i
].name
, RSND_DAI_NAME_SIZE
, "rsnd-dai.%d", i
);
592 * init snd_soc_dai_driver
594 drv
[i
].name
= rdai
[i
].name
;
595 drv
[i
].ops
= &rsnd_soc_dai_ops
;
597 drv
[i
].playback
.rates
= RSND_RATES
;
598 drv
[i
].playback
.formats
= RSND_FMTS
;
599 drv
[i
].playback
.channels_min
= 2;
600 drv
[i
].playback
.channels_max
= 2;
603 drv
[i
].capture
.rates
= RSND_RATES
;
604 drv
[i
].capture
.formats
= RSND_FMTS
;
605 drv
[i
].capture
.channels_min
= 2;
606 drv
[i
].capture
.channels_max
= 2;
609 dev_dbg(dev
, "%s (%s/%s)\n", rdai
[i
].name
,
610 pmod
? "play" : " -- ",
611 cmod
? "capture" : " -- ");
614 priv
->dai_nr
= dai_nr
;
621 static void rsnd_dai_remove(struct platform_device
*pdev
,
622 struct rsnd_priv
*priv
)
629 static struct snd_pcm_hardware rsnd_pcm_hardware
= {
630 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
631 SNDRV_PCM_INFO_MMAP
|
632 SNDRV_PCM_INFO_MMAP_VALID
|
633 SNDRV_PCM_INFO_PAUSE
,
634 .formats
= RSND_FMTS
,
640 .buffer_bytes_max
= 64 * 1024,
641 .period_bytes_min
= 32,
642 .period_bytes_max
= 8192,
648 static int rsnd_pcm_open(struct snd_pcm_substream
*substream
)
650 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
653 snd_soc_set_runtime_hwparams(substream
, &rsnd_pcm_hardware
);
655 ret
= snd_pcm_hw_constraint_integer(runtime
,
656 SNDRV_PCM_HW_PARAM_PERIODS
);
661 static int rsnd_hw_params(struct snd_pcm_substream
*substream
,
662 struct snd_pcm_hw_params
*hw_params
)
664 return snd_pcm_lib_malloc_pages(substream
,
665 params_buffer_bytes(hw_params
));
668 static snd_pcm_uframes_t
rsnd_pointer(struct snd_pcm_substream
*substream
)
670 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
671 struct snd_soc_dai
*dai
= rsnd_substream_to_dai(substream
);
672 struct rsnd_dai
*rdai
= rsnd_dai_to_rdai(dai
);
673 struct rsnd_dai_stream
*io
= rsnd_rdai_to_io(rdai
, substream
);
675 return bytes_to_frames(runtime
, io
->byte_pos
);
678 static struct snd_pcm_ops rsnd_pcm_ops
= {
679 .open
= rsnd_pcm_open
,
680 .ioctl
= snd_pcm_lib_ioctl
,
681 .hw_params
= rsnd_hw_params
,
682 .hw_free
= snd_pcm_lib_free_pages
,
683 .pointer
= rsnd_pointer
,
690 #define PREALLOC_BUFFER (32 * 1024)
691 #define PREALLOC_BUFFER_MAX (32 * 1024)
693 static int rsnd_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
695 return snd_pcm_lib_preallocate_pages_for_all(
698 rtd
->card
->snd_card
->dev
,
699 PREALLOC_BUFFER
, PREALLOC_BUFFER_MAX
);
702 static void rsnd_pcm_free(struct snd_pcm
*pcm
)
704 snd_pcm_lib_preallocate_free_for_all(pcm
);
707 static struct snd_soc_platform_driver rsnd_soc_platform
= {
708 .ops
= &rsnd_pcm_ops
,
709 .pcm_new
= rsnd_pcm_new
,
710 .pcm_free
= rsnd_pcm_free
,
713 static const struct snd_soc_component_driver rsnd_soc_component
= {
720 static int rsnd_probe(struct platform_device
*pdev
)
722 struct rcar_snd_info
*info
;
723 struct rsnd_priv
*priv
;
724 struct device
*dev
= &pdev
->dev
;
727 info
= pdev
->dev
.platform_data
;
729 dev_err(dev
, "driver needs R-Car sound information\n");
736 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
738 dev_err(dev
, "priv allocate failed\n");
744 spin_lock_init(&priv
->lock
);
749 ret
= rsnd_gen_probe(pdev
, info
, priv
);
753 ret
= rsnd_scu_probe(pdev
, info
, priv
);
757 ret
= rsnd_adg_probe(pdev
, info
, priv
);
761 ret
= rsnd_ssi_probe(pdev
, info
, priv
);
765 ret
= rsnd_dai_probe(pdev
, info
, priv
);
772 ret
= snd_soc_register_platform(dev
, &rsnd_soc_platform
);
774 dev_err(dev
, "cannot snd soc register\n");
778 ret
= snd_soc_register_component(dev
, &rsnd_soc_component
,
779 priv
->daidrv
, rsnd_dai_nr(priv
));
781 dev_err(dev
, "cannot snd dai register\n");
785 dev_set_drvdata(dev
, priv
);
787 pm_runtime_enable(dev
);
789 dev_info(dev
, "probed\n");
793 snd_soc_unregister_platform(dev
);
798 static int rsnd_remove(struct platform_device
*pdev
)
800 struct rsnd_priv
*priv
= dev_get_drvdata(&pdev
->dev
);
802 pm_runtime_disable(&pdev
->dev
);
807 rsnd_ssi_remove(pdev
, priv
);
808 rsnd_adg_remove(pdev
, priv
);
809 rsnd_scu_remove(pdev
, priv
);
810 rsnd_dai_remove(pdev
, priv
);
811 rsnd_gen_remove(pdev
, priv
);
816 static struct platform_driver rsnd_driver
= {
818 .name
= "rcar_sound",
821 .remove
= rsnd_remove
,
823 module_platform_driver(rsnd_driver
);
825 MODULE_LICENSE("GPL");
826 MODULE_DESCRIPTION("Renesas R-Car audio driver");
827 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
828 MODULE_ALIAS("platform:rcar-pcm-audio");