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
);
421 * It will happen if SSI has parent/child connection.
423 if (ssi
->usrcnt
> 1) {
425 * it is error if child <-> parent SSI uses
426 * different channels.
428 if (ssi
->chan
!= chan
)
437 static int rsnd_ssi_start(struct rsnd_mod
*mod
,
438 struct rsnd_dai_stream
*io
,
439 struct rsnd_priv
*priv
)
441 if (!rsnd_ssi_is_run_mods(mod
, io
))
445 * EN will be set via SSIU :: SSI_CONTROL
446 * if Multi channel mode
448 if (rsnd_ssi_multi_slaves_runtime(io
))
451 rsnd_mod_bset(mod
, SSICR
, EN
, EN
);
456 static int rsnd_ssi_stop(struct rsnd_mod
*mod
,
457 struct rsnd_dai_stream
*io
,
458 struct rsnd_priv
*priv
)
460 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
463 if (!rsnd_ssi_is_run_mods(mod
, io
))
467 * don't stop if not last user
477 * and, wait all data was sent
482 rsnd_mod_write(mod
, SSICR
, cr
| EN
);
483 rsnd_ssi_status_check(mod
, DIRQ
);
487 * and, wait idle state
489 rsnd_mod_write(mod
, SSICR
, cr
); /* disabled all */
490 rsnd_ssi_status_check(mod
, IIRQ
);
495 static int rsnd_ssi_irq(struct rsnd_mod
*mod
,
496 struct rsnd_dai_stream
*io
,
497 struct rsnd_priv
*priv
,
502 if (rsnd_is_gen1(priv
))
505 if (rsnd_ssi_is_parent(mod
, io
))
508 if (!rsnd_ssi_is_run_mods(mod
, io
))
512 val
= rsnd_ssi_is_dma_mode(mod
) ? 0x0e000000 : 0x0f000000;
514 rsnd_mod_write(mod
, SSI_INT_ENABLE
, val
);
519 static void __rsnd_ssi_interrupt(struct rsnd_mod
*mod
,
520 struct rsnd_dai_stream
*io
)
522 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
523 int is_dma
= rsnd_ssi_is_dma_mode(mod
);
525 bool elapsed
= false;
528 spin_lock(&priv
->lock
);
530 /* ignore all cases if not working */
531 if (!rsnd_io_is_working(io
))
532 goto rsnd_ssi_interrupt_out
;
534 status
= rsnd_ssi_status_get(mod
);
537 if (!is_dma
&& (status
& DIRQ
)) {
538 struct snd_pcm_runtime
*runtime
= rsnd_io_to_runtime(io
);
539 u32
*buf
= (u32
*)(runtime
->dma_area
+
540 rsnd_dai_pointer_offset(io
, 0));
543 * 8/16/32 data can be assesse to TDR/RDR register
544 * directly as 32bit data
545 * see rsnd_ssi_init()
547 if (rsnd_io_is_play(io
))
548 rsnd_mod_write(mod
, SSITDR
, *buf
);
550 *buf
= rsnd_mod_read(mod
, SSIRDR
);
552 elapsed
= rsnd_dai_pointer_update(io
, sizeof(*buf
));
556 if (is_dma
&& (status
& (UIRQ
| OIRQ
)))
559 rsnd_ssi_status_clear(mod
);
560 rsnd_ssi_interrupt_out
:
561 spin_unlock(&priv
->lock
);
564 rsnd_dai_period_elapsed(io
);
567 snd_pcm_stop_xrun(io
->substream
);
571 static irqreturn_t
rsnd_ssi_interrupt(int irq
, void *data
)
573 struct rsnd_mod
*mod
= data
;
575 rsnd_mod_interrupt(mod
, __rsnd_ssi_interrupt
);
583 static void rsnd_ssi_parent_attach(struct rsnd_mod
*mod
,
584 struct rsnd_dai_stream
*io
)
586 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
587 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
589 if (!__rsnd_ssi_is_pin_sharing(mod
))
592 if (!rsnd_rdai_is_clk_master(rdai
))
595 switch (rsnd_mod_id(mod
)) {
598 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 0), io
, RSND_MOD_SSIP
);
601 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 3), io
, RSND_MOD_SSIP
);
604 rsnd_dai_connect(rsnd_ssi_mod_get(priv
, 7), io
, RSND_MOD_SSIP
);
609 static int rsnd_ssi_pcm_new(struct rsnd_mod
*mod
,
610 struct rsnd_dai_stream
*io
,
611 struct snd_soc_pcm_runtime
*rtd
)
614 * rsnd_rdai_is_clk_master() will be enabled after set_fmt,
615 * and, pcm_new will be called after it.
616 * This function reuse pcm_new at this point.
618 rsnd_ssi_parent_attach(mod
, io
);
623 static int rsnd_ssi_common_probe(struct rsnd_mod
*mod
,
624 struct rsnd_dai_stream
*io
,
625 struct rsnd_priv
*priv
)
627 struct device
*dev
= rsnd_priv_to_dev(priv
);
628 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
632 * SSIP/SSIU/IRQ are not needed on
635 if (rsnd_ssi_is_multi_slave(mod
, io
))
639 * It can't judge ssi parent at this point
640 * see rsnd_ssi_pcm_new()
643 ret
= rsnd_ssiu_attach(io
, mod
);
647 ret
= devm_request_irq(dev
, ssi
->irq
,
655 static struct rsnd_mod_ops rsnd_ssi_pio_ops
= {
657 .probe
= rsnd_ssi_common_probe
,
658 .init
= rsnd_ssi_init
,
659 .quit
= rsnd_ssi_quit
,
660 .start
= rsnd_ssi_start
,
661 .stop
= rsnd_ssi_stop
,
663 .pcm_new
= rsnd_ssi_pcm_new
,
664 .hw_params
= rsnd_ssi_hw_params
,
667 static int rsnd_ssi_dma_probe(struct rsnd_mod
*mod
,
668 struct rsnd_dai_stream
*io
,
669 struct rsnd_priv
*priv
)
671 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
672 int dma_id
= 0; /* not needed */
676 * SSIP/SSIU/IRQ/DMA are not needed on
679 if (rsnd_ssi_is_multi_slave(mod
, io
))
682 ret
= rsnd_ssi_common_probe(mod
, io
, priv
);
686 /* SSI probe might be called many times in MUX multi path */
687 ret
= rsnd_dma_attach(io
, mod
, &ssi
->dma
, dma_id
);
692 static int rsnd_ssi_dma_remove(struct rsnd_mod
*mod
,
693 struct rsnd_dai_stream
*io
,
694 struct rsnd_priv
*priv
)
696 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
697 struct device
*dev
= rsnd_priv_to_dev(priv
);
700 /* PIO will request IRQ again */
701 devm_free_irq(dev
, irq
, mod
);
706 static int rsnd_ssi_fallback(struct rsnd_mod
*mod
,
707 struct rsnd_dai_stream
*io
,
708 struct rsnd_priv
*priv
)
710 struct device
*dev
= rsnd_priv_to_dev(priv
);
715 * SSI .probe might be called again.
717 * rsnd_rdai_continuance_probe()
719 mod
->ops
= &rsnd_ssi_pio_ops
;
721 dev_info(dev
, "%s[%d] fallback to PIO mode\n",
722 rsnd_mod_name(mod
), rsnd_mod_id(mod
));
727 static struct dma_chan
*rsnd_ssi_dma_req(struct rsnd_dai_stream
*io
,
728 struct rsnd_mod
*mod
)
730 struct rsnd_priv
*priv
= rsnd_mod_to_priv(mod
);
731 int is_play
= rsnd_io_is_play(io
);
734 if (rsnd_ssi_use_busif(io
))
735 name
= is_play
? "rxu" : "txu";
737 name
= is_play
? "rx" : "tx";
739 return rsnd_dma_request_channel(rsnd_ssi_of_node(priv
),
743 static struct rsnd_mod_ops rsnd_ssi_dma_ops
= {
745 .dma_req
= rsnd_ssi_dma_req
,
746 .probe
= rsnd_ssi_dma_probe
,
747 .remove
= rsnd_ssi_dma_remove
,
748 .init
= rsnd_ssi_init
,
749 .quit
= rsnd_ssi_quit
,
750 .start
= rsnd_ssi_start
,
751 .stop
= rsnd_ssi_stop
,
753 .pcm_new
= rsnd_ssi_pcm_new
,
754 .fallback
= rsnd_ssi_fallback
,
755 .hw_params
= rsnd_ssi_hw_params
,
758 int rsnd_ssi_is_dma_mode(struct rsnd_mod
*mod
)
760 return mod
->ops
== &rsnd_ssi_dma_ops
;
767 static struct rsnd_mod_ops rsnd_ssi_non_ops
= {
774 static void rsnd_ssi_connect(struct rsnd_mod
*mod
,
775 struct rsnd_dai_stream
*io
)
777 struct rsnd_dai
*rdai
= rsnd_io_to_rdai(io
);
778 enum rsnd_mod_type types
[] = {
784 enum rsnd_mod_type type
;
787 /* try SSI -> SSIM1 -> SSIM2 -> SSIM3 */
788 for (i
= 0; i
< ARRAY_SIZE(types
); i
++) {
790 if (!rsnd_io_to_mod(io
, type
)) {
791 rsnd_dai_connect(mod
, io
, type
);
792 rsnd_set_slot(rdai
, 2 * (i
+ 1), (i
+ 1));
798 void rsnd_parse_connect_ssi(struct rsnd_dai
*rdai
,
799 struct device_node
*playback
,
800 struct device_node
*capture
)
802 struct rsnd_priv
*priv
= rsnd_rdai_to_priv(rdai
);
803 struct device_node
*node
;
804 struct device_node
*np
;
805 struct rsnd_mod
*mod
;
808 node
= rsnd_ssi_of_node(priv
);
813 for_each_child_of_node(node
, np
) {
814 mod
= rsnd_ssi_mod_get(priv
, i
);
816 rsnd_ssi_connect(mod
, &rdai
->playback
);
818 rsnd_ssi_connect(mod
, &rdai
->capture
);
825 struct rsnd_mod
*rsnd_ssi_mod_get(struct rsnd_priv
*priv
, int id
)
827 if (WARN_ON(id
< 0 || id
>= rsnd_ssi_nr(priv
)))
830 return rsnd_mod_get(rsnd_ssi_get(priv
, id
));
833 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod
*mod
)
835 struct rsnd_ssi
*ssi
= rsnd_mod_to_ssi(mod
);
837 return !!(rsnd_ssi_mode_flags(ssi
) & RSND_SSI_CLK_PIN_SHARE
);
840 static u32
*rsnd_ssi_get_status(struct rsnd_dai_stream
*io
,
841 struct rsnd_mod
*mod
,
842 enum rsnd_mod_type type
)
845 * SSIP (= SSI parent) needs to be special, otherwise,
846 * 2nd SSI might doesn't start. see also rsnd_mod_call()
848 * We can't include parent SSI status on SSI, because we don't know
849 * how many SSI requests parent SSI. Thus, it is localed on "io" now.
852 * Capture : SSI1 (needs SSI0)
854 * 1) start Capture -> SSI0/SSI1 are started.
855 * 2) start Playback -> SSI0 doesn't work, because it is already
856 * marked as "started" on 1)
858 * OTOH, using each mod's status is good for MUX case.
859 * It doesn't need to start in 2nd start
861 * IO-0: SRC0 -> CTU1 -+-> MUX -> DVC -> SSIU -> SSI0
863 * IO-1: SRC1 -> CTU2 -+
865 * 1) start IO-0 -> start SSI0
866 * 2) start IO-1 -> SSI0 doesn't need to start, because it is
867 * already started on 1)
869 if (type
== RSND_MOD_SSIP
)
870 return &io
->parent_ssi_status
;
872 return rsnd_mod_get_status(io
, mod
, type
);
875 int rsnd_ssi_probe(struct rsnd_priv
*priv
)
877 struct device_node
*node
;
878 struct device_node
*np
;
879 struct device
*dev
= rsnd_priv_to_dev(priv
);
880 struct rsnd_mod_ops
*ops
;
882 struct rsnd_ssi
*ssi
;
883 char name
[RSND_SSI_NAME_SIZE
];
886 node
= rsnd_ssi_of_node(priv
);
890 nr
= of_get_child_count(node
);
893 goto rsnd_ssi_probe_done
;
896 ssi
= devm_kzalloc(dev
, sizeof(*ssi
) * nr
, GFP_KERNEL
);
899 goto rsnd_ssi_probe_done
;
906 for_each_child_of_node(node
, np
) {
907 ssi
= rsnd_ssi_get(priv
, i
);
909 snprintf(name
, RSND_SSI_NAME_SIZE
, "%s.%d",
912 clk
= devm_clk_get(dev
, name
);
915 goto rsnd_ssi_probe_done
;
918 if (of_get_property(np
, "shared-pin", NULL
))
919 ssi
->flags
|= RSND_SSI_CLK_PIN_SHARE
;
921 if (of_get_property(np
, "no-busif", NULL
))
922 ssi
->flags
|= RSND_SSI_NO_BUSIF
;
924 ssi
->irq
= irq_of_parse_and_map(np
, 0);
927 goto rsnd_ssi_probe_done
;
930 ops
= &rsnd_ssi_non_ops
;
931 if (of_get_property(np
, "pio-transfer", NULL
))
932 ops
= &rsnd_ssi_pio_ops
;
934 ops
= &rsnd_ssi_dma_ops
;
936 ret
= rsnd_mod_init(priv
, rsnd_mod_get(ssi
), ops
, clk
,
937 rsnd_ssi_get_status
, RSND_MOD_SSI
, i
);
939 goto rsnd_ssi_probe_done
;
952 void rsnd_ssi_remove(struct rsnd_priv
*priv
)
954 struct rsnd_ssi
*ssi
;
957 for_each_rsnd_ssi(ssi
, priv
, i
) {
958 rsnd_mod_quit(rsnd_mod_get(ssi
));