1 // SPDX-License-Identifier: GPL-2.0
5 // Copyright (C) 2013 Renesas Solutions Corp.
6 // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
11 #include <linux/clk.h>
12 #include <linux/device.h>
13 #include <linux/dma-mapping.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/of_device.h>
18 #include <linux/of_graph.h>
19 #include <linux/of_irq.h>
20 #include <linux/sh_dma.h>
21 #include <linux/workqueue.h>
22 #include <sound/soc.h>
23 #include <sound/pcm_params.h>
25 #define RSND_GEN1_SRU 0
26 #define RSND_GEN1_ADG 1
27 #define RSND_GEN1_SSI 2
29 #define RSND_GEN2_SCU 0
30 #define RSND_GEN2_ADG 1
31 #define RSND_GEN2_SSIU 2
32 #define RSND_GEN2_SSI 3
34 #define RSND_BASE_MAX 4
39 * The register address offsets SRU/SCU/SSIU on Gen1/Gen2 are very different.
40 * This driver uses pseudo register in order to hide it.
41 * see gen1/gen2 for detail
44 /* SCU (MIX/CTU/DVC) */
236 #define SRCIN_TIMSEL(i) (SRCIN_TIMSEL0 + (i))
237 #define SRCOUT_TIMSEL(i) (SRCOUT_TIMSEL0 + (i))
238 #define CTU_SVxxR(i, j) (CTU_SV00R + (i * 8) + (j))
239 #define DVC_VOLxR(i) (DVC_VOL0R + (i))
240 #define AUDIO_CLK_SEL(i) (AUDIO_CLK_SEL0 + (i))
241 #define SSI_BUSIF_MODE(i) (SSI_BUSIF0_MODE + (i))
242 #define SSI_BUSIF_ADINR(i) (SSI_BUSIF0_ADINR + (i))
243 #define SSI_BUSIF_DALIGN(i) (SSI_BUSIF0_DALIGN + (i))
244 #define SSI9_BUSIF_MODE(i) (SSI9_BUSIF0_MODE + (i))
245 #define SSI9_BUSIF_ADINR(i) (SSI9_BUSIF0_ADINR + (i))
246 #define SSI9_BUSIF_DALIGN(i) (SSI9_BUSIF0_DALIGN + (i))
247 #define SSI_SYS_STATUS(i) (SSI_SYS_STATUS0 + (i))
248 #define SSI_SYS_INT_ENABLE(i) (SSI_SYS_INT_ENABLE0 + (i))
254 struct rsnd_dai_stream
;
257 * R-Car basic functions
259 u32
rsnd_mod_read(struct rsnd_mod
*mod
, enum rsnd_reg reg
);
260 void rsnd_mod_write(struct rsnd_mod
*mod
, enum rsnd_reg reg
, u32 data
);
261 void rsnd_mod_bset(struct rsnd_mod
*mod
, enum rsnd_reg reg
, u32 mask
, u32 data
);
262 u32
rsnd_get_adinr_bit(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
);
263 u32
rsnd_get_dalign(struct rsnd_mod
*mod
, struct rsnd_dai_stream
*io
);
264 u32
rsnd_get_busif_shift(struct rsnd_dai_stream
*io
, struct rsnd_mod
*mod
);
269 int rsnd_dma_attach(struct rsnd_dai_stream
*io
,
270 struct rsnd_mod
*mod
, struct rsnd_mod
**dma_mod
);
271 int rsnd_dma_probe(struct rsnd_priv
*priv
);
272 struct dma_chan
*rsnd_dma_request_channel(struct device_node
*of_node
,
273 struct rsnd_mod
*mod
, char *name
);
286 RSND_MOD_SSIM3
, /* SSI multi 3 */
287 RSND_MOD_SSIM2
, /* SSI multi 2 */
288 RSND_MOD_SSIM1
, /* SSI multi 1 */
289 RSND_MOD_SSIP
, /* SSI parent */
295 struct rsnd_mod_ops
{
297 struct dma_chan
* (*dma_req
)(struct rsnd_dai_stream
*io
,
298 struct rsnd_mod
*mod
);
299 int (*probe
)(struct rsnd_mod
*mod
,
300 struct rsnd_dai_stream
*io
,
301 struct rsnd_priv
*priv
);
302 int (*remove
)(struct rsnd_mod
*mod
,
303 struct rsnd_dai_stream
*io
,
304 struct rsnd_priv
*priv
);
305 int (*init
)(struct rsnd_mod
*mod
,
306 struct rsnd_dai_stream
*io
,
307 struct rsnd_priv
*priv
);
308 int (*quit
)(struct rsnd_mod
*mod
,
309 struct rsnd_dai_stream
*io
,
310 struct rsnd_priv
*priv
);
311 int (*start
)(struct rsnd_mod
*mod
,
312 struct rsnd_dai_stream
*io
,
313 struct rsnd_priv
*priv
);
314 int (*stop
)(struct rsnd_mod
*mod
,
315 struct rsnd_dai_stream
*io
,
316 struct rsnd_priv
*priv
);
317 int (*irq
)(struct rsnd_mod
*mod
,
318 struct rsnd_dai_stream
*io
,
319 struct rsnd_priv
*priv
, int enable
);
320 int (*pcm_new
)(struct rsnd_mod
*mod
,
321 struct rsnd_dai_stream
*io
,
322 struct snd_soc_pcm_runtime
*rtd
);
323 int (*hw_params
)(struct rsnd_mod
*mod
,
324 struct rsnd_dai_stream
*io
,
325 struct snd_pcm_substream
*substream
,
326 struct snd_pcm_hw_params
*hw_params
);
327 int (*pointer
)(struct rsnd_mod
*mod
,
328 struct rsnd_dai_stream
*io
,
329 snd_pcm_uframes_t
*pointer
);
330 int (*fallback
)(struct rsnd_mod
*mod
,
331 struct rsnd_dai_stream
*io
,
332 struct rsnd_priv
*priv
);
333 int (*prepare
)(struct rsnd_mod
*mod
,
334 struct rsnd_dai_stream
*io
,
335 struct rsnd_priv
*priv
);
336 int (*cleanup
)(struct rsnd_mod
*mod
,
337 struct rsnd_dai_stream
*io
,
338 struct rsnd_priv
*priv
);
339 int (*hw_free
)(struct rsnd_mod
*mod
,
340 struct rsnd_dai_stream
*io
,
341 struct snd_pcm_substream
*substream
);
342 u32
*(*get_status
)(struct rsnd_mod
*mod
,
343 struct rsnd_dai_stream
*io
,
344 enum rsnd_mod_type type
);
345 int (*id
)(struct rsnd_mod
*mod
);
346 int (*id_sub
)(struct rsnd_mod
*mod
);
347 int (*id_cmd
)(struct rsnd_mod
*mod
);
350 struct rsnd_dai_stream
;
353 enum rsnd_mod_type type
;
354 struct rsnd_mod_ops
*ops
;
355 struct rsnd_priv
*priv
;
366 * D 0: hw_params 1: hw_free
368 * H is always called (see __rsnd_mod_call)
369 * H 0: probe 1: remove
376 #define __rsnd_mod_shift_init 4
377 #define __rsnd_mod_shift_quit 4
378 #define __rsnd_mod_shift_start 8
379 #define __rsnd_mod_shift_stop 8
380 #define __rsnd_mod_shift_hw_params 12
381 #define __rsnd_mod_shift_hw_free 12
382 #define __rsnd_mod_shift_probe 28 /* always called */
383 #define __rsnd_mod_shift_remove 28 /* always called */
384 #define __rsnd_mod_shift_irq 28 /* always called */
385 #define __rsnd_mod_shift_pcm_new 28 /* always called */
386 #define __rsnd_mod_shift_fallback 28 /* always called */
387 #define __rsnd_mod_shift_pointer 28 /* always called */
388 #define __rsnd_mod_shift_prepare 28 /* always called */
389 #define __rsnd_mod_shift_cleanup 28 /* always called */
391 #define __rsnd_mod_add_probe 0
392 #define __rsnd_mod_add_remove 0
393 #define __rsnd_mod_add_prepare 0
394 #define __rsnd_mod_add_cleanup 0
395 #define __rsnd_mod_add_init 1
396 #define __rsnd_mod_add_quit -1
397 #define __rsnd_mod_add_start 1
398 #define __rsnd_mod_add_stop -1
399 #define __rsnd_mod_add_hw_params 1
400 #define __rsnd_mod_add_hw_free -1
401 #define __rsnd_mod_add_irq 0
402 #define __rsnd_mod_add_pcm_new 0
403 #define __rsnd_mod_add_fallback 0
404 #define __rsnd_mod_add_pointer 0
406 #define __rsnd_mod_call_probe 0
407 #define __rsnd_mod_call_remove 0
408 #define __rsnd_mod_call_prepare 0
409 #define __rsnd_mod_call_cleanup 0
410 #define __rsnd_mod_call_init 0
411 #define __rsnd_mod_call_quit 1
412 #define __rsnd_mod_call_start 0
413 #define __rsnd_mod_call_stop 1
414 #define __rsnd_mod_call_irq 0
415 #define __rsnd_mod_call_pcm_new 0
416 #define __rsnd_mod_call_fallback 0
417 #define __rsnd_mod_call_hw_params 0
418 #define __rsnd_mod_call_pointer 0
419 #define __rsnd_mod_call_hw_free 1
421 #define rsnd_mod_to_priv(mod) ((mod)->priv)
422 #define rsnd_mod_power_on(mod) clk_enable((mod)->clk)
423 #define rsnd_mod_power_off(mod) clk_disable((mod)->clk)
424 #define rsnd_mod_get(ip) (&(ip)->mod)
426 int rsnd_mod_init(struct rsnd_priv
*priv
,
427 struct rsnd_mod
*mod
,
428 struct rsnd_mod_ops
*ops
,
430 enum rsnd_mod_type type
,
432 void rsnd_mod_quit(struct rsnd_mod
*mod
);
433 struct dma_chan
*rsnd_mod_dma_req(struct rsnd_dai_stream
*io
,
434 struct rsnd_mod
*mod
);
435 void rsnd_mod_interrupt(struct rsnd_mod
*mod
,
436 void (*callback
)(struct rsnd_mod
*mod
,
437 struct rsnd_dai_stream
*io
));
438 u32
*rsnd_mod_get_status(struct rsnd_mod
*mod
,
439 struct rsnd_dai_stream
*io
,
440 enum rsnd_mod_type type
);
441 int rsnd_mod_id(struct rsnd_mod
*mod
);
442 int rsnd_mod_id_raw(struct rsnd_mod
*mod
);
443 int rsnd_mod_id_sub(struct rsnd_mod
*mod
);
444 char *rsnd_mod_name(struct rsnd_mod
*mod
);
445 struct rsnd_mod
*rsnd_mod_next(int *iterator
,
446 struct rsnd_dai_stream
*io
,
447 enum rsnd_mod_type
*array
,
449 #define for_each_rsnd_mod(iterator, pos, io) \
451 (pos = rsnd_mod_next(&iterator, io, NULL, 0)); iterator++)
452 #define for_each_rsnd_mod_arrays(iterator, pos, io, array, size) \
454 (pos = rsnd_mod_next(&iterator, io, array, size)); iterator++)
455 #define for_each_rsnd_mod_array(iterator, pos, io, array) \
456 for_each_rsnd_mod_arrays(iterator, pos, io, array, ARRAY_SIZE(array))
458 void rsnd_parse_connect_common(struct rsnd_dai
*rdai
,
459 struct rsnd_mod
* (*mod_get
)(struct rsnd_priv
*priv
, int id
),
460 struct device_node
*node
,
461 struct device_node
*playback
,
462 struct device_node
*capture
);
464 int rsnd_channel_normalization(int chan
);
465 #define rsnd_runtime_channel_original(io) \
466 rsnd_runtime_channel_original_with_params(io, NULL)
467 int rsnd_runtime_channel_original_with_params(struct rsnd_dai_stream
*io
,
468 struct snd_pcm_hw_params
*params
);
469 #define rsnd_runtime_channel_after_ctu(io) \
470 rsnd_runtime_channel_after_ctu_with_params(io, NULL)
471 int rsnd_runtime_channel_after_ctu_with_params(struct rsnd_dai_stream
*io
,
472 struct snd_pcm_hw_params
*params
);
473 #define rsnd_runtime_channel_for_ssi(io) \
474 rsnd_runtime_channel_for_ssi_with_params(io, NULL)
475 int rsnd_runtime_channel_for_ssi_with_params(struct rsnd_dai_stream
*io
,
476 struct snd_pcm_hw_params
*params
);
477 int rsnd_runtime_is_multi_ssi(struct rsnd_dai_stream
*io
);
478 int rsnd_runtime_is_tdm(struct rsnd_dai_stream
*io
);
479 int rsnd_runtime_is_tdm_split(struct rsnd_dai_stream
*io
);
484 #define rsnd_parse_of_node(priv, node) \
485 of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, node)
486 #define RSND_NODE_DAI "rcar_sound,dai"
487 #define RSND_NODE_SSI "rcar_sound,ssi"
488 #define RSND_NODE_SSIU "rcar_sound,ssiu"
489 #define RSND_NODE_SRC "rcar_sound,src"
490 #define RSND_NODE_CTU "rcar_sound,ctu"
491 #define RSND_NODE_MIX "rcar_sound,mix"
492 #define RSND_NODE_DVC "rcar_sound,dvc"
497 #define RSND_DAI_NAME_SIZE 16
498 struct rsnd_dai_stream
{
499 char name
[RSND_DAI_NAME_SIZE
];
500 struct snd_pcm_substream
*substream
;
501 struct rsnd_mod
*mod
[RSND_MOD_MAX
];
502 struct rsnd_mod
*dma
;
503 struct rsnd_dai
*rdai
;
504 struct device
*dmac_dev
; /* for IPMMU */
505 u32 converted_rate
; /* converted sampling rate */
506 int converted_chan
; /* converted channels */
507 u32 parent_ssi_status
;
512 #define RSND_STREAM_HDMI0 (1 << 0) /* for HDMI0 */
513 #define RSND_STREAM_HDMI1 (1 << 1) /* for HDMI1 */
514 #define RSND_STREAM_TDM_SPLIT (1 << 2) /* for TDM split mode */
516 #define rsnd_io_to_mod(io, i) ((i) < RSND_MOD_MAX ? (io)->mod[(i)] : NULL)
517 #define rsnd_io_to_mod_ssi(io) rsnd_io_to_mod((io), RSND_MOD_SSI)
518 #define rsnd_io_to_mod_ssiu(io) rsnd_io_to_mod((io), RSND_MOD_SSIU)
519 #define rsnd_io_to_mod_ssip(io) rsnd_io_to_mod((io), RSND_MOD_SSIP)
520 #define rsnd_io_to_mod_src(io) rsnd_io_to_mod((io), RSND_MOD_SRC)
521 #define rsnd_io_to_mod_ctu(io) rsnd_io_to_mod((io), RSND_MOD_CTU)
522 #define rsnd_io_to_mod_mix(io) rsnd_io_to_mod((io), RSND_MOD_MIX)
523 #define rsnd_io_to_mod_dvc(io) rsnd_io_to_mod((io), RSND_MOD_DVC)
524 #define rsnd_io_to_mod_cmd(io) rsnd_io_to_mod((io), RSND_MOD_CMD)
525 #define rsnd_io_to_rdai(io) ((io)->rdai)
526 #define rsnd_io_to_priv(io) (rsnd_rdai_to_priv(rsnd_io_to_rdai(io)))
527 #define rsnd_io_is_play(io) (&rsnd_io_to_rdai(io)->playback == io)
528 #define rsnd_io_to_runtime(io) ((io)->substream ? \
529 (io)->substream->runtime : NULL)
530 #define rsnd_io_converted_rate(io) ((io)->converted_rate)
531 #define rsnd_io_converted_chan(io) ((io)->converted_chan)
532 int rsnd_io_is_working(struct rsnd_dai_stream
*io
);
535 char name
[RSND_DAI_NAME_SIZE
];
536 struct rsnd_dai_stream playback
;
537 struct rsnd_dai_stream capture
;
538 struct rsnd_priv
*priv
;
539 struct snd_pcm_hw_constraint_list constraint
;
541 int max_channels
; /* 2ch - 16ch */
542 int ssi_lane
; /* 1lane - 4lane */
543 int chan_width
; /* 16/24/32 bit width */
545 unsigned int clk_master
:1;
546 unsigned int bit_clk_inv
:1;
547 unsigned int frm_clk_inv
:1;
548 unsigned int sys_delay
:1;
549 unsigned int data_alignment
:1;
552 #define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
553 #define rsnd_rdai_is_clk_master(rdai) ((rdai)->clk_master)
554 #define rsnd_rdai_to_priv(rdai) ((rdai)->priv)
555 #define for_each_rsnd_dai(rdai, priv, i) \
557 (i < rsnd_rdai_nr(priv)) && \
558 ((rdai) = rsnd_rdai_get(priv, i)); \
561 struct rsnd_dai
*rsnd_rdai_get(struct rsnd_priv
*priv
, int id
);
563 #define rsnd_rdai_channels_set(rdai, max_channels) \
564 rsnd_rdai_channels_ctrl(rdai, max_channels)
565 #define rsnd_rdai_channels_get(rdai) \
566 rsnd_rdai_channels_ctrl(rdai, 0)
567 int rsnd_rdai_channels_ctrl(struct rsnd_dai
*rdai
,
570 #define rsnd_rdai_ssi_lane_set(rdai, ssi_lane) \
571 rsnd_rdai_ssi_lane_ctrl(rdai, ssi_lane)
572 #define rsnd_rdai_ssi_lane_get(rdai) \
573 rsnd_rdai_ssi_lane_ctrl(rdai, 0)
574 int rsnd_rdai_ssi_lane_ctrl(struct rsnd_dai
*rdai
,
577 #define rsnd_rdai_width_set(rdai, width) \
578 rsnd_rdai_width_ctrl(rdai, width)
579 #define rsnd_rdai_width_get(rdai) \
580 rsnd_rdai_width_ctrl(rdai, 0)
581 int rsnd_rdai_width_ctrl(struct rsnd_dai
*rdai
, int width
);
582 void rsnd_dai_period_elapsed(struct rsnd_dai_stream
*io
);
583 int rsnd_dai_connect(struct rsnd_mod
*mod
,
584 struct rsnd_dai_stream
*io
,
585 enum rsnd_mod_type type
);
590 int rsnd_gen_probe(struct rsnd_priv
*priv
);
591 void __iomem
*rsnd_gen_reg_get(struct rsnd_priv
*priv
,
592 struct rsnd_mod
*mod
,
594 phys_addr_t
rsnd_gen_get_phy_addr(struct rsnd_priv
*priv
, int reg_id
);
599 int rsnd_adg_clk_query(struct rsnd_priv
*priv
, unsigned int rate
);
600 int rsnd_adg_ssi_clk_stop(struct rsnd_mod
*mod
);
601 int rsnd_adg_ssi_clk_try_start(struct rsnd_mod
*mod
, unsigned int rate
);
602 int rsnd_adg_probe(struct rsnd_priv
*priv
);
603 void rsnd_adg_remove(struct rsnd_priv
*priv
);
604 int rsnd_adg_set_src_timesel_gen2(struct rsnd_mod
*src_mod
,
605 struct rsnd_dai_stream
*io
,
606 unsigned int in_rate
,
607 unsigned int out_rate
);
608 int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod
*mod
,
609 struct rsnd_dai_stream
*io
);
610 #define rsnd_adg_clk_enable(priv) rsnd_adg_clk_control(priv, 1)
611 #define rsnd_adg_clk_disable(priv) rsnd_adg_clk_control(priv, 0)
612 void rsnd_adg_clk_control(struct rsnd_priv
*priv
, int enable
);
619 struct platform_device
*pdev
;
622 #define RSND_GEN_MASK (0xF << 0)
623 #define RSND_GEN1 (1 << 0)
624 #define RSND_GEN2 (2 << 0)
625 #define RSND_GEN3 (3 << 0)
626 #define RSND_SOC_MASK (0xFF << 4)
627 #define RSND_SOC_E (1 << 4) /* E1/E2/E3 */
630 * below value will be filled on rsnd_gen_probe()
635 * below value will be filled on rsnd_adg_probe()
640 * below value will be filled on rsnd_dma_probe()
645 * below value will be filled on rsnd_ssi_probe()
651 * below value will be filled on rsnd_ssiu_probe()
657 * below value will be filled on rsnd_src_probe()
663 * below value will be filled on rsnd_ctu_probe()
669 * below value will be filled on rsnd_mix_probe()
675 * below value will be filled on rsnd_dvc_probe()
681 * below value will be filled on rsnd_cmd_probe()
687 * below value will be filled on rsnd_dai_probe()
689 struct snd_soc_dai_driver
*daidrv
;
690 struct rsnd_dai
*rdai
;
694 #define rsnd_priv_to_pdev(priv) ((priv)->pdev)
695 #define rsnd_priv_to_dev(priv) (&(rsnd_priv_to_pdev(priv)->dev))
697 #define rsnd_is_gen1(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN1)
698 #define rsnd_is_gen2(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN2)
699 #define rsnd_is_gen3(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN3)
700 #define rsnd_is_e3(priv) (((priv)->flags & \
701 (RSND_GEN_MASK | RSND_SOC_MASK)) == \
702 (RSND_GEN3 | RSND_SOC_E))
704 #define rsnd_flags_has(p, f) ((p)->flags & (f))
705 #define rsnd_flags_set(p, f) ((p)->flags |= (f))
706 #define rsnd_flags_del(p, f) ((p)->flags &= ~(f))
711 struct rsnd_kctrl_cfg
{
715 const char * const *texts
;
716 int (*accept
)(struct rsnd_dai_stream
*io
);
717 void (*update
)(struct rsnd_dai_stream
*io
, struct rsnd_mod
*mod
);
718 struct rsnd_dai_stream
*io
;
719 struct snd_card
*card
;
720 struct snd_kcontrol
*kctrl
;
721 struct rsnd_mod
*mod
;
724 #define RSND_MAX_CHANNELS 8
725 struct rsnd_kctrl_cfg_m
{
726 struct rsnd_kctrl_cfg cfg
;
727 u32 val
[RSND_MAX_CHANNELS
];
730 struct rsnd_kctrl_cfg_s
{
731 struct rsnd_kctrl_cfg cfg
;
734 #define rsnd_kctrl_size(x) ((x).cfg.size)
735 #define rsnd_kctrl_max(x) ((x).cfg.max)
736 #define rsnd_kctrl_valm(x, i) ((x).val[i]) /* = (x).cfg.val[i] */
737 #define rsnd_kctrl_vals(x) ((x).val) /* = (x).cfg.val[0] */
739 int rsnd_kctrl_accept_anytime(struct rsnd_dai_stream
*io
);
740 int rsnd_kctrl_accept_runtime(struct rsnd_dai_stream
*io
);
741 struct rsnd_kctrl_cfg
*rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m
*cfg
);
742 struct rsnd_kctrl_cfg
*rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s
*cfg
);
743 int rsnd_kctrl_new(struct rsnd_mod
*mod
,
744 struct rsnd_dai_stream
*io
,
745 struct snd_soc_pcm_runtime
*rtd
,
746 const unsigned char *name
,
747 int (*accept
)(struct rsnd_dai_stream
*io
),
748 void (*update
)(struct rsnd_dai_stream
*io
,
749 struct rsnd_mod
*mod
),
750 struct rsnd_kctrl_cfg
*cfg
,
751 const char * const *texts
,
755 #define rsnd_kctrl_new_m(mod, io, rtd, name, accept, update, cfg, size, max) \
756 rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_m(cfg), \
759 #define rsnd_kctrl_new_s(mod, io, rtd, name, accept, update, cfg, max) \
760 rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_s(cfg), \
763 #define rsnd_kctrl_new_e(mod, io, rtd, name, accept, update, cfg, texts, size) \
764 rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_s(cfg), \
767 extern const char * const volume_ramp_rate
[];
768 #define VOLUME_RAMP_MAX_DVC (0x17 + 1)
769 #define VOLUME_RAMP_MAX_MIX (0x0a + 1)
774 int rsnd_ssi_probe(struct rsnd_priv
*priv
);
775 void rsnd_ssi_remove(struct rsnd_priv
*priv
);
776 struct rsnd_mod
*rsnd_ssi_mod_get(struct rsnd_priv
*priv
, int id
);
777 int rsnd_ssi_use_busif(struct rsnd_dai_stream
*io
);
778 u32
rsnd_ssi_multi_secondaries_runtime(struct rsnd_dai_stream
*io
);
780 #define rsnd_ssi_is_pin_sharing(io) \
781 __rsnd_ssi_is_pin_sharing(rsnd_io_to_mod_ssi(io))
782 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod
*mod
);
784 #define rsnd_ssi_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_SSI)
785 void rsnd_parse_connect_ssi(struct rsnd_dai
*rdai
,
786 struct device_node
*playback
,
787 struct device_node
*capture
);
788 unsigned int rsnd_ssi_clk_query(struct rsnd_dai
*rdai
,
789 int param1
, int param2
, int *idx
);
794 int rsnd_ssiu_attach(struct rsnd_dai_stream
*io
,
795 struct rsnd_mod
*mod
);
796 int rsnd_ssiu_probe(struct rsnd_priv
*priv
);
797 void rsnd_ssiu_remove(struct rsnd_priv
*priv
);
798 void rsnd_parse_connect_ssiu(struct rsnd_dai
*rdai
,
799 struct device_node
*playback
,
800 struct device_node
*capture
);
801 #define rsnd_ssiu_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_SSIU)
806 int rsnd_src_probe(struct rsnd_priv
*priv
);
807 void rsnd_src_remove(struct rsnd_priv
*priv
);
808 struct rsnd_mod
*rsnd_src_mod_get(struct rsnd_priv
*priv
, int id
);
810 #define rsnd_src_get_in_rate(priv, io) rsnd_src_get_rate(priv, io, 1)
811 #define rsnd_src_get_out_rate(priv, io) rsnd_src_get_rate(priv, io, 0)
812 unsigned int rsnd_src_get_rate(struct rsnd_priv
*priv
,
813 struct rsnd_dai_stream
*io
,
816 #define rsnd_src_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_SRC)
817 #define rsnd_parse_connect_src(rdai, playback, capture) \
818 rsnd_parse_connect_common(rdai, rsnd_src_mod_get, \
819 rsnd_src_of_node(rsnd_rdai_to_priv(rdai)), \
825 int rsnd_ctu_probe(struct rsnd_priv
*priv
);
826 void rsnd_ctu_remove(struct rsnd_priv
*priv
);
827 struct rsnd_mod
*rsnd_ctu_mod_get(struct rsnd_priv
*priv
, int id
);
828 #define rsnd_ctu_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_CTU)
829 #define rsnd_parse_connect_ctu(rdai, playback, capture) \
830 rsnd_parse_connect_common(rdai, rsnd_ctu_mod_get, \
831 rsnd_ctu_of_node(rsnd_rdai_to_priv(rdai)), \
837 int rsnd_mix_probe(struct rsnd_priv
*priv
);
838 void rsnd_mix_remove(struct rsnd_priv
*priv
);
839 struct rsnd_mod
*rsnd_mix_mod_get(struct rsnd_priv
*priv
, int id
);
840 #define rsnd_mix_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_MIX)
841 #define rsnd_parse_connect_mix(rdai, playback, capture) \
842 rsnd_parse_connect_common(rdai, rsnd_mix_mod_get, \
843 rsnd_mix_of_node(rsnd_rdai_to_priv(rdai)), \
849 int rsnd_dvc_probe(struct rsnd_priv
*priv
);
850 void rsnd_dvc_remove(struct rsnd_priv
*priv
);
851 struct rsnd_mod
*rsnd_dvc_mod_get(struct rsnd_priv
*priv
, int id
);
852 #define rsnd_dvc_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_DVC)
853 #define rsnd_parse_connect_dvc(rdai, playback, capture) \
854 rsnd_parse_connect_common(rdai, rsnd_dvc_mod_get, \
855 rsnd_dvc_of_node(rsnd_rdai_to_priv(rdai)), \
861 int rsnd_cmd_probe(struct rsnd_priv
*priv
);
862 void rsnd_cmd_remove(struct rsnd_priv
*priv
);
863 int rsnd_cmd_attach(struct rsnd_dai_stream
*io
, int id
);
865 void rsnd_mod_make_sure(struct rsnd_mod
*mod
, enum rsnd_mod_type type
);
867 #define rsnd_mod_confirm_ssi(mssi) rsnd_mod_make_sure(mssi, RSND_MOD_SSI)
868 #define rsnd_mod_confirm_src(msrc) rsnd_mod_make_sure(msrc, RSND_MOD_SRC)
869 #define rsnd_mod_confirm_dvc(mdvc) rsnd_mod_make_sure(mdvc, RSND_MOD_DVC)
871 #define rsnd_mod_confirm_ssi(mssi)
872 #define rsnd_mod_confirm_src(msrc)
873 #define rsnd_mod_confirm_dvc(mdvc)
877 * If you don't need interrupt status debug message,
878 * define RSND_DEBUG_NO_IRQ_STATUS as 1 on top of src.c/ssi.c
880 * #define RSND_DEBUG_NO_IRQ_STATUS 1
882 #define rsnd_dbg_irq_status(dev, param...) \
883 if (!IS_BUILTIN(RSND_DEBUG_NO_IRQ_STATUS)) \
887 * If you don't need rsnd_dai_call debug message,
888 * define RSND_DEBUG_NO_DAI_CALL as 1 on top of core.c
890 * #define RSND_DEBUG_NO_DAI_CALL 1
892 #define rsnd_dbg_dai_call(dev, param...) \
893 if (!IS_BUILTIN(RSND_DEBUG_NO_DAI_CALL)) \