1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Renesas R-Car SSIU/SSI support
4 //
5 // Copyright (C) 2013 Renesas Solutions Corp.
6 // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 //
8 // Based on fsi.c
9 // Kuninori Morimoto <morimoto.kuninori@renesas.com>
10
11 /*
12 * you can enable below define if you don't need
13 * SSI interrupt status debug message when debugging
14 * see rsnd_dbg_irq_status()
15 *
16 * #define RSND_DEBUG_NO_IRQ_STATUS 1
17 */
18
19 #include <sound/simple_card_utils.h>
20 #include <linux/delay.h>
21 #include "rsnd.h"
22 #define RSND_SSI_NAME_SIZE 16
23
24 /*
25 * SSICR
26 */
27 #define FORCE (1 << 31) /* Fixed */
28 #define DMEN (1 << 28) /* DMA Enable */
29 #define UIEN (1 << 27) /* Underflow Interrupt Enable */
30 #define OIEN (1 << 26) /* Overflow Interrupt Enable */
31 #define IIEN (1 << 25) /* Idle Mode Interrupt Enable */
32 #define DIEN (1 << 24) /* Data Interrupt Enable */
33 #define CHNL_4 (1 << 22) /* Channels */
34 #define CHNL_6 (2 << 22) /* Channels */
35 #define CHNL_8 (3 << 22) /* Channels */
36 #define DWL_MASK (7 << 19) /* Data Word Length mask */
37 #define DWL_8 (0 << 19) /* Data Word Length */
38 #define DWL_16 (1 << 19) /* Data Word Length */
39 #define DWL_18 (2 << 19) /* Data Word Length */
40 #define DWL_20 (3 << 19) /* Data Word Length */
41 #define DWL_22 (4 << 19) /* Data Word Length */
42 #define DWL_24 (5 << 19) /* Data Word Length */
43 #define DWL_32 (6 << 19) /* Data Word Length */
44
45 /*
46 * System word length
47 */
48 #define SWL_16 (1 << 16) /* R/W System Word Length */
49 #define SWL_24 (2 << 16) /* R/W System Word Length */
50 #define SWL_32 (3 << 16) /* R/W System Word Length */
51
52 #define SCKD (1 << 15) /* Serial Bit Clock Direction */
53 #define SWSD (1 << 14) /* Serial WS Direction */
54 #define SCKP (1 << 13) /* Serial Bit Clock Polarity */
55 #define SWSP (1 << 12) /* Serial WS Polarity */
56 #define SDTA (1 << 10) /* Serial Data Alignment */
57 #define PDTA (1 << 9) /* Parallel Data Alignment */
58 #define DEL (1 << 8) /* Serial Data Delay */
59 #define CKDV(v) (v << 4) /* Serial Clock Division Ratio */
60 #define TRMD (1 << 1) /* Transmit/Receive Mode Select */
61 #define EN (1 << 0) /* SSI Module Enable */
62
63 /*
64 * SSISR
65 */
66 #define UIRQ (1 << 27) /* Underflow Error Interrupt Status */
67 #define OIRQ (1 << 26) /* Overflow Error Interrupt Status */
68 #define IIRQ (1 << 25) /* Idle Mode Interrupt Status */
69 #define DIRQ (1 << 24) /* Data Interrupt Status Flag */
70
71 /*
72 * SSIWSR
73 */
74 #define CONT (1 << 8) /* WS Continue Function */
75 #define WS_MODE (1 << 0) /* WS Mode */
76
77 #define SSI_NAME "ssi"
78
79 struct rsnd_ssi {
80 struct rsnd_mod mod;
81
82 u32 flags;
83 u32 cr_own;
84 u32 cr_clk;
85 u32 cr_mode;
86 u32 cr_en;
87 u32 wsr;
88 int chan;
89 int rate;
90 int irq;
91 unsigned int usrcnt;
92
93 /* for PIO */
94 int byte_pos;
95 int byte_per_period;
96 int next_period_byte;
97 };
98
99 /* flags */
100 #define RSND_SSI_CLK_PIN_SHARE (1 << 0)
101 #define RSND_SSI_NO_BUSIF (1 << 1) /* SSI+DMA without BUSIF */
102 #define RSND_SSI_PROBED (1 << 2)
103
104 #define for_each_rsnd_ssi(pos, priv, i) \
105 for (i = 0; \
106 (i < rsnd_ssi_nr(priv)) && \
107 ((pos) = ((struct rsnd_ssi *)(priv)->ssi + i)); \
108 i++)
109
110 #define rsnd_ssi_get(priv, id) ((struct rsnd_ssi *)(priv->ssi) + id)
111 #define rsnd_ssi_nr(priv) ((priv)->ssi_nr)
112 #define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod)
113 #define rsnd_ssi_is_parent(ssi, io) ((ssi) == rsnd_io_to_mod_ssip(io))
114 #define rsnd_ssi_is_multi_secondary(mod, io) \
115 (rsnd_ssi_multi_secondaries(io) & (1 << rsnd_mod_id(mod)))
116 #define rsnd_ssi_is_run_mods(mod, io) \
117 (rsnd_ssi_run_mods(io) & (1 << rsnd_mod_id(mod)))
118 #define rsnd_ssi_can_output_clk(mod) (!__rsnd_ssi_is_pin_sharing(mod))
119
120 static int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod);
121
rsnd_ssi_use_busif(struct rsnd_dai_stream * io)122 int rsnd_ssi_use_busif(struct rsnd_dai_stream *io)
123 {
124 struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
125 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
126 int use_busif = 0;
127
128 if (!rsnd_ssi_is_dma_mode(mod))
129 return 0;
130
131 if (!(rsnd_flags_has(ssi, RSND_SSI_NO_BUSIF)))
132 use_busif = 1;
133 if (rsnd_io_to_mod_src(io))
134 use_busif = 1;
135
136 return use_busif;
137 }
138
rsnd_ssi_status_clear(struct rsnd_mod * mod)139 static void rsnd_ssi_status_clear(struct rsnd_mod *mod)
140 {
141 rsnd_mod_write(mod, SSISR, 0);
142 }
143
rsnd_ssi_status_get(struct rsnd_mod * mod)144 static u32 rsnd_ssi_status_get(struct rsnd_mod *mod)
145 {
146 return rsnd_mod_read(mod, SSISR);
147 }
148
rsnd_ssi_status_check(struct rsnd_mod * mod,u32 bit)149 static void rsnd_ssi_status_check(struct rsnd_mod *mod,
150 u32 bit)
151 {
152 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
153 struct device *dev = rsnd_priv_to_dev(priv);
154 u32 status;
155 int i;
156
157 for (i = 0; i < 1024; i++) {
158 status = rsnd_ssi_status_get(mod);
159 if (status & bit)
160 return;
161
162 udelay(5);
163 }
164
165 dev_warn(dev, "%s status check failed\n", rsnd_mod_name(mod));
166 }
167
rsnd_ssi_multi_secondaries(struct rsnd_dai_stream * io)168 static u32 rsnd_ssi_multi_secondaries(struct rsnd_dai_stream *io)
169 {
170 struct rsnd_mod *mod;
171 enum rsnd_mod_type types[] = {
172 RSND_MOD_SSIM1,
173 RSND_MOD_SSIM2,
174 RSND_MOD_SSIM3,
175 };
176 int i, mask;
177
178 mask = 0;
179 for (i = 0; i < ARRAY_SIZE(types); i++) {
180 mod = rsnd_io_to_mod(io, types[i]);
181 if (!mod)
182 continue;
183
184 mask |= 1 << rsnd_mod_id(mod);
185 }
186
187 return mask;
188 }
189
rsnd_ssi_run_mods(struct rsnd_dai_stream * io)190 static u32 rsnd_ssi_run_mods(struct rsnd_dai_stream *io)
191 {
192 struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
193 struct rsnd_mod *ssi_parent_mod = rsnd_io_to_mod_ssip(io);
194 u32 mods;
195
196 mods = rsnd_ssi_multi_secondaries_runtime(io) |
197 1 << rsnd_mod_id(ssi_mod);
198
199 if (ssi_parent_mod)
200 mods |= 1 << rsnd_mod_id(ssi_parent_mod);
201
202 return mods;
203 }
204
rsnd_ssi_multi_secondaries_runtime(struct rsnd_dai_stream * io)205 u32 rsnd_ssi_multi_secondaries_runtime(struct rsnd_dai_stream *io)
206 {
207 if (rsnd_runtime_is_multi_ssi(io))
208 return rsnd_ssi_multi_secondaries(io);
209
210 return 0;
211 }
212
rsnd_rdai_width_to_swl(struct rsnd_dai * rdai)213 static u32 rsnd_rdai_width_to_swl(struct rsnd_dai *rdai)
214 {
215 struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
216 struct device *dev = rsnd_priv_to_dev(priv);
217 int width = rsnd_rdai_width_get(rdai);
218
219 switch (width) {
220 case 32: return SWL_32;
221 case 24: return SWL_24;
222 case 16: return SWL_16;
223 }
224
225 dev_err(dev, "unsupported slot width value: %d\n", width);
226 return 0;
227 }
228
rsnd_ssi_clk_query(struct rsnd_dai * rdai,int param1,int param2,int * idx)229 unsigned int rsnd_ssi_clk_query(struct rsnd_dai *rdai,
230 int param1, int param2, int *idx)
231 {
232 struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
233 int ssi_clk_mul_table[] = {
234 1, 2, 4, 8, 16, 6, 12,
235 };
236 int j, ret;
237 unsigned int main_rate;
238 int width = rsnd_rdai_width_get(rdai);
239
240 for (j = 0; j < ARRAY_SIZE(ssi_clk_mul_table); j++) {
241
242 /*
243 * It will set SSIWSR.CONT here, but SSICR.CKDV = 000
244 * with it is not allowed. (SSIWSR.WS_MODE with
245 * SSICR.CKDV = 000 is not allowed either).
246 * Skip it. See SSICR.CKDV
247 */
248 if (j == 0)
249 continue;
250
251 main_rate = width * param1 * param2 * ssi_clk_mul_table[j];
252
253 ret = rsnd_adg_clk_query(priv, main_rate);
254 if (ret < 0)
255 continue;
256
257 if (idx)
258 *idx = j;
259
260 return main_rate;
261 }
262
263 return 0;
264 }
265
rsnd_ssi_master_clk_start(struct rsnd_mod * mod,struct rsnd_dai_stream * io)266 static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod,
267 struct rsnd_dai_stream *io)
268 {
269 struct rsnd_priv *priv = rsnd_io_to_priv(io);
270 struct device *dev = rsnd_priv_to_dev(priv);
271 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
272 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
273 int chan = rsnd_runtime_channel_for_ssi(io);
274 int idx, ret;
275 unsigned int main_rate;
276 unsigned int rate = rsnd_io_is_play(io) ?
277 rsnd_src_get_out_rate(priv, io) :
278 rsnd_src_get_in_rate(priv, io);
279
280 if (!rsnd_rdai_is_clk_master(rdai))
281 return 0;
282
283 if (!rsnd_ssi_can_output_clk(mod))
284 return 0;
285
286 if (rsnd_ssi_is_multi_secondary(mod, io))
287 return 0;
288
289 if (rsnd_runtime_is_tdm_split(io))
290 chan = rsnd_io_converted_chan(io);
291
292 chan = rsnd_channel_normalization(chan);
293
294 if (ssi->usrcnt > 0) {
295 if (ssi->rate != rate) {
296 dev_err(dev, "SSI parent/child should use same rate\n");
297 return -EINVAL;
298 }
299
300 if (ssi->chan != chan) {
301 dev_err(dev, "SSI parent/child should use same chan\n");
302 return -EINVAL;
303 }
304
305 return 0;
306 }
307
308 main_rate = rsnd_ssi_clk_query(rdai, rate, chan, &idx);
309 if (!main_rate) {
310 dev_err(dev, "unsupported clock rate\n");
311 return -EIO;
312 }
313
314 ret = rsnd_adg_ssi_clk_try_start(mod, main_rate);
315 if (ret < 0)
316 return ret;
317
318 /*
319 * SSI clock will be output contiguously
320 * by below settings.
321 * This means, rsnd_ssi_master_clk_start()
322 * and rsnd_ssi_register_setup() are necessary
323 * for SSI parent
324 *
325 * SSICR : FORCE, SCKD, SWSD
326 * SSIWSR : CONT
327 */
328 ssi->cr_clk = FORCE | rsnd_rdai_width_to_swl(rdai) |
329 SCKD | SWSD | CKDV(idx);
330 ssi->wsr = CONT;
331 ssi->rate = rate;
332 ssi->chan = chan;
333
334 dev_dbg(dev, "%s outputs %d chan %u Hz\n",
335 rsnd_mod_name(mod), chan, rate);
336
337 return 0;
338 }
339
rsnd_ssi_master_clk_stop(struct rsnd_mod * mod,struct rsnd_dai_stream * io)340 static void rsnd_ssi_master_clk_stop(struct rsnd_mod *mod,
341 struct rsnd_dai_stream *io)
342 {
343 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
344 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
345
346 if (!rsnd_rdai_is_clk_master(rdai))
347 return;
348
349 if (!rsnd_ssi_can_output_clk(mod))
350 return;
351
352 if (ssi->usrcnt > 1)
353 return;
354
355 ssi->cr_clk = 0;
356 ssi->rate = 0;
357 ssi->chan = 0;
358
359 rsnd_adg_ssi_clk_stop(mod);
360 }
361
rsnd_ssi_config_init(struct rsnd_mod * mod,struct rsnd_dai_stream * io)362 static void rsnd_ssi_config_init(struct rsnd_mod *mod,
363 struct rsnd_dai_stream *io)
364 {
365 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
366 struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
367 struct device *dev = rsnd_priv_to_dev(priv);
368 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
369 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
370 u32 cr_own = ssi->cr_own;
371 u32 cr_mode = ssi->cr_mode;
372 u32 wsr = ssi->wsr;
373 int width;
374 int is_tdm, is_tdm_split;
375 int id = rsnd_mod_id(mod);
376 int i;
377 u32 sys_int_enable = 0;
378
379 is_tdm = rsnd_runtime_is_tdm(io);
380 is_tdm_split = rsnd_runtime_is_tdm_split(io);
381
382 if (is_tdm)
383 dev_dbg(dev, "TDM mode\n");
384 if (is_tdm_split)
385 dev_dbg(dev, "TDM Split mode\n");
386
387 cr_own |= FORCE | rsnd_rdai_width_to_swl(rdai);
388
389 if (rdai->bit_clk_inv)
390 cr_own |= SCKP;
391 if (rdai->frm_clk_inv && !is_tdm)
392 cr_own |= SWSP;
393 if (rdai->data_alignment)
394 cr_own |= SDTA;
395 if (rdai->sys_delay)
396 cr_own |= DEL;
397
398 /*
399 * TDM Mode
400 * see
401 * rsnd_ssiu_init_gen2()
402 */
403 wsr = ssi->wsr;
404 if (is_tdm || is_tdm_split) {
405 wsr |= WS_MODE;
406 cr_own |= CHNL_8;
407 }
408
409 /*
410 * We shouldn't exchange SWSP after running.
411 * This means, parent needs to care it.
412 */
413 if (rsnd_ssi_is_parent(mod, io))
414 goto init_end;
415
416 if (rsnd_io_is_play(io))
417 cr_own |= TRMD;
418
419 cr_own &= ~DWL_MASK;
420 width = snd_pcm_format_width(runtime->format);
421 if (is_tdm_split) {
422 /*
423 * The SWL and DWL bits in SSICR should be fixed at 32-bit
424 * setting when TDM split mode.
425 * see datasheet
426 * Operation :: TDM Format Split Function (TDM Split Mode)
427 */
428 width = 32;
429 }
430
431 switch (width) {
432 case 8:
433 cr_own |= DWL_8;
434 break;
435 case 16:
436 cr_own |= DWL_16;
437 break;
438 case 24:
439 cr_own |= DWL_24;
440 break;
441 case 32:
442 cr_own |= DWL_32;
443 break;
444 }
445
446 if (rsnd_ssi_is_dma_mode(mod)) {
447 cr_mode = UIEN | OIEN | /* over/under run */
448 DMEN; /* DMA : enable DMA */
449 } else {
450 cr_mode = DIEN; /* PIO : enable Data interrupt */
451 }
452
453 /* enable busif buffer over/under run interrupt. */
454 if (is_tdm || is_tdm_split) {
455 switch (id) {
456 case 0:
457 case 1:
458 case 2:
459 case 3:
460 case 4:
461 for (i = 0; i < 4; i++) {
462 sys_int_enable = rsnd_mod_read(mod,
463 SSI_SYS_INT_ENABLE(i * 2));
464 sys_int_enable |= 0xf << (id * 4);
465 rsnd_mod_write(mod,
466 SSI_SYS_INT_ENABLE(i * 2),
467 sys_int_enable);
468 }
469
470 break;
471 case 9:
472 for (i = 0; i < 4; i++) {
473 sys_int_enable = rsnd_mod_read(mod,
474 SSI_SYS_INT_ENABLE((i * 2) + 1));
475 sys_int_enable |= 0xf << 4;
476 rsnd_mod_write(mod,
477 SSI_SYS_INT_ENABLE((i * 2) + 1),
478 sys_int_enable);
479 }
480
481 break;
482 }
483 }
484
485 init_end:
486 ssi->cr_own = cr_own;
487 ssi->cr_mode = cr_mode;
488 ssi->wsr = wsr;
489 }
490
rsnd_ssi_register_setup(struct rsnd_mod * mod)491 static void rsnd_ssi_register_setup(struct rsnd_mod *mod)
492 {
493 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
494
495 rsnd_mod_write(mod, SSIWSR, ssi->wsr);
496 rsnd_mod_write(mod, SSICR, ssi->cr_own |
497 ssi->cr_clk |
498 ssi->cr_mode |
499 ssi->cr_en);
500 }
501
502 /*
503 * SSI mod common functions
504 */
rsnd_ssi_init(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)505 static int rsnd_ssi_init(struct rsnd_mod *mod,
506 struct rsnd_dai_stream *io,
507 struct rsnd_priv *priv)
508 {
509 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
510 int ret;
511
512 if (!rsnd_ssi_is_run_mods(mod, io))
513 return 0;
514
515 ret = rsnd_ssi_master_clk_start(mod, io);
516 if (ret < 0)
517 return ret;
518
519 ssi->usrcnt++;
520
521 rsnd_mod_power_on(mod);
522
523 rsnd_ssi_config_init(mod, io);
524
525 rsnd_ssi_register_setup(mod);
526
527 /* clear error status */
528 rsnd_ssi_status_clear(mod);
529
530 return 0;
531 }
532
rsnd_ssi_quit(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)533 static int rsnd_ssi_quit(struct rsnd_mod *mod,
534 struct rsnd_dai_stream *io,
535 struct rsnd_priv *priv)
536 {
537 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
538 struct device *dev = rsnd_priv_to_dev(priv);
539 int is_tdm, is_tdm_split;
540 int id = rsnd_mod_id(mod);
541 int i;
542 u32 sys_int_enable = 0;
543
544 is_tdm = rsnd_runtime_is_tdm(io);
545 is_tdm_split = rsnd_runtime_is_tdm_split(io);
546
547 if (!rsnd_ssi_is_run_mods(mod, io))
548 return 0;
549
550 if (!ssi->usrcnt) {
551 dev_err(dev, "%s usrcnt error\n", rsnd_mod_name(mod));
552 return -EIO;
553 }
554
555 rsnd_ssi_master_clk_stop(mod, io);
556
557 rsnd_mod_power_off(mod);
558
559 ssi->usrcnt--;
560
561 if (!ssi->usrcnt) {
562 ssi->cr_own = 0;
563 ssi->cr_mode = 0;
564 ssi->wsr = 0;
565 }
566
567 /* disable busif buffer over/under run interrupt. */
568 if (is_tdm || is_tdm_split) {
569 switch (id) {
570 case 0:
571 case 1:
572 case 2:
573 case 3:
574 case 4:
575 for (i = 0; i < 4; i++) {
576 sys_int_enable = rsnd_mod_read(mod,
577 SSI_SYS_INT_ENABLE(i * 2));
578 sys_int_enable &= ~(0xf << (id * 4));
579 rsnd_mod_write(mod,
580 SSI_SYS_INT_ENABLE(i * 2),
581 sys_int_enable);
582 }
583
584 break;
585 case 9:
586 for (i = 0; i < 4; i++) {
587 sys_int_enable = rsnd_mod_read(mod,
588 SSI_SYS_INT_ENABLE((i * 2) + 1));
589 sys_int_enable &= ~(0xf << 4);
590 rsnd_mod_write(mod,
591 SSI_SYS_INT_ENABLE((i * 2) + 1),
592 sys_int_enable);
593 }
594
595 break;
596 }
597 }
598
599 return 0;
600 }
601
rsnd_ssi_hw_params(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params)602 static int rsnd_ssi_hw_params(struct rsnd_mod *mod,
603 struct rsnd_dai_stream *io,
604 struct snd_pcm_substream *substream,
605 struct snd_pcm_hw_params *params)
606 {
607 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
608 unsigned int fmt_width = snd_pcm_format_width(params_format(params));
609
610 if (fmt_width > rdai->chan_width) {
611 struct rsnd_priv *priv = rsnd_io_to_priv(io);
612 struct device *dev = rsnd_priv_to_dev(priv);
613
614 dev_err(dev, "invalid combination of slot-width and format-data-width\n");
615 return -EINVAL;
616 }
617
618 return 0;
619 }
620
rsnd_ssi_start(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)621 static int rsnd_ssi_start(struct rsnd_mod *mod,
622 struct rsnd_dai_stream *io,
623 struct rsnd_priv *priv)
624 {
625 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
626
627 if (!rsnd_ssi_is_run_mods(mod, io))
628 return 0;
629
630 /*
631 * EN will be set via SSIU :: SSI_CONTROL
632 * if Multi channel mode
633 */
634 if (rsnd_ssi_multi_secondaries_runtime(io))
635 return 0;
636
637 /*
638 * EN is for data output.
639 * SSI parent EN is not needed.
640 */
641 if (rsnd_ssi_is_parent(mod, io))
642 return 0;
643
644 ssi->cr_en = EN;
645
646 rsnd_mod_write(mod, SSICR, ssi->cr_own |
647 ssi->cr_clk |
648 ssi->cr_mode |
649 ssi->cr_en);
650
651 return 0;
652 }
653
rsnd_ssi_stop(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)654 static int rsnd_ssi_stop(struct rsnd_mod *mod,
655 struct rsnd_dai_stream *io,
656 struct rsnd_priv *priv)
657 {
658 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
659 u32 cr;
660
661 if (!rsnd_ssi_is_run_mods(mod, io))
662 return 0;
663
664 if (rsnd_ssi_is_parent(mod, io))
665 return 0;
666
667 cr = ssi->cr_own |
668 ssi->cr_clk;
669
670 /*
671 * disable all IRQ,
672 * Playback: Wait all data was sent
673 * Capture: It might not receave data. Do nothing
674 */
675 if (rsnd_io_is_play(io)) {
676 rsnd_mod_write(mod, SSICR, cr | ssi->cr_en);
677 rsnd_ssi_status_check(mod, DIRQ);
678 }
679
680 /* In multi-SSI mode, stop is performed by setting ssi0129 in
681 * SSI_CONTROL to 0 (in rsnd_ssio_stop_gen2). Do nothing here.
682 */
683 if (rsnd_ssi_multi_secondaries_runtime(io))
684 return 0;
685
686 /*
687 * disable SSI,
688 * and, wait idle state
689 */
690 rsnd_mod_write(mod, SSICR, cr); /* disabled all */
691 rsnd_ssi_status_check(mod, IIRQ);
692
693 ssi->cr_en = 0;
694
695 return 0;
696 }
697
rsnd_ssi_irq(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv,int enable)698 static int rsnd_ssi_irq(struct rsnd_mod *mod,
699 struct rsnd_dai_stream *io,
700 struct rsnd_priv *priv,
701 int enable)
702 {
703 u32 val = 0;
704 int is_tdm, is_tdm_split;
705 int id = rsnd_mod_id(mod);
706
707 is_tdm = rsnd_runtime_is_tdm(io);
708 is_tdm_split = rsnd_runtime_is_tdm_split(io);
709
710 if (rsnd_is_gen1(priv))
711 return 0;
712
713 if (rsnd_ssi_is_parent(mod, io))
714 return 0;
715
716 if (!rsnd_ssi_is_run_mods(mod, io))
717 return 0;
718
719 if (enable)
720 val = rsnd_ssi_is_dma_mode(mod) ? 0x0e000000 : 0x0f000000;
721
722 if (is_tdm || is_tdm_split) {
723 switch (id) {
724 case 0:
725 case 1:
726 case 2:
727 case 3:
728 case 4:
729 case 9:
730 val |= 0x0000ff00;
731 break;
732 }
733 }
734
735 rsnd_mod_write(mod, SSI_INT_ENABLE, val);
736
737 return 0;
738 }
739
740 static bool rsnd_ssi_pio_interrupt(struct rsnd_mod *mod,
741 struct rsnd_dai_stream *io);
__rsnd_ssi_interrupt(struct rsnd_mod * mod,struct rsnd_dai_stream * io)742 static void __rsnd_ssi_interrupt(struct rsnd_mod *mod,
743 struct rsnd_dai_stream *io)
744 {
745 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
746 struct device *dev = rsnd_priv_to_dev(priv);
747 int is_dma = rsnd_ssi_is_dma_mode(mod);
748 u32 status;
749 bool elapsed = false;
750 bool stop = false;
751 int id = rsnd_mod_id(mod);
752 int i;
753 int is_tdm, is_tdm_split;
754
755 is_tdm = rsnd_runtime_is_tdm(io);
756 is_tdm_split = rsnd_runtime_is_tdm_split(io);
757
758 spin_lock(&priv->lock);
759
760 /* ignore all cases if not working */
761 if (!rsnd_io_is_working(io))
762 goto rsnd_ssi_interrupt_out;
763
764 status = rsnd_ssi_status_get(mod);
765
766 /* PIO only */
767 if (!is_dma && (status & DIRQ))
768 elapsed = rsnd_ssi_pio_interrupt(mod, io);
769
770 /* DMA only */
771 if (is_dma && (status & (UIRQ | OIRQ))) {
772 rsnd_dbg_irq_status(dev, "%s err status : 0x%08x\n",
773 rsnd_mod_name(mod), status);
774
775 stop = true;
776 }
777
778 status = 0;
779
780 if (is_tdm || is_tdm_split) {
781 switch (id) {
782 case 0:
783 case 1:
784 case 2:
785 case 3:
786 case 4:
787 for (i = 0; i < 4; i++) {
788 status = rsnd_mod_read(mod,
789 SSI_SYS_STATUS(i * 2));
790 status &= 0xf << (id * 4);
791
792 if (status) {
793 rsnd_dbg_irq_status(dev,
794 "%s err status : 0x%08x\n",
795 rsnd_mod_name(mod), status);
796 rsnd_mod_write(mod,
797 SSI_SYS_STATUS(i * 2),
798 0xf << (id * 4));
799 stop = true;
800 }
801 }
802 break;
803 case 9:
804 for (i = 0; i < 4; i++) {
805 status = rsnd_mod_read(mod,
806 SSI_SYS_STATUS((i * 2) + 1));
807 status &= 0xf << 4;
808
809 if (status) {
810 rsnd_dbg_irq_status(dev,
811 "%s err status : 0x%08x\n",
812 rsnd_mod_name(mod), status);
813 rsnd_mod_write(mod,
814 SSI_SYS_STATUS((i * 2) + 1),
815 0xf << 4);
816 stop = true;
817 }
818 }
819 break;
820 }
821 }
822
823 rsnd_ssi_status_clear(mod);
824 rsnd_ssi_interrupt_out:
825 spin_unlock(&priv->lock);
826
827 if (elapsed)
828 rsnd_dai_period_elapsed(io);
829
830 if (stop)
831 snd_pcm_stop_xrun(io->substream);
832
833 }
834
rsnd_ssi_interrupt(int irq,void * data)835 static irqreturn_t rsnd_ssi_interrupt(int irq, void *data)
836 {
837 struct rsnd_mod *mod = data;
838
839 rsnd_mod_interrupt(mod, __rsnd_ssi_interrupt);
840
841 return IRQ_HANDLED;
842 }
843
rsnd_ssi_get_status(struct rsnd_mod * mod,struct rsnd_dai_stream * io,enum rsnd_mod_type type)844 static u32 *rsnd_ssi_get_status(struct rsnd_mod *mod,
845 struct rsnd_dai_stream *io,
846 enum rsnd_mod_type type)
847 {
848 /*
849 * SSIP (= SSI parent) needs to be special, otherwise,
850 * 2nd SSI might doesn't start. see also rsnd_mod_call()
851 *
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.
854 * ex) trouble case
855 * Playback: SSI0
856 * Capture : SSI1 (needs SSI0)
857 *
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)
861 *
862 * OTOH, using each mod's status is good for MUX case.
863 * It doesn't need to start in 2nd start
864 * ex)
865 * IO-0: SRC0 -> CTU1 -+-> MUX -> DVC -> SSIU -> SSI0
866 * |
867 * IO-1: SRC1 -> CTU2 -+
868 *
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)
872 */
873 if (type == RSND_MOD_SSIP)
874 return &io->parent_ssi_status;
875
876 return rsnd_mod_get_status(mod, io, type);
877 }
878
879 /*
880 * SSI PIO
881 */
rsnd_ssi_parent_attach(struct rsnd_mod * mod,struct rsnd_dai_stream * io)882 static void rsnd_ssi_parent_attach(struct rsnd_mod *mod,
883 struct rsnd_dai_stream *io)
884 {
885 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
886 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
887
888 if (!__rsnd_ssi_is_pin_sharing(mod))
889 return;
890
891 if (!rsnd_rdai_is_clk_master(rdai))
892 return;
893
894 if (rsnd_ssi_is_multi_secondary(mod, io))
895 return;
896
897 switch (rsnd_mod_id(mod)) {
898 case 1:
899 case 2:
900 case 9:
901 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 0), io, RSND_MOD_SSIP);
902 break;
903 case 4:
904 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 3), io, RSND_MOD_SSIP);
905 break;
906 case 8:
907 rsnd_dai_connect(rsnd_ssi_mod_get(priv, 7), io, RSND_MOD_SSIP);
908 break;
909 }
910 }
911
rsnd_ssi_pcm_new(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct snd_soc_pcm_runtime * rtd)912 static int rsnd_ssi_pcm_new(struct rsnd_mod *mod,
913 struct rsnd_dai_stream *io,
914 struct snd_soc_pcm_runtime *rtd)
915 {
916 /*
917 * rsnd_rdai_is_clk_master() will be enabled after set_fmt,
918 * and, pcm_new will be called after it.
919 * This function reuse pcm_new at this point.
920 */
921 rsnd_ssi_parent_attach(mod, io);
922
923 return 0;
924 }
925
rsnd_ssi_common_probe(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)926 static int rsnd_ssi_common_probe(struct rsnd_mod *mod,
927 struct rsnd_dai_stream *io,
928 struct rsnd_priv *priv)
929 {
930 struct device *dev = rsnd_priv_to_dev(priv);
931 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
932 int ret = 0;
933
934 /*
935 * SSIP/SSIU/IRQ are not needed on
936 * SSI Multi secondaries
937 */
938 if (rsnd_ssi_is_multi_secondary(mod, io))
939 return 0;
940
941 /*
942 * It can't judge ssi parent at this point
943 * see rsnd_ssi_pcm_new()
944 */
945
946 /*
947 * SSI might be called again as PIO fallback
948 * It is easy to manual handling for IRQ request/free
949 *
950 * OTOH, this function might be called many times if platform is
951 * using MIX. It needs xxx_attach() many times on xxx_probe().
952 * Because of it, we can't control .probe/.remove calling count by
953 * mod->status.
954 * But it don't need to call request_irq() many times.
955 * Let's control it by RSND_SSI_PROBED flag.
956 */
957 if (!rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
958 ret = request_irq(ssi->irq,
959 rsnd_ssi_interrupt,
960 IRQF_SHARED,
961 dev_name(dev), mod);
962
963 rsnd_flags_set(ssi, RSND_SSI_PROBED);
964 }
965
966 return ret;
967 }
968
rsnd_ssi_common_remove(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)969 static int rsnd_ssi_common_remove(struct rsnd_mod *mod,
970 struct rsnd_dai_stream *io,
971 struct rsnd_priv *priv)
972 {
973 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
974 struct rsnd_mod *pure_ssi_mod = rsnd_io_to_mod_ssi(io);
975
976 /* Do nothing if non SSI (= SSI parent, multi SSI) mod */
977 if (pure_ssi_mod != mod)
978 return 0;
979
980 /* PIO will request IRQ again */
981 if (rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
982 free_irq(ssi->irq, mod);
983
984 rsnd_flags_del(ssi, RSND_SSI_PROBED);
985 }
986
987 return 0;
988 }
989
990 /*
991 * SSI PIO functions
992 */
rsnd_ssi_pio_interrupt(struct rsnd_mod * mod,struct rsnd_dai_stream * io)993 static bool rsnd_ssi_pio_interrupt(struct rsnd_mod *mod,
994 struct rsnd_dai_stream *io)
995 {
996 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
997 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
998 u32 *buf = (u32 *)(runtime->dma_area + ssi->byte_pos);
999 int shift = 0;
1000 int byte_pos;
1001 bool elapsed = false;
1002
1003 if (snd_pcm_format_width(runtime->format) == 24)
1004 shift = 8;
1005
1006 /*
1007 * 8/16/32 data can be assesse to TDR/RDR register
1008 * directly as 32bit data
1009 * see rsnd_ssi_init()
1010 */
1011 if (rsnd_io_is_play(io))
1012 rsnd_mod_write(mod, SSITDR, (*buf) << shift);
1013 else
1014 *buf = (rsnd_mod_read(mod, SSIRDR) >> shift);
1015
1016 byte_pos = ssi->byte_pos + sizeof(*buf);
1017
1018 if (byte_pos >= ssi->next_period_byte) {
1019 int period_pos = byte_pos / ssi->byte_per_period;
1020
1021 if (period_pos >= runtime->periods) {
1022 byte_pos = 0;
1023 period_pos = 0;
1024 }
1025
1026 ssi->next_period_byte = (period_pos + 1) * ssi->byte_per_period;
1027
1028 elapsed = true;
1029 }
1030
1031 WRITE_ONCE(ssi->byte_pos, byte_pos);
1032
1033 return elapsed;
1034 }
1035
rsnd_ssi_pio_init(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)1036 static int rsnd_ssi_pio_init(struct rsnd_mod *mod,
1037 struct rsnd_dai_stream *io,
1038 struct rsnd_priv *priv)
1039 {
1040 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
1041 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
1042
1043 if (!rsnd_ssi_is_parent(mod, io)) {
1044 ssi->byte_pos = 0;
1045 ssi->byte_per_period = runtime->period_size *
1046 runtime->channels *
1047 samples_to_bytes(runtime, 1);
1048 ssi->next_period_byte = ssi->byte_per_period;
1049 }
1050
1051 return rsnd_ssi_init(mod, io, priv);
1052 }
1053
rsnd_ssi_pio_pointer(struct rsnd_mod * mod,struct rsnd_dai_stream * io,snd_pcm_uframes_t * pointer)1054 static int rsnd_ssi_pio_pointer(struct rsnd_mod *mod,
1055 struct rsnd_dai_stream *io,
1056 snd_pcm_uframes_t *pointer)
1057 {
1058 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
1059 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
1060
1061 *pointer = bytes_to_frames(runtime, READ_ONCE(ssi->byte_pos));
1062
1063 return 0;
1064 }
1065
1066 static struct rsnd_mod_ops rsnd_ssi_pio_ops = {
1067 .name = SSI_NAME,
1068 .probe = rsnd_ssi_common_probe,
1069 .remove = rsnd_ssi_common_remove,
1070 .init = rsnd_ssi_pio_init,
1071 .quit = rsnd_ssi_quit,
1072 .start = rsnd_ssi_start,
1073 .stop = rsnd_ssi_stop,
1074 .irq = rsnd_ssi_irq,
1075 .pointer = rsnd_ssi_pio_pointer,
1076 .pcm_new = rsnd_ssi_pcm_new,
1077 .hw_params = rsnd_ssi_hw_params,
1078 .get_status = rsnd_ssi_get_status,
1079 };
1080
rsnd_ssi_dma_probe(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)1081 static int rsnd_ssi_dma_probe(struct rsnd_mod *mod,
1082 struct rsnd_dai_stream *io,
1083 struct rsnd_priv *priv)
1084 {
1085 int ret;
1086
1087 /*
1088 * SSIP/SSIU/IRQ/DMA are not needed on
1089 * SSI Multi secondaries
1090 */
1091 if (rsnd_ssi_is_multi_secondary(mod, io))
1092 return 0;
1093
1094 ret = rsnd_ssi_common_probe(mod, io, priv);
1095 if (ret)
1096 return ret;
1097
1098 /* SSI probe might be called many times in MUX multi path */
1099 ret = rsnd_dma_attach(io, mod, &io->dma);
1100
1101 return ret;
1102 }
1103
rsnd_ssi_fallback(struct rsnd_mod * mod,struct rsnd_dai_stream * io,struct rsnd_priv * priv)1104 static int rsnd_ssi_fallback(struct rsnd_mod *mod,
1105 struct rsnd_dai_stream *io,
1106 struct rsnd_priv *priv)
1107 {
1108 struct device *dev = rsnd_priv_to_dev(priv);
1109
1110 /*
1111 * fallback to PIO
1112 *
1113 * SSI .probe might be called again.
1114 * see
1115 * rsnd_rdai_continuance_probe()
1116 */
1117 mod->ops = &rsnd_ssi_pio_ops;
1118
1119 dev_info(dev, "%s fallback to PIO mode\n", rsnd_mod_name(mod));
1120
1121 return 0;
1122 }
1123
rsnd_ssi_dma_req(struct rsnd_dai_stream * io,struct rsnd_mod * mod)1124 static struct dma_chan *rsnd_ssi_dma_req(struct rsnd_dai_stream *io,
1125 struct rsnd_mod *mod)
1126 {
1127 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
1128 int is_play = rsnd_io_is_play(io);
1129 char *name;
1130
1131 /*
1132 * It should use "rcar_sound,ssiu" on DT.
1133 * But, we need to keep compatibility for old version.
1134 *
1135 * If it has "rcar_sound.ssiu", it will be used.
1136 * If not, "rcar_sound.ssi" will be used.
1137 * see
1138 * rsnd_ssiu_dma_req()
1139 * rsnd_dma_of_path()
1140 */
1141
1142 if (rsnd_ssi_use_busif(io))
1143 name = is_play ? "rxu" : "txu";
1144 else
1145 name = is_play ? "rx" : "tx";
1146
1147 return rsnd_dma_request_channel(rsnd_ssi_of_node(priv),
1148 mod, name);
1149 }
1150
1151 static struct rsnd_mod_ops rsnd_ssi_dma_ops = {
1152 .name = SSI_NAME,
1153 .dma_req = rsnd_ssi_dma_req,
1154 .probe = rsnd_ssi_dma_probe,
1155 .remove = rsnd_ssi_common_remove,
1156 .init = rsnd_ssi_init,
1157 .quit = rsnd_ssi_quit,
1158 .start = rsnd_ssi_start,
1159 .stop = rsnd_ssi_stop,
1160 .irq = rsnd_ssi_irq,
1161 .pcm_new = rsnd_ssi_pcm_new,
1162 .fallback = rsnd_ssi_fallback,
1163 .hw_params = rsnd_ssi_hw_params,
1164 .get_status = rsnd_ssi_get_status,
1165 };
1166
rsnd_ssi_is_dma_mode(struct rsnd_mod * mod)1167 static int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod)
1168 {
1169 return mod->ops == &rsnd_ssi_dma_ops;
1170 }
1171
1172 /*
1173 * ssi mod function
1174 */
rsnd_ssi_connect(struct rsnd_mod * mod,struct rsnd_dai_stream * io)1175 static void rsnd_ssi_connect(struct rsnd_mod *mod,
1176 struct rsnd_dai_stream *io)
1177 {
1178 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
1179 enum rsnd_mod_type types[] = {
1180 RSND_MOD_SSI,
1181 RSND_MOD_SSIM1,
1182 RSND_MOD_SSIM2,
1183 RSND_MOD_SSIM3,
1184 };
1185 enum rsnd_mod_type type;
1186 int i;
1187
1188 /* try SSI -> SSIM1 -> SSIM2 -> SSIM3 */
1189 for (i = 0; i < ARRAY_SIZE(types); i++) {
1190 type = types[i];
1191 if (!rsnd_io_to_mod(io, type)) {
1192 rsnd_dai_connect(mod, io, type);
1193 rsnd_rdai_channels_set(rdai, (i + 1) * 2);
1194 rsnd_rdai_ssi_lane_set(rdai, (i + 1));
1195 return;
1196 }
1197 }
1198 }
1199
rsnd_parse_connect_ssi(struct rsnd_dai * rdai,struct device_node * playback,struct device_node * capture)1200 void rsnd_parse_connect_ssi(struct rsnd_dai *rdai,
1201 struct device_node *playback,
1202 struct device_node *capture)
1203 {
1204 struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
1205 struct device_node *node;
1206 struct device_node *np;
1207 struct rsnd_mod *mod;
1208 int i;
1209
1210 node = rsnd_ssi_of_node(priv);
1211 if (!node)
1212 return;
1213
1214 i = 0;
1215 for_each_child_of_node(node, np) {
1216 mod = rsnd_ssi_mod_get(priv, i);
1217 if (np == playback)
1218 rsnd_ssi_connect(mod, &rdai->playback);
1219 if (np == capture)
1220 rsnd_ssi_connect(mod, &rdai->capture);
1221 i++;
1222 }
1223
1224 of_node_put(node);
1225 }
1226
rsnd_ssi_mod_get(struct rsnd_priv * priv,int id)1227 struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id)
1228 {
1229 if (WARN_ON(id < 0 || id >= rsnd_ssi_nr(priv)))
1230 id = 0;
1231
1232 return rsnd_mod_get(rsnd_ssi_get(priv, id));
1233 }
1234
__rsnd_ssi_is_pin_sharing(struct rsnd_mod * mod)1235 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod)
1236 {
1237 if (!mod)
1238 return 0;
1239
1240 return !!(rsnd_flags_has(rsnd_mod_to_ssi(mod), RSND_SSI_CLK_PIN_SHARE));
1241 }
1242
rsnd_ssi_probe(struct rsnd_priv * priv)1243 int rsnd_ssi_probe(struct rsnd_priv *priv)
1244 {
1245 struct device_node *node;
1246 struct device_node *np;
1247 struct device *dev = rsnd_priv_to_dev(priv);
1248 struct rsnd_mod_ops *ops;
1249 struct clk *clk;
1250 struct rsnd_ssi *ssi;
1251 char name[RSND_SSI_NAME_SIZE];
1252 int i, nr, ret;
1253
1254 node = rsnd_ssi_of_node(priv);
1255 if (!node)
1256 return -EINVAL;
1257
1258 nr = of_get_child_count(node);
1259 if (!nr) {
1260 ret = -EINVAL;
1261 goto rsnd_ssi_probe_done;
1262 }
1263
1264 ssi = devm_kcalloc(dev, nr, sizeof(*ssi), GFP_KERNEL);
1265 if (!ssi) {
1266 ret = -ENOMEM;
1267 goto rsnd_ssi_probe_done;
1268 }
1269
1270 priv->ssi = ssi;
1271 priv->ssi_nr = nr;
1272
1273 i = 0;
1274 for_each_child_of_node(node, np) {
1275 if (!of_device_is_available(np))
1276 goto skip;
1277
1278 ssi = rsnd_ssi_get(priv, i);
1279
1280 snprintf(name, RSND_SSI_NAME_SIZE, "%s.%d",
1281 SSI_NAME, i);
1282
1283 clk = devm_clk_get(dev, name);
1284 if (IS_ERR(clk)) {
1285 ret = PTR_ERR(clk);
1286 of_node_put(np);
1287 goto rsnd_ssi_probe_done;
1288 }
1289
1290 if (of_get_property(np, "shared-pin", NULL))
1291 rsnd_flags_set(ssi, RSND_SSI_CLK_PIN_SHARE);
1292
1293 if (of_get_property(np, "no-busif", NULL))
1294 rsnd_flags_set(ssi, RSND_SSI_NO_BUSIF);
1295
1296 ssi->irq = irq_of_parse_and_map(np, 0);
1297 if (!ssi->irq) {
1298 ret = -EINVAL;
1299 of_node_put(np);
1300 goto rsnd_ssi_probe_done;
1301 }
1302
1303 if (of_property_read_bool(np, "pio-transfer"))
1304 ops = &rsnd_ssi_pio_ops;
1305 else
1306 ops = &rsnd_ssi_dma_ops;
1307
1308 ret = rsnd_mod_init(priv, rsnd_mod_get(ssi), ops, clk,
1309 RSND_MOD_SSI, i);
1310 if (ret) {
1311 of_node_put(np);
1312 goto rsnd_ssi_probe_done;
1313 }
1314 skip:
1315 i++;
1316 }
1317
1318 ret = 0;
1319
1320 rsnd_ssi_probe_done:
1321 of_node_put(node);
1322
1323 return ret;
1324 }
1325
rsnd_ssi_remove(struct rsnd_priv * priv)1326 void rsnd_ssi_remove(struct rsnd_priv *priv)
1327 {
1328 struct rsnd_ssi *ssi;
1329 int i;
1330
1331 for_each_rsnd_ssi(ssi, priv, i) {
1332 rsnd_mod_quit(rsnd_mod_get(ssi));
1333 }
1334 }
1335