2 * Renesas R-Car 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.
14 #include <linux/delay.h>
16 #define RSND_SSI_NAME_SIZE 16
21 #define FORCE (1 << 31) /* Fixed */
22 #define DMEN (1 << 28) /* DMA Enable */
23 #define UIEN (1 << 27) /* Underflow Interrupt Enable */
24 #define OIEN (1 << 26) /* Overflow Interrupt Enable */
25 #define IIEN (1 << 25) /* Idle Mode Interrupt Enable */
26 #define DIEN (1 << 24) /* Data Interrupt Enable */
27 #define CHNL_4 (1 << 22) /* Channels */
28 #define CHNL_6 (2 << 22) /* Channels */
29 #define CHNL_8 (3 << 22) /* Channels */
30 #define DWL_8 (0 << 19) /* Data Word Length */
31 #define DWL_16 (1 << 19) /* Data Word Length */
32 #define DWL_18 (2 << 19) /* Data Word Length */
33 #define DWL_20 (3 << 19) /* Data Word Length */
34 #define DWL_22 (4 << 19) /* Data Word Length */
35 #define DWL_24 (5 << 19) /* Data Word Length */
36 #define DWL_32 (6 << 19) /* Data Word Length */
38 #define SWL_32 (3 << 16) /* R/W System Word Length */
39 #define SCKD (1 << 15) /* Serial Bit Clock Direction */
40 #define SWSD (1 << 14) /* Serial WS Direction */
41 #define SCKP (1 << 13) /* Serial Bit Clock Polarity */
42 #define SWSP (1 << 12) /* Serial WS Polarity */
43 #define SDTA (1 << 10) /* Serial Data Alignment */
44 #define PDTA (1 << 9) /* Parallel Data Alignment */
45 #define DEL (1 << 8) /* Serial Data Delay */
46 #define CKDV(v) (v << 4) /* Serial Clock Division Ratio */
47 #define TRMD (1 << 1) /* Transmit/Receive Mode Select */
48 #define EN (1 << 0) /* SSI Module Enable */
53 #define UIRQ (1 << 27) /* Underflow Error Interrupt Status */
54 #define OIRQ (1 << 26) /* Overflow Error Interrupt Status */
55 #define IIRQ (1 << 25) /* Idle Mode Interrupt Status */
56 #define DIRQ (1 << 24) /* Data Interrupt Status Flag */
61 #define CONT (1 << 8) /* WS Continue Function */
62 #define WS_MODE (1 << 0) /* WS Mode */
64 #define SSI_NAME "ssi"
82 #define RSND_SSI_CLK_PIN_SHARE (1 << 0)
83 #define RSND_SSI_NO_BUSIF (1 << 1) /* SSI+DMA without BUSIF */
85 #define for_each_rsnd_ssi(pos, priv, i) \
87 (i < rsnd_ssi_nr(priv)) && \
88 ((pos) = ((struct rsnd_ssi *)(priv)->ssi + i)); \
91 #define rsnd_ssi_get(priv, id) ((struct rsnd_ssi *)(priv->ssi) + id)
92 #define rsnd_ssi_to_dma(mod) ((ssi)->dma)
93 #define rsnd_ssi_nr(priv) ((priv)->ssi_nr)
94 #define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod)
95 #define rsnd_ssi_mode_flags(p) ((p)->flags)
96 #define rsnd_ssi_is_parent(ssi, io) ((ssi) == rsnd_io_to_mod_ssip(io))
97 #define rsnd_ssi_is_multi_slave(mod, io) \
98 (rsnd_ssi_multi_slaves(io) & (1 << rsnd_mod_id(mod)))
99 #define rsnd_ssi_is_run_mods(mod, io) \
100 (rsnd_ssi_run_mods(io) & (1 << rsnd_mod_id(mod)))
102 int rsnd_ssi_use_busif(struct rsnd_dai_stream
*io
)
104 struct rsnd_mod
*mod
= rsnd_io_to_mod_ssi(io
);
105 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
108 if (!rsnd_ssi_is_dma_mode(mod
))
111 if (!(rsnd_ssi_mode_flags(ssi
) & RSND_SSI_NO_BUSIF
))
113 if (rsnd_io_to_mod_src(io
))
119 static void rsnd_ssi_status_clear(struct rsnd_mod
*mod
)
121 rsnd_mod_write(mod
, SSISR
, 0);
124 static u32
rsnd_ssi_status_get(struct rsnd_mod
*mod
)
126 return rsnd_mod_read(mod
, SSISR
);
129 static void rsnd_ssi_status_check(struct rsnd_mod
*mod
,
132 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
133 struct device
*dev
= rsnd_priv_to_dev(priv
);
137 for (i
= 0; i
< 1024; i
++) {
138 status
= rsnd_ssi_status_get(mod
);
145 dev_warn(dev
, "%s[%d] status check failed\n",
146 rsnd_mod_name(mod
), rsnd_mod_id(mod
));
149 static u32
rsnd_ssi_multi_slaves(struct rsnd_dai_stream
*io
)
151 struct rsnd_mod
*mod
;
152 enum rsnd_mod_type types
[] = {
160 for (i
= 0; i
< ARRAY_SIZE(types
); i
++) {
161 mod
= rsnd_io_to_mod(io
, types
[i
]);
165 mask
|= 1 << rsnd_mod_id(mod
);
171 static u32
rsnd_ssi_run_mods(struct rsnd_dai_stream
*io
)
173 struct rsnd_mod
*ssi_mod
= rsnd_io_to_mod_ssi(io
);
174 struct rsnd_mod
*ssi_parent_mod
= rsnd_io_to_mod_ssip(io
);
176 return rsnd_ssi_multi_slaves_runtime(io
) |
177 1 << rsnd_mod_id(ssi_mod
) |
178 1 << rsnd_mod_id(ssi_parent_mod
);
181 u32
rsnd_ssi_multi_slaves_runtime(struct rsnd_dai_stream
*io
)
183 if (rsnd_runtime_is_ssi_multi(io
))
184 return rsnd_ssi_multi_slaves(io
);
189 static int rsnd_ssi_master_clk_start(struct rsnd_mod
*mod
,
190 struct rsnd_dai_stream
*io
)
192 struct rsnd_priv
*priv
= rsnd_io_to_priv(io
);
193 struct device
*dev
= rsnd_priv_to_dev(priv
);
194 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
195 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
196 struct rsnd_mod
*ssi_parent_mod
= rsnd_io_to_mod_ssip(io
);
197 int chan
= rsnd_runtime_channel_for_ssi(io
);
199 int ssi_clk_mul_table
[] = {
200 1, 2, 4, 8, 16, 6, 12,
202 unsigned int main_rate
;
203 unsigned int rate
= rsnd_io_is_play(io
) ?
204 rsnd_src_get_out_rate(priv
, io
) :
205 rsnd_src_get_in_rate(priv
, io
);
207 if (!rsnd_rdai_is_clk_master(rdai
))
210 if (ssi_parent_mod
&& !rsnd_ssi_is_parent(mod
, io
))
213 if (rsnd_ssi_is_multi_slave(mod
, io
))
216 if (ssi
->usrcnt
> 1) {
217 if (ssi
->rate
!= rate
) {
218 dev_err(dev
, "SSI parent/child should use same rate\n");
226 * Find best clock, and try to start ADG
228 for (j
= 0; j
< ARRAY_SIZE(ssi_clk_mul_table
); j
++) {
231 * this driver is assuming that
232 * system word is 32bit x chan
233 * see rsnd_ssi_init()
235 main_rate
= rate
* 32 * chan
* ssi_clk_mul_table
[j
];
237 ret
= rsnd_adg_ssi_clk_try_start(mod
, main_rate
);
239 ssi
->cr_clk
= FORCE
| SWL_32
|
240 SCKD
| SWSD
| CKDV(j
);
245 dev_dbg(dev
, "%s[%d] outputs %u Hz\n",
247 rsnd_mod_id(mod
), rate
);
253 dev_err(dev
, "unsupported clock rate\n");
257 static void rsnd_ssi_master_clk_stop(struct rsnd_mod
*mod
,
258 struct rsnd_dai_stream
*io
)
260 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
261 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
262 struct rsnd_mod
*ssi_parent_mod
= rsnd_io_to_mod_ssip(io
);
264 if (!rsnd_rdai_is_clk_master(rdai
))
267 if (ssi_parent_mod
&& !rsnd_ssi_is_parent(mod
, io
))
276 rsnd_adg_ssi_clk_stop(mod
);
279 static void rsnd_ssi_config_init(struct rsnd_mod
*mod
,
280 struct rsnd_dai_stream
*io
)
282 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
283 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
284 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
290 is_tdm
= rsnd_runtime_is_ssi_tdm(io
);
293 * always use 32bit system word.
294 * see also rsnd_ssi_master_clk_enable()
296 cr_own
= FORCE
| SWL_32
| PDTA
;
298 if (rdai
->bit_clk_inv
)
300 if (rdai
->frm_clk_inv
^ is_tdm
)
302 if (rdai
->data_alignment
)
306 if (rsnd_io_is_play(io
))
309 switch (runtime
->sample_bits
) {
318 if (rsnd_ssi_is_dma_mode(mod
)) {
319 cr_mode
= UIEN
| OIEN
| /* over/under run */
320 DMEN
; /* DMA : enable DMA */
322 cr_mode
= DIEN
; /* PIO : enable Data interrupt */
328 * rsnd_ssiu_init_gen2()
336 ssi
->cr_own
= cr_own
;
337 ssi
->cr_mode
= cr_mode
;
341 static void rsnd_ssi_register_setup(struct rsnd_mod
*mod
)
343 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
345 rsnd_mod_write(mod
, SSIWSR
, ssi
->wsr
);
346 rsnd_mod_write(mod
, SSICR
, ssi
->cr_own
|
348 ssi
->cr_mode
); /* without EN */
352 * SSI mod common functions
354 static int rsnd_ssi_init(struct rsnd_mod
*mod
,
355 struct rsnd_dai_stream
*io
,
356 struct rsnd_priv
*priv
)
358 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
361 if (!rsnd_ssi_is_run_mods(mod
, io
))
366 rsnd_mod_power_on(mod
);
368 ret
= rsnd_ssi_master_clk_start(mod
, io
);
372 if (!rsnd_ssi_is_parent(mod
, io
))
373 rsnd_ssi_config_init(mod
, io
);
375 rsnd_ssi_register_setup(mod
);
377 /* clear error status */
378 rsnd_ssi_status_clear(mod
);
383 static int rsnd_ssi_quit(struct rsnd_mod
*mod
,
384 struct rsnd_dai_stream
*io
,
385 struct rsnd_priv
*priv
)
387 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
388 struct device
*dev
= rsnd_priv_to_dev(priv
);
390 if (!rsnd_ssi_is_run_mods(mod
, io
))
394 dev_err(dev
, "%s[%d] usrcnt error\n",
395 rsnd_mod_name(mod
), rsnd_mod_id(mod
));
399 if (!rsnd_ssi_is_parent(mod
, io
))
402 rsnd_ssi_master_clk_stop(mod
, io
);
404 rsnd_mod_power_off(mod
);
411 static int rsnd_ssi_hw_params(struct rsnd_mod
*mod
,
412 struct rsnd_dai_stream
*io
,
413 struct snd_pcm_substream
*substream
,
414 struct snd_pcm_hw_params
*params
)
416 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
417 int chan
= params_channels(params
);
420 * snd_pcm_ops::hw_params will be called *before*
421 * snd_soc_dai_ops::trigger. Thus, ssi->usrcnt is 0
427 * It will happen if SSI has parent/child connection.
428 * it is error if child <-> parent SSI uses
429 * different channels.
431 if (ssi
->chan
!= chan
)
440 static int rsnd_ssi_start(struct rsnd_mod
*mod
,
441 struct rsnd_dai_stream
*io
,
442 struct rsnd_priv
*priv
)
444 if (!rsnd_ssi_is_run_mods(mod
, io
))
448 * EN will be set via SSIU :: SSI_CONTROL
449 * if Multi channel mode
451 if (rsnd_ssi_multi_slaves_runtime(io
))
454 rsnd_mod_bset(mod
, SSICR
, EN
, EN
);
459 static int rsnd_ssi_stop(struct rsnd_mod
*mod
,
460 struct rsnd_dai_stream
*io
,
461 struct rsnd_priv
*priv
)
463 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
466 if (!rsnd_ssi_is_run_mods(mod
, io
))
470 * don't stop if not last user
480 * and, wait all data was sent
485 rsnd_mod_write(mod
, SSICR
, cr
| EN
);
486 rsnd_ssi_status_check(mod
, DIRQ
);
490 * and, wait idle state
492 rsnd_mod_write(mod
, SSICR
, cr
); /* disabled all */
493 rsnd_ssi_status_check(mod
, IIRQ
);
498 static int rsnd_ssi_irq(struct rsnd_mod
*mod
,
499 struct rsnd_dai_stream
*io
,
500 struct rsnd_priv
*priv
,
505 if (rsnd_is_gen1(priv
))
508 if (rsnd_ssi_is_parent(mod
, io
))
511 if (!rsnd_ssi_is_run_mods(mod
, io
))
515 val
= rsnd_ssi_is_dma_mode(mod
) ? 0x0e000000 : 0x0f000000;
517 rsnd_mod_write(mod
, SSI_INT_ENABLE
, val
);
522 static void __rsnd_ssi_interrupt(struct rsnd_mod
*mod
,
523 struct rsnd_dai_stream
*io
)
525 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
526 int is_dma
= rsnd_ssi_is_dma_mode(mod
);
528 bool elapsed
= false;
531 spin_lock(&priv
->lock
);
533 /* ignore all cases if not working */
534 if (!rsnd_io_is_working(io
))
535 goto rsnd_ssi_interrupt_out
;
537 status
= rsnd_ssi_status_get(mod
);
540 if (!is_dma
&& (status
& DIRQ
)) {
541 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
542 u32
*buf
= (u32
*)(runtime
->dma_area
+
543 rsnd_dai_pointer_offset(io
, 0));
546 * 8/16/32 data can be assesse to TDR/RDR register
547 * directly as 32bit data
548 * see rsnd_ssi_init()
550 if (rsnd_io_is_play(io
))
551 rsnd_mod_write(mod
, SSITDR
, *buf
);
553 *buf
= rsnd_mod_read(mod
, SSIRDR
);
555 elapsed
= rsnd_dai_pointer_update(io
, sizeof(*buf
));
559 if (is_dma
&& (status
& (UIRQ
| OIRQ
)))
562 rsnd_ssi_status_clear(mod
);
563 rsnd_ssi_interrupt_out
:
564 spin_unlock(&priv
->lock
);
567 rsnd_dai_period_elapsed(io
);
570 snd_pcm_stop_xrun(io
->substream
);
574 static irqreturn_t
rsnd_ssi_interrupt(int irq
, void *data
)
576 struct rsnd_mod
*mod
= data
;
578 rsnd_mod_interrupt(mod
, __rsnd_ssi_interrupt
);
586 static void rsnd_ssi_parent_attach(struct rsnd_mod
*mod
,
587 struct rsnd_dai_stream
*io
)
589 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
590 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
592 if (!__rsnd_ssi_is_pin_sharing(mod
))
595 if (!rsnd_rdai_is_clk_master(rdai
))
598 switch (rsnd_mod_id(mod
)) {
601 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 0), io
, RSND_MOD_SSIP
);
604 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 3), io
, RSND_MOD_SSIP
);
607 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 7), io
, RSND_MOD_SSIP
);
612 static int rsnd_ssi_pcm_new(struct rsnd_mod
*mod
,
613 struct rsnd_dai_stream
*io
,
614 struct snd_soc_pcm_runtime
*rtd
)
617 * rsnd_rdai_is_clk_master() will be enabled after set_fmt,
618 * and, pcm_new will be called after it.
619 * This function reuse pcm_new at this point.
621 rsnd_ssi_parent_attach(mod
, io
);
626 static int rsnd_ssi_common_probe(struct rsnd_mod
*mod
,
627 struct rsnd_dai_stream
*io
,
628 struct rsnd_priv
*priv
)
630 struct device
*dev
= rsnd_priv_to_dev(priv
);
631 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
635 * SSIP/SSIU/IRQ are not needed on
638 if (rsnd_ssi_is_multi_slave(mod
, io
))
642 * It can't judge ssi parent at this point
643 * see rsnd_ssi_pcm_new()
646 ret
= rsnd_ssiu_attach(io
, mod
);
651 * SSI might be called again as PIO fallback
652 * It is easy to manual handling for IRQ request/free
654 ret
= request_irq(ssi
->irq
,
662 static struct rsnd_mod_ops rsnd_ssi_pio_ops
= {
664 .probe
= rsnd_ssi_common_probe
,
665 .init
= rsnd_ssi_init
,
666 .quit
= rsnd_ssi_quit
,
667 .start
= rsnd_ssi_start
,
668 .stop
= rsnd_ssi_stop
,
670 .pcm_new
= rsnd_ssi_pcm_new
,
671 .hw_params
= rsnd_ssi_hw_params
,
674 static int rsnd_ssi_dma_probe(struct rsnd_mod
*mod
,
675 struct rsnd_dai_stream
*io
,
676 struct rsnd_priv
*priv
)
678 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
682 * SSIP/SSIU/IRQ/DMA are not needed on
685 if (rsnd_ssi_is_multi_slave(mod
, io
))
688 ret
= rsnd_ssi_common_probe(mod
, io
, priv
);
692 /* SSI probe might be called many times in MUX multi path */
693 ret
= rsnd_dma_attach(io
, mod
, &ssi
->dma
);
698 static int rsnd_ssi_dma_remove(struct rsnd_mod
*mod
,
699 struct rsnd_dai_stream
*io
,
700 struct rsnd_priv
*priv
)
702 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
704 /* PIO will request IRQ again */
705 free_irq(ssi
->irq
, mod
);
710 static int rsnd_ssi_fallback(struct rsnd_mod
*mod
,
711 struct rsnd_dai_stream
*io
,
712 struct rsnd_priv
*priv
)
714 struct device
*dev
= rsnd_priv_to_dev(priv
);
719 * SSI .probe might be called again.
721 * rsnd_rdai_continuance_probe()
723 mod
->ops
= &rsnd_ssi_pio_ops
;
725 dev_info(dev
, "%s[%d] fallback to PIO mode\n",
726 rsnd_mod_name(mod
), rsnd_mod_id(mod
));
731 static struct dma_chan
*rsnd_ssi_dma_req(struct rsnd_dai_stream
*io
,
732 struct rsnd_mod
*mod
)
734 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
735 int is_play
= rsnd_io_is_play(io
);
738 if (rsnd_ssi_use_busif(io
))
739 name
= is_play
? "rxu" : "txu";
741 name
= is_play
? "rx" : "tx";
743 return rsnd_dma_request_channel(rsnd_ssi_of_node(priv
),
747 static struct rsnd_mod_ops rsnd_ssi_dma_ops
= {
749 .dma_req
= rsnd_ssi_dma_req
,
750 .probe
= rsnd_ssi_dma_probe
,
751 .remove
= rsnd_ssi_dma_remove
,
752 .init
= rsnd_ssi_init
,
753 .quit
= rsnd_ssi_quit
,
754 .start
= rsnd_ssi_start
,
755 .stop
= rsnd_ssi_stop
,
757 .pcm_new
= rsnd_ssi_pcm_new
,
758 .fallback
= rsnd_ssi_fallback
,
759 .hw_params
= rsnd_ssi_hw_params
,
762 int rsnd_ssi_is_dma_mode(struct rsnd_mod
*mod
)
764 return mod
->ops
== &rsnd_ssi_dma_ops
;
771 static struct rsnd_mod_ops rsnd_ssi_non_ops
= {
778 static void rsnd_ssi_connect(struct rsnd_mod
*mod
,
779 struct rsnd_dai_stream
*io
)
781 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
782 enum rsnd_mod_type types
[] = {
788 enum rsnd_mod_type type
;
791 /* try SSI -> SSIM1 -> SSIM2 -> SSIM3 */
792 for (i
= 0; i
< ARRAY_SIZE(types
); i
++) {
794 if (!rsnd_io_to_mod(io
, type
)) {
795 rsnd_dai_connect(mod
, io
, type
);
796 rsnd_set_slot(rdai
, 2 * (i
+ 1), (i
+ 1));
802 void rsnd_parse_connect_ssi(struct rsnd_dai
*rdai
,
803 struct device_node
*playback
,
804 struct device_node
*capture
)
806 struct rsnd_priv
*priv
= rsnd_rdai_to_priv(rdai
);
807 struct device_node
*node
;
808 struct device_node
*np
;
809 struct rsnd_mod
*mod
;
812 node
= rsnd_ssi_of_node(priv
);
817 for_each_child_of_node(node
, np
) {
818 mod
= rsnd_ssi_mod_get(priv
, i
);
820 rsnd_ssi_connect(mod
, &rdai
->playback
);
822 rsnd_ssi_connect(mod
, &rdai
->capture
);
829 struct rsnd_mod
*rsnd_ssi_mod_get(struct rsnd_priv
*priv
, int id
)
831 if (WARN_ON(id
< 0 || id
>= rsnd_ssi_nr(priv
)))
834 return rsnd_mod_get(rsnd_ssi_get(priv
, id
));
837 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod
*mod
)
839 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
841 return !!(rsnd_ssi_mode_flags(ssi
) & RSND_SSI_CLK_PIN_SHARE
);
844 static u32
*rsnd_ssi_get_status(struct rsnd_dai_stream
*io
,
845 struct rsnd_mod
*mod
,
846 enum rsnd_mod_type type
)
849 * SSIP (= SSI parent) needs to be special, otherwise,
850 * 2nd SSI might doesn't start. see also rsnd_mod_call()
852 * We can't include parent SSI status on SSI, because we don't know
853 * how many SSI requests parent SSI. Thus, it is localed on "io" now.
856 * Capture : SSI1 (needs SSI0)
858 * 1) start Capture -> SSI0/SSI1 are started.
859 * 2) start Playback -> SSI0 doesn't work, because it is already
860 * marked as "started" on 1)
862 * OTOH, using each mod's status is good for MUX case.
863 * It doesn't need to start in 2nd start
865 * IO-0: SRC0 -> CTU1 -+-> MUX -> DVC -> SSIU -> SSI0
867 * IO-1: SRC1 -> CTU2 -+
869 * 1) start IO-0 -> start SSI0
870 * 2) start IO-1 -> SSI0 doesn't need to start, because it is
871 * already started on 1)
873 if (type
== RSND_MOD_SSIP
)
874 return &io
->parent_ssi_status
;
876 return rsnd_mod_get_status(io
, mod
, type
);
879 int rsnd_ssi_probe(struct rsnd_priv
*priv
)
881 struct device_node
*node
;
882 struct device_node
*np
;
883 struct device
*dev
= rsnd_priv_to_dev(priv
);
884 struct rsnd_mod_ops
*ops
;
886 struct rsnd_ssi
*ssi
;
887 char name
[RSND_SSI_NAME_SIZE
];
890 node
= rsnd_ssi_of_node(priv
);
894 nr
= of_get_child_count(node
);
897 goto rsnd_ssi_probe_done
;
900 ssi
= devm_kzalloc(dev
, sizeof(*ssi
) * nr
, GFP_KERNEL
);
903 goto rsnd_ssi_probe_done
;
910 for_each_child_of_node(node
, np
) {
911 ssi
= rsnd_ssi_get(priv
, i
);
913 snprintf(name
, RSND_SSI_NAME_SIZE
, "%s.%d",
916 clk
= devm_clk_get(dev
, name
);
919 goto rsnd_ssi_probe_done
;
922 if (of_get_property(np
, "shared-pin", NULL
))
923 ssi
->flags
|= RSND_SSI_CLK_PIN_SHARE
;
925 if (of_get_property(np
, "no-busif", NULL
))
926 ssi
->flags
|= RSND_SSI_NO_BUSIF
;
928 ssi
->irq
= irq_of_parse_and_map(np
, 0);
931 goto rsnd_ssi_probe_done
;
934 ops
= &rsnd_ssi_non_ops
;
935 if (of_property_read_bool(np
, "pio-transfer"))
936 ops
= &rsnd_ssi_pio_ops
;
938 ops
= &rsnd_ssi_dma_ops
;
940 ret
= rsnd_mod_init(priv
, rsnd_mod_get(ssi
), ops
, clk
,
941 rsnd_ssi_get_status
, RSND_MOD_SSI
, i
);
943 goto rsnd_ssi_probe_done
;
956 void rsnd_ssi_remove(struct rsnd_priv
*priv
)
958 struct rsnd_ssi
*ssi
;
961 for_each_rsnd_ssi(ssi
, priv
, i
) {
962 rsnd_mod_quit(rsnd_mod_get(ssi
));