2 * Renesas R-Car SSIU/SSI support
4 * Copyright (C) 2013 Renesas Solutions Corp.
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 * you can enable below define if you don't need
17 * SSI interrupt status debug message when debugging
18 * see rsnd_dbg_irq_status()
20 * #define RSND_DEBUG_NO_IRQ_STATUS 1
23 #include <sound/simple_card_utils.h>
24 #include <linux/delay.h>
26 #define RSND_SSI_NAME_SIZE 16
31 #define FORCE (1 << 31) /* Fixed */
32 #define DMEN (1 << 28) /* DMA Enable */
33 #define UIEN (1 << 27) /* Underflow Interrupt Enable */
34 #define OIEN (1 << 26) /* Overflow Interrupt Enable */
35 #define IIEN (1 << 25) /* Idle Mode Interrupt Enable */
36 #define DIEN (1 << 24) /* Data Interrupt Enable */
37 #define CHNL_4 (1 << 22) /* Channels */
38 #define CHNL_6 (2 << 22) /* Channels */
39 #define CHNL_8 (3 << 22) /* Channels */
40 #define DWL_MASK (7 << 19) /* Data Word Length mask */
41 #define DWL_8 (0 << 19) /* Data Word Length */
42 #define DWL_16 (1 << 19) /* Data Word Length */
43 #define DWL_18 (2 << 19) /* Data Word Length */
44 #define DWL_20 (3 << 19) /* Data Word Length */
45 #define DWL_22 (4 << 19) /* Data Word Length */
46 #define DWL_24 (5 << 19) /* Data Word Length */
47 #define DWL_32 (6 << 19) /* Data Word Length */
49 #define SWL_32 (3 << 16) /* R/W System Word Length */
50 #define SCKD (1 << 15) /* Serial Bit Clock Direction */
51 #define SWSD (1 << 14) /* Serial WS Direction */
52 #define SCKP (1 << 13) /* Serial Bit Clock Polarity */
53 #define SWSP (1 << 12) /* Serial WS Polarity */
54 #define SDTA (1 << 10) /* Serial Data Alignment */
55 #define PDTA (1 << 9) /* Parallel Data Alignment */
56 #define DEL (1 << 8) /* Serial Data Delay */
57 #define CKDV(v) (v << 4) /* Serial Clock Division Ratio */
58 #define TRMD (1 << 1) /* Transmit/Receive Mode Select */
59 #define EN (1 << 0) /* SSI Module Enable */
64 #define UIRQ (1 << 27) /* Underflow Error Interrupt Status */
65 #define OIRQ (1 << 26) /* Overflow Error Interrupt Status */
66 #define IIRQ (1 << 25) /* Idle Mode Interrupt Status */
67 #define DIRQ (1 << 24) /* Data Interrupt Status Flag */
72 #define CONT (1 << 8) /* WS Continue Function */
73 #define WS_MODE (1 << 0) /* WS Mode */
75 #define SSI_NAME "ssi"
99 #define RSND_SSI_CLK_PIN_SHARE (1 << 0)
100 #define RSND_SSI_NO_BUSIF (1 << 1) /* SSI+DMA without BUSIF */
101 #define RSND_SSI_HDMI0 (1 << 2) /* for HDMI0 */
102 #define RSND_SSI_HDMI1 (1 << 3) /* for HDMI1 */
103 #define RSND_SSI_PROBED (1 << 4)
105 #define for_each_rsnd_ssi(pos, priv, i) \
107 (i < rsnd_ssi_nr(priv)) && \
108 ((pos) = ((struct rsnd_ssi *)(priv)->ssi + i)); \
111 #define rsnd_ssi_get(priv, id) ((struct rsnd_ssi *)(priv->ssi) + id)
112 #define rsnd_ssi_nr(priv) ((priv)->ssi_nr)
113 #define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod)
114 #define rsnd_ssi_is_parent(ssi, io) ((ssi) == rsnd_io_to_mod_ssip(io))
115 #define rsnd_ssi_is_multi_slave(mod, io) \
116 (rsnd_ssi_multi_slaves(io) & (1 << rsnd_mod_id(mod)))
117 #define rsnd_ssi_is_run_mods(mod, io) \
118 (rsnd_ssi_run_mods(io) & (1 << rsnd_mod_id(mod)))
119 #define rsnd_ssi_can_output_clk(mod) (!__rsnd_ssi_is_pin_sharing(mod))
121 int rsnd_ssi_hdmi_port(struct rsnd_dai_stream *io)
123 struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
124 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
126 if (rsnd_flags_has(ssi, RSND_SSI_HDMI0))
127 return RSND_SSI_HDMI_PORT0;
129 if (rsnd_flags_has(ssi, RSND_SSI_HDMI1))
130 return RSND_SSI_HDMI_PORT1;
135 int rsnd_ssi_use_busif(struct rsnd_dai_stream *io)
137 struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
138 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
141 if (!rsnd_ssi_is_dma_mode(mod))
144 if (!(rsnd_flags_has(ssi, RSND_SSI_NO_BUSIF)))
146 if (rsnd_io_to_mod_src(io))
152 static void rsnd_ssi_status_clear(struct rsnd_mod *mod)
154 rsnd_mod_write(mod, SSISR, 0);
157 static u32 rsnd_ssi_status_get(struct rsnd_mod *mod)
159 return rsnd_mod_read(mod, SSISR);
162 static void rsnd_ssi_status_check(struct rsnd_mod *mod,
165 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
166 struct device *dev = rsnd_priv_to_dev(priv);
170 for (i = 0; i < 1024; i++) {
171 status = rsnd_ssi_status_get(mod);
178 dev_warn(dev, "%s[%d] status check failed\n",
179 rsnd_mod_name(mod), rsnd_mod_id(mod));
182 static u32 rsnd_ssi_multi_slaves(struct rsnd_dai_stream *io)
184 struct rsnd_mod *mod;
185 enum rsnd_mod_type types[] = {
193 for (i = 0; i < ARRAY_SIZE(types); i++) {
194 mod = rsnd_io_to_mod(io, types[i]);
198 mask |= 1 << rsnd_mod_id(mod);
204 static u32 rsnd_ssi_run_mods(struct rsnd_dai_stream *io)
206 struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
207 struct rsnd_mod *ssi_parent_mod = rsnd_io_to_mod_ssip(io);
210 mods = rsnd_ssi_multi_slaves_runtime(io) |
211 1 << rsnd_mod_id(ssi_mod);
214 mods |= 1 << rsnd_mod_id(ssi_parent_mod);
219 u32 rsnd_ssi_multi_slaves_runtime(struct rsnd_dai_stream *io)
221 if (rsnd_runtime_is_ssi_multi(io))
222 return rsnd_ssi_multi_slaves(io);
227 unsigned int rsnd_ssi_clk_query(struct rsnd_priv *priv,
228 int param1, int param2, int *idx)
230 int ssi_clk_mul_table[] = {
231 1, 2, 4, 8, 16, 6, 12,
234 unsigned int main_rate;
236 for (j = 0; j < ARRAY_SIZE(ssi_clk_mul_table); j++) {
239 * It will set SSIWSR.CONT here, but SSICR.CKDV = 000
240 * with it is not allowed. (SSIWSR.WS_MODE with
241 * SSICR.CKDV = 000 is not allowed either).
242 * Skip it. See SSICR.CKDV
248 * this driver is assuming that
249 * system word is 32bit x chan
250 * see rsnd_ssi_init()
252 main_rate = 32 * param1 * param2 * ssi_clk_mul_table[j];
254 ret = rsnd_adg_clk_query(priv, main_rate);
267 static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod,
268 struct rsnd_dai_stream *io)
270 struct rsnd_priv *priv = rsnd_io_to_priv(io);
271 struct device *dev = rsnd_priv_to_dev(priv);
272 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
273 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
274 int chan = rsnd_runtime_channel_for_ssi(io);
276 unsigned int main_rate;
277 unsigned int rate = rsnd_io_is_play(io) ?
278 rsnd_src_get_out_rate(priv, io) :
279 rsnd_src_get_in_rate(priv, io);
281 if (!rsnd_rdai_is_clk_master(rdai))
284 if (!rsnd_ssi_can_output_clk(mod))
287 if (rsnd_ssi_is_multi_slave(mod, io))
290 if (ssi->usrcnt > 1) {
291 if (ssi->rate != rate) {
292 dev_err(dev, "SSI parent/child should use same rate\n");
299 main_rate = rsnd_ssi_clk_query(priv, rate, chan, &idx);
301 dev_err(dev, "unsupported clock rate\n");
305 ret = rsnd_adg_ssi_clk_try_start(mod, main_rate);
310 * SSI clock will be output contiguously
312 * This means, rsnd_ssi_master_clk_start()
313 * and rsnd_ssi_register_setup() are necessary
316 * SSICR : FORCE, SCKD, SWSD
319 ssi->cr_clk = FORCE | SWL_32 | SCKD | SWSD | CKDV(idx);
323 dev_dbg(dev, "%s[%d] outputs %u Hz\n",
325 rsnd_mod_id(mod), rate);
330 static void rsnd_ssi_master_clk_stop(struct rsnd_mod *mod,
331 struct rsnd_dai_stream *io)
333 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
334 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
336 if (!rsnd_rdai_is_clk_master(rdai))
339 if (!rsnd_ssi_can_output_clk(mod))
348 rsnd_adg_ssi_clk_stop(mod);
351 static void rsnd_ssi_config_init(struct rsnd_mod *mod,
352 struct rsnd_dai_stream *io)
354 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
355 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
356 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
357 u32 cr_own = ssi->cr_own;
358 u32 cr_mode = ssi->cr_mode;
362 is_tdm = rsnd_runtime_is_ssi_tdm(io);
365 * always use 32bit system word.
366 * see also rsnd_ssi_master_clk_enable()
368 cr_own |= FORCE | SWL_32;
370 if (rdai->bit_clk_inv)
372 if (rdai->frm_clk_inv ^ is_tdm)
374 if (rdai->data_alignment)
380 * We shouldn't exchange SWSP after running.
381 * This means, parent needs to care it.
383 if (rsnd_ssi_is_parent(mod, io))
386 if (rsnd_io_is_play(io))
390 switch (snd_pcm_format_width(runtime->format)) {
399 if (rsnd_ssi_is_dma_mode(mod)) {
400 cr_mode = UIEN | OIEN | /* over/under run */
401 DMEN; /* DMA : enable DMA */
403 cr_mode = DIEN; /* PIO : enable Data interrupt */
409 * rsnd_ssiu_init_gen2()
417 ssi->cr_own = cr_own;
418 ssi->cr_mode = cr_mode;
422 static void rsnd_ssi_register_setup(struct rsnd_mod *mod)
424 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
426 rsnd_mod_write(mod, SSIWSR, ssi->wsr);
427 rsnd_mod_write(mod, SSICR, ssi->cr_own |
434 * SSI mod common functions
436 static int rsnd_ssi_init(struct rsnd_mod *mod,
437 struct rsnd_dai_stream *io,
438 struct rsnd_priv *priv)
440 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
443 if (!rsnd_ssi_is_run_mods(mod, io))
448 rsnd_mod_power_on(mod);
450 ret = rsnd_ssi_master_clk_start(mod, io);
454 rsnd_ssi_config_init(mod, io);
456 rsnd_ssi_register_setup(mod);
458 /* clear error status */
459 rsnd_ssi_status_clear(mod);
464 static int rsnd_ssi_quit(struct rsnd_mod *mod,
465 struct rsnd_dai_stream *io,
466 struct rsnd_priv *priv)
468 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
469 struct device *dev = rsnd_priv_to_dev(priv);
471 if (!rsnd_ssi_is_run_mods(mod, io))
475 dev_err(dev, "%s[%d] usrcnt error\n",
476 rsnd_mod_name(mod), rsnd_mod_id(mod));
480 rsnd_ssi_master_clk_stop(mod, io);
482 rsnd_mod_power_off(mod);
495 static int rsnd_ssi_hw_params(struct rsnd_mod *mod,
496 struct rsnd_dai_stream *io,
497 struct snd_pcm_substream *substream,
498 struct snd_pcm_hw_params *params)
500 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
501 int chan = params_channels(params);
504 * snd_pcm_ops::hw_params will be called *before*
505 * snd_soc_dai_ops::trigger. Thus, ssi->usrcnt is 0
511 * It will happen if SSI has parent/child connection.
512 * it is error if child <-> parent SSI uses
513 * different channels.
515 if (ssi->chan != chan)
524 static int rsnd_ssi_start(struct rsnd_mod *mod,
525 struct rsnd_dai_stream *io,
526 struct rsnd_priv *priv)
528 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
530 if (!rsnd_ssi_is_run_mods(mod, io))
534 * EN will be set via SSIU :: SSI_CONTROL
535 * if Multi channel mode
537 if (rsnd_ssi_multi_slaves_runtime(io))
541 * EN is for data output.
542 * SSI parent EN is not needed.
544 if (rsnd_ssi_is_parent(mod, io))
549 rsnd_mod_write(mod, SSICR, ssi->cr_own |
557 static int rsnd_ssi_stop(struct rsnd_mod *mod,
558 struct rsnd_dai_stream *io,
559 struct rsnd_priv *priv)
561 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
564 if (!rsnd_ssi_is_run_mods(mod, io))
567 if (rsnd_ssi_is_parent(mod, io))
575 * Playback: Wait all data was sent
576 * Capture: It might not receave data. Do nothing
578 if (rsnd_io_is_play(io)) {
579 rsnd_mod_write(mod, SSICR, cr | EN);
580 rsnd_ssi_status_check(mod, DIRQ);
585 * and, wait idle state
587 rsnd_mod_write(mod, SSICR, cr); /* disabled all */
588 rsnd_ssi_status_check(mod, IIRQ);
595 static int rsnd_ssi_irq(struct rsnd_mod *mod,
596 struct rsnd_dai_stream *io,
597 struct rsnd_priv *priv,
602 if (rsnd_is_gen1(priv))
605 if (rsnd_ssi_is_parent(mod, io))
608 if (!rsnd_ssi_is_run_mods(mod, io))
612 val = rsnd_ssi_is_dma_mode(mod) ? 0x0e000000 : 0x0f000000;
614 rsnd_mod_write(mod, SSI_INT_ENABLE, val);
619 static bool rsnd_ssi_pio_interrupt(struct rsnd_mod *mod,
620 struct rsnd_dai_stream *io);
621 static void __rsnd_ssi_interrupt(struct rsnd_mod *mod,
622 struct rsnd_dai_stream *io)
624 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
625 struct device *dev = rsnd_priv_to_dev(priv);
626 int is_dma = rsnd_ssi_is_dma_mode(mod);
628 bool elapsed = false;
631 spin_lock(&priv->lock);
633 /* ignore all cases if not working */
634 if (!rsnd_io_is_working(io))
635 goto rsnd_ssi_interrupt_out;
637 status = rsnd_ssi_status_get(mod);
640 if (!is_dma && (status & DIRQ))
641 elapsed = rsnd_ssi_pio_interrupt(mod, io);
644 if (is_dma && (status & (UIRQ | OIRQ))) {
645 rsnd_dbg_irq_status(dev, "%s[%d] err status : 0x%08x\n",
646 rsnd_mod_name(mod), rsnd_mod_id(mod), status);
651 rsnd_ssi_status_clear(mod);
652 rsnd_ssi_interrupt_out:
653 spin_unlock(&priv->lock);
656 rsnd_dai_period_elapsed(io);
659 snd_pcm_stop_xrun(io->substream);
663 static irqreturn_t rsnd_ssi_interrupt(int irq, void *data)
665 struct rsnd_mod *mod = data;
667 rsnd_mod_interrupt(mod, __rsnd_ssi_interrupt);
675 static void rsnd_ssi_parent_attach(struct rsnd_mod *mod,
676 struct rsnd_dai_stream *io)
678 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
679 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
681 if (!__rsnd_ssi_is_pin_sharing(mod))
684 if (!rsnd_rdai_is_clk_master(rdai))
687 switch (rsnd_mod_id(mod)) {
690 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 0), io, RSND_MOD_SSIP);
693 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 3), io, RSND_MOD_SSIP);
696 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 7), io, RSND_MOD_SSIP);
701 static int rsnd_ssi_pcm_new(struct rsnd_mod *mod,
702 struct rsnd_dai_stream *io,
703 struct snd_soc_pcm_runtime *rtd)
706 * rsnd_rdai_is_clk_master() will be enabled after set_fmt,
707 * and, pcm_new will be called after it.
708 * This function reuse pcm_new at this point.
710 rsnd_ssi_parent_attach(mod, io);
715 static int rsnd_ssi_common_probe(struct rsnd_mod *mod,
716 struct rsnd_dai_stream *io,
717 struct rsnd_priv *priv)
719 struct device *dev = rsnd_priv_to_dev(priv);
720 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
724 * SSIP/SSIU/IRQ are not needed on
727 if (rsnd_ssi_is_multi_slave(mod, io))
731 * It can't judge ssi parent at this point
732 * see rsnd_ssi_pcm_new()
735 ret = rsnd_ssiu_attach(io, mod);
740 * SSI might be called again as PIO fallback
741 * It is easy to manual handling for IRQ request/free
743 * OTOH, this function might be called many times if platform is
744 * using MIX. It needs xxx_attach() many times on xxx_probe().
745 * Because of it, we can't control .probe/.remove calling count by
747 * But it don't need to call request_irq() many times.
748 * Let's control it by RSND_SSI_PROBED flag.
750 if (!rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
751 ret = request_irq(ssi->irq,
756 rsnd_flags_set(ssi, RSND_SSI_PROBED);
762 static int rsnd_ssi_common_remove(struct rsnd_mod *mod,
763 struct rsnd_dai_stream *io,
764 struct rsnd_priv *priv)
766 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
767 struct rsnd_mod *pure_ssi_mod = rsnd_io_to_mod_ssi(io);
769 /* Do nothing if non SSI (= SSI parent, multi SSI) mod */
770 if (pure_ssi_mod != mod)
773 /* PIO will request IRQ again */
774 if (rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
775 free_irq(ssi->irq, mod);
777 rsnd_flags_del(ssi, RSND_SSI_PROBED);
786 static bool rsnd_ssi_pio_interrupt(struct rsnd_mod *mod,
787 struct rsnd_dai_stream *io)
789 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
790 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
791 u32 *buf = (u32 *)(runtime->dma_area + ssi->byte_pos);
794 bool elapsed = false;
796 if (snd_pcm_format_width(runtime->format) == 24)
800 * 8/16/32 data can be assesse to TDR/RDR register
801 * directly as 32bit data
802 * see rsnd_ssi_init()
804 if (rsnd_io_is_play(io))
805 rsnd_mod_write(mod, SSITDR, (*buf) << shift);
807 *buf = (rsnd_mod_read(mod, SSIRDR) >> shift);
809 byte_pos = ssi->byte_pos + sizeof(*buf);
811 if (byte_pos >= ssi->next_period_byte) {
812 int period_pos = byte_pos / ssi->byte_per_period;
814 if (period_pos >= runtime->periods) {
819 ssi->next_period_byte = (period_pos + 1) * ssi->byte_per_period;
824 WRITE_ONCE(ssi->byte_pos, byte_pos);
829 static int rsnd_ssi_pio_init(struct rsnd_mod *mod,
830 struct rsnd_dai_stream *io,
831 struct rsnd_priv *priv)
833 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
834 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
836 if (!rsnd_ssi_is_parent(mod, io)) {
838 ssi->byte_per_period = runtime->period_size *
840 samples_to_bytes(runtime, 1);
841 ssi->next_period_byte = ssi->byte_per_period;
844 return rsnd_ssi_init(mod, io, priv);
847 static int rsnd_ssi_pio_pointer(struct rsnd_mod *mod,
848 struct rsnd_dai_stream *io,
849 snd_pcm_uframes_t *pointer)
851 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
852 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
854 *pointer = bytes_to_frames(runtime, READ_ONCE(ssi->byte_pos));
859 static struct rsnd_mod_ops rsnd_ssi_pio_ops = {
861 .probe = rsnd_ssi_common_probe,
862 .remove = rsnd_ssi_common_remove,
863 .init = rsnd_ssi_pio_init,
864 .quit = rsnd_ssi_quit,
865 .start = rsnd_ssi_start,
866 .stop = rsnd_ssi_stop,
868 .pointer = rsnd_ssi_pio_pointer,
869 .pcm_new = rsnd_ssi_pcm_new,
870 .hw_params = rsnd_ssi_hw_params,
873 static int rsnd_ssi_dma_probe(struct rsnd_mod *mod,
874 struct rsnd_dai_stream *io,
875 struct rsnd_priv *priv)
877 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
881 * SSIP/SSIU/IRQ/DMA are not needed on
884 if (rsnd_ssi_is_multi_slave(mod, io))
887 ret = rsnd_ssi_common_probe(mod, io, priv);
891 /* SSI probe might be called many times in MUX multi path */
892 ret = rsnd_dma_attach(io, mod, &ssi->dma);
897 static int rsnd_ssi_fallback(struct rsnd_mod *mod,
898 struct rsnd_dai_stream *io,
899 struct rsnd_priv *priv)
901 struct device *dev = rsnd_priv_to_dev(priv);
906 * SSI .probe might be called again.
908 * rsnd_rdai_continuance_probe()
910 mod->ops = &rsnd_ssi_pio_ops;
912 dev_info(dev, "%s[%d] fallback to PIO mode\n",
913 rsnd_mod_name(mod), rsnd_mod_id(mod));
918 static struct dma_chan *rsnd_ssi_dma_req(struct rsnd_dai_stream *io,
919 struct rsnd_mod *mod)
921 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
922 int is_play = rsnd_io_is_play(io);
925 if (rsnd_ssi_use_busif(io))
926 name = is_play ? "rxu" : "txu";
928 name = is_play ? "rx" : "tx";
930 return rsnd_dma_request_channel(rsnd_ssi_of_node(priv),
934 static struct rsnd_mod_ops rsnd_ssi_dma_ops = {
936 .dma_req = rsnd_ssi_dma_req,
937 .probe = rsnd_ssi_dma_probe,
938 .remove = rsnd_ssi_common_remove,
939 .init = rsnd_ssi_init,
940 .quit = rsnd_ssi_quit,
941 .start = rsnd_ssi_start,
942 .stop = rsnd_ssi_stop,
944 .pcm_new = rsnd_ssi_pcm_new,
945 .fallback = rsnd_ssi_fallback,
946 .hw_params = rsnd_ssi_hw_params,
949 int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod)
951 return mod->ops == &rsnd_ssi_dma_ops;
958 static void rsnd_ssi_connect(struct rsnd_mod *mod,
959 struct rsnd_dai_stream *io)
961 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
962 enum rsnd_mod_type types[] = {
968 enum rsnd_mod_type type;
971 /* try SSI -> SSIM1 -> SSIM2 -> SSIM3 */
972 for (i = 0; i < ARRAY_SIZE(types); i++) {
974 if (!rsnd_io_to_mod(io, type)) {
975 rsnd_dai_connect(mod, io, type);
976 rsnd_rdai_channels_set(rdai, (i + 1) * 2);
977 rsnd_rdai_ssi_lane_set(rdai, (i + 1));
983 void rsnd_parse_connect_ssi(struct rsnd_dai *rdai,
984 struct device_node *playback,
985 struct device_node *capture)
987 struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
988 struct device_node *node;
989 struct device_node *np;
990 struct rsnd_mod *mod;
993 node = rsnd_ssi_of_node(priv);
998 for_each_child_of_node(node, np) {
999 mod = rsnd_ssi_mod_get(priv, i);
1001 rsnd_ssi_connect(mod, &rdai->playback);
1003 rsnd_ssi_connect(mod, &rdai->capture);
1010 static void __rsnd_ssi_parse_hdmi_connection(struct rsnd_priv *priv,
1011 struct rsnd_dai_stream *io,
1012 struct device_node *remote_ep)
1014 struct device *dev = rsnd_priv_to_dev(priv);
1015 struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
1016 struct rsnd_ssi *ssi;
1017 struct device_node *remote_node = of_graph_get_port_parent(remote_ep);
1019 /* support Gen3 only */
1020 if (!rsnd_is_gen3(priv))
1026 ssi = rsnd_mod_to_ssi(mod);
1029 if (strstr(remote_node->full_name, "hdmi@fead0000")) {
1030 rsnd_flags_set(ssi, RSND_SSI_HDMI0);
1031 dev_dbg(dev, "%s[%d] connected to HDMI0\n",
1032 rsnd_mod_name(mod), rsnd_mod_id(mod));
1036 if (strstr(remote_node->full_name, "hdmi@feae0000")) {
1037 rsnd_flags_set(ssi, RSND_SSI_HDMI1);
1038 dev_dbg(dev, "%s[%d] connected to HDMI1\n",
1039 rsnd_mod_name(mod), rsnd_mod_id(mod));
1043 void rsnd_ssi_parse_hdmi_connection(struct rsnd_priv *priv,
1044 struct device_node *endpoint,
1047 struct rsnd_dai *rdai = rsnd_rdai_get(priv, dai_i);
1048 struct device_node *remote_ep;
1050 remote_ep = of_graph_get_remote_endpoint(endpoint);
1054 __rsnd_ssi_parse_hdmi_connection(priv, &rdai->playback, remote_ep);
1055 __rsnd_ssi_parse_hdmi_connection(priv, &rdai->capture, remote_ep);
1058 struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id)
1060 if (WARN_ON(id < 0 || id >= rsnd_ssi_nr(priv)))
1063 return rsnd_mod_get(rsnd_ssi_get(priv, id));
1066 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod)
1071 return !!(rsnd_flags_has(rsnd_mod_to_ssi(mod), RSND_SSI_CLK_PIN_SHARE));
1074 static u32 *rsnd_ssi_get_status(struct rsnd_dai_stream *io,
1075 struct rsnd_mod *mod,
1076 enum rsnd_mod_type type)
1079 * SSIP (= SSI parent) needs to be special, otherwise,
1080 * 2nd SSI might doesn't start. see also rsnd_mod_call()
1082 * We can't include parent SSI status on SSI, because we don't know
1083 * how many SSI requests parent SSI. Thus, it is localed on "io" now.
1086 * Capture : SSI1 (needs SSI0)
1088 * 1) start Capture -> SSI0/SSI1 are started.
1089 * 2) start Playback -> SSI0 doesn't work, because it is already
1090 * marked as "started" on 1)
1092 * OTOH, using each mod's status is good for MUX case.
1093 * It doesn't need to start in 2nd start
1095 * IO-0: SRC0 -> CTU1 -+-> MUX -> DVC -> SSIU -> SSI0
1097 * IO-1: SRC1 -> CTU2 -+
1099 * 1) start IO-0 -> start SSI0
1100 * 2) start IO-1 -> SSI0 doesn't need to start, because it is
1101 * already started on 1)
1103 if (type == RSND_MOD_SSIP)
1104 return &io->parent_ssi_status;
1106 return rsnd_mod_get_status(io, mod, type);
1109 int rsnd_ssi_probe(struct rsnd_priv *priv)
1111 struct device_node *node;
1112 struct device_node *np;
1113 struct device *dev = rsnd_priv_to_dev(priv);
1114 struct rsnd_mod_ops *ops;
1116 struct rsnd_ssi *ssi;
1117 char name[RSND_SSI_NAME_SIZE];
1120 node = rsnd_ssi_of_node(priv);
1124 nr = of_get_child_count(node);
1127 goto rsnd_ssi_probe_done;
1130 ssi = devm_kzalloc(dev, sizeof(*ssi) * nr, GFP_KERNEL);
1133 goto rsnd_ssi_probe_done;
1140 for_each_child_of_node(node, np) {
1141 if (!of_device_is_available(np))
1144 ssi = rsnd_ssi_get(priv, i);
1146 snprintf(name, RSND_SSI_NAME_SIZE, "%s.%d",
1149 clk = devm_clk_get(dev, name);
1153 goto rsnd_ssi_probe_done;
1156 if (of_get_property(np, "shared-pin", NULL))
1157 rsnd_flags_set(ssi, RSND_SSI_CLK_PIN_SHARE);
1159 if (of_get_property(np, "no-busif", NULL))
1160 rsnd_flags_set(ssi, RSND_SSI_NO_BUSIF);
1162 ssi->irq = irq_of_parse_and_map(np, 0);
1166 goto rsnd_ssi_probe_done;
1169 if (of_property_read_bool(np, "pio-transfer"))
1170 ops = &rsnd_ssi_pio_ops;
1172 ops = &rsnd_ssi_dma_ops;
1174 ret = rsnd_mod_init(priv, rsnd_mod_get(ssi), ops, clk,
1175 rsnd_ssi_get_status, RSND_MOD_SSI, i);
1178 goto rsnd_ssi_probe_done;
1186 rsnd_ssi_probe_done:
1192 void rsnd_ssi_remove(struct rsnd_priv *priv)
1194 struct rsnd_ssi *ssi;
1197 for_each_rsnd_ssi(ssi, priv, i) {
1198 rsnd_mod_quit(rsnd_mod_get(ssi));