ASoC: rsnd: move DVC specific macro into dvc.c
[deliverable/linux.git] / sound / soc / sh / rcar / src.c
CommitLineData
07539c1d 1/*
ba9c949f 2 * Renesas R-Car SRC support
07539c1d
KM
3 *
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include "rsnd.h"
12
8aefda50
KM
13#define SRC_NAME "src"
14
cfcefe01
KM
15/* SRCx_STATUS */
16#define OUF_SRCO ((1 << 12) | (1 << 13))
17#define OUF_SRCI ((1 << 9) | (1 << 8))
18
19/* SCU_SYSTEM_STATUS0/1 */
20#define OUF_SRC(id) ((1 << (id + 16)) | (1 << id))
21
ba9c949f
KM
22struct rsnd_src {
23 struct rsnd_src_platform_info *info; /* rcar_snd.h */
07539c1d 24 struct rsnd_mod mod;
43cb6954
KM
25 struct rsnd_kctrl_cfg_s sen; /* sync convert enable */
26 struct rsnd_kctrl_cfg_s sync; /* sync convert */
3b7843ff 27 u32 convert_rate; /* sampling rate convert */
cfcefe01 28 int err;
07539c1d
KM
29};
30
ba9c949f 31#define RSND_SRC_NAME_SIZE 16
374a5281 32
43cb6954 33#define rsnd_enable_sync_convert(src) ((src)->sen.val)
82e76ed3
KM
34#define rsnd_src_of_node(priv) \
35 of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,src")
36
ba9c949f
KM
37#define rsnd_mod_to_src(_mod) \
38 container_of((_mod), struct rsnd_src, mod)
39cf3c40 39
ba9c949f 40#define for_each_rsnd_src(pos, priv, i) \
39cf3c40 41 for ((i) = 0; \
ba9c949f
KM
42 ((i) < rsnd_src_nr(priv)) && \
43 ((pos) = (struct rsnd_src *)(priv)->src + i); \
39cf3c40
KM
44 i++)
45
46
ef749400
KM
47/*
48 * image of SRC (Sampling Rate Converter)
49 *
50 * 96kHz <-> +-----+ 48kHz +-----+ 48kHz +-------+
51 * 48kHz <-> | SRC | <------> | SSI | <-----> | codec |
52 * 44.1kHz <-> +-----+ +-----+ +-------+
53 * ...
54 *
55 */
374a5281 56
c926b746 57/*
ba9c949f 58 * src.c is caring...
c926b746
KM
59 *
60 * Gen1
61 *
62 * [mem] -> [SRU] -> [SSI]
63 * |--------|
64 *
65 * Gen2
66 *
ba9c949f 67 * [mem] -> [SRC] -> [SSIU] -> [SSI]
c926b746
KM
68 * |-----------------|
69 */
70
41c6221c
KM
71/*
72 * How to use SRC bypass mode for debugging
73 *
74 * SRC has bypass mode, and it is useful for debugging.
75 * In Gen2 case,
76 * SRCm_MODE controls whether SRC is used or not
77 * SSI_MODE0 controls whether SSIU which receives SRC data
78 * is used or not.
79 * Both SRCm_MODE/SSI_MODE0 settings are needed if you use SRC,
80 * but SRC bypass mode needs SSI_MODE0 only.
81 *
82 * This driver request
ba9c949f 83 * struct rsnd_src_platform_info {
41c6221c 84 * u32 convert_rate;
29e69fd2 85 * int dma_id;
41c6221c
KM
86 * }
87 *
ba9c949f 88 * rsnd_src_convert_rate() indicates
41c6221c
KM
89 * above convert_rate, and it controls
90 * whether SRC is used or not.
91 *
92 * ex) doesn't use SRC
29e69fd2
KM
93 * static struct rsnd_dai_platform_info rsnd_dai = {
94 * .playback = { .ssi = &rsnd_ssi[0], },
41c6221c
KM
95 * };
96 *
97 * ex) uses SRC
29e69fd2
KM
98 * static struct rsnd_src_platform_info rsnd_src[] = {
99 * RSND_SCU(48000, 0),
100 * ...
101 * };
102 * static struct rsnd_dai_platform_info rsnd_dai = {
103 * .playback = { .ssi = &rsnd_ssi[0], .src = &rsnd_src[0] },
41c6221c
KM
104 * };
105 *
106 * ex) uses SRC bypass mode
29e69fd2
KM
107 * static struct rsnd_src_platform_info rsnd_src[] = {
108 * RSND_SCU(0, 0),
109 * ...
110 * };
111 * static struct rsnd_dai_platform_info rsnd_dai = {
112 * .playback = { .ssi = &rsnd_ssi[0], .src = &rsnd_src[0] },
41c6221c
KM
113 * };
114 *
115 */
116
1b7b08ef
KM
117/*
118 * Gen1/Gen2 common functions
119 */
9b99e9a7
KM
120static struct dma_chan *rsnd_src_dma_req(struct rsnd_dai_stream *io,
121 struct rsnd_mod *mod)
72adc61f
KM
122{
123 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
72adc61f
KM
124 int is_play = rsnd_io_is_play(io);
125
126 return rsnd_dma_request_channel(rsnd_src_of_node(priv),
127 mod,
128 is_play ? "rx" : "tx");
129}
130
d9288d0b 131int rsnd_src_ssiu_start(struct rsnd_mod *ssi_mod,
4e2639ff 132 struct rsnd_dai_stream *io,
d9288d0b 133 int use_busif)
7b5ce975 134{
f708d944 135 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
1cc71959 136 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
374e5426 137 int ssi_id = rsnd_mod_id(ssi_mod);
7b5ce975
KM
138
139 /*
140 * SSI_MODE0
141 */
221bf523 142 rsnd_mod_bset(ssi_mod, SSI_MODE0, (1 << ssi_id),
d9288d0b 143 !use_busif << ssi_id);
7b5ce975
KM
144
145 /*
146 * SSI_MODE1
147 */
374e5426 148 if (rsnd_ssi_is_pin_sharing(ssi_mod)) {
7b5ce975 149 int shift = -1;
374e5426 150 switch (ssi_id) {
7b5ce975
KM
151 case 1:
152 shift = 0;
153 break;
154 case 2:
155 shift = 2;
156 break;
157 case 4:
158 shift = 16;
159 break;
160 }
161
162 if (shift >= 0)
221bf523 163 rsnd_mod_bset(ssi_mod, SSI_MODE1,
7b5ce975 164 0x3 << shift,
3ed6448c 165 rsnd_rdai_is_clk_master(rdai) ?
7b5ce975
KM
166 0x2 << shift : 0x1 << shift);
167 }
168
d9288d0b
KM
169 /*
170 * DMA settings for SSIU
171 */
172 if (use_busif) {
1cc71959
KM
173 u32 val = 0x76543210;
174 u32 mask = ~0;
175
d9288d0b 176 rsnd_mod_write(ssi_mod, SSI_BUSIF_ADINR,
4e2639ff 177 rsnd_get_adinr(ssi_mod, io));
d9288d0b
KM
178 rsnd_mod_write(ssi_mod, SSI_BUSIF_MODE, 1);
179 rsnd_mod_write(ssi_mod, SSI_CTRL, 0x1);
1cc71959
KM
180
181 mask <<= runtime->channels * 4;
182 val = val & mask;
183
184 switch (runtime->sample_bits) {
185 case 16:
186 val |= 0x67452301 & ~mask;
187 break;
188 case 32:
189 val |= 0x76543210 & ~mask;
190 break;
191 }
cdde84d1 192 rsnd_mod_write(ssi_mod, SSI_BUSIF_DALIGN, val);
1cc71959 193
d9288d0b
KM
194 }
195
196 return 0;
197}
198
4e2639ff
KM
199int rsnd_src_ssiu_stop(struct rsnd_mod *ssi_mod,
200 struct rsnd_dai_stream *io)
d9288d0b
KM
201{
202 /*
203 * DMA settings for SSIU
204 */
660cdce2 205 rsnd_mod_write(ssi_mod, SSI_CTRL, 0);
d9288d0b 206
7b5ce975
KM
207 return 0;
208}
209
f708d944 210int rsnd_src_ssi_irq_enable(struct rsnd_mod *ssi_mod)
b8cc41e9
KM
211{
212 struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);
213
c17dba8b
KM
214 if (rsnd_is_gen1(priv))
215 return 0;
216
217 /* enable SSI interrupt if Gen2 */
efa991dc
KM
218 rsnd_mod_write(ssi_mod, SSI_INT_ENABLE,
219 rsnd_ssi_is_dma_mode(ssi_mod) ?
220 0x0e000000 : 0x0f000000);
b8cc41e9
KM
221
222 return 0;
223}
224
f708d944 225int rsnd_src_ssi_irq_disable(struct rsnd_mod *ssi_mod)
c17dba8b
KM
226{
227 struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);
228
229 if (rsnd_is_gen1(priv))
230 return 0;
231
232 /* disable SSI interrupt if Gen2 */
efa991dc 233 rsnd_mod_write(ssi_mod, SSI_INT_ENABLE, 0x00000000);
c17dba8b
KM
234
235 return 0;
236}
237
88c61cff
KM
238static u32 rsnd_src_convert_rate(struct rsnd_dai_stream *io,
239 struct rsnd_src *src)
43cb6954 240{
43cb6954
KM
241 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
242 u32 convert_rate;
243
244 if (!runtime)
245 return 0;
246
247 if (!rsnd_enable_sync_convert(src))
248 return src->convert_rate;
249
250 convert_rate = src->sync.val;
251
252 if (!convert_rate)
253 convert_rate = src->convert_rate;
254
255 if (!convert_rate)
256 convert_rate = runtime->rate;
257
258 return convert_rate;
259}
260
ba9c949f 261unsigned int rsnd_src_get_ssi_rate(struct rsnd_priv *priv,
374e5426 262 struct rsnd_dai_stream *io,
1b7b08ef
KM
263 struct snd_pcm_runtime *runtime)
264{
b1eac430 265 struct rsnd_mod *src_mod = rsnd_io_to_mod_src(io);
ba9c949f 266 struct rsnd_src *src;
b1eac430 267 unsigned int rate = 0;
1b7b08ef 268
b1eac430
KM
269 if (src_mod) {
270 src = rsnd_mod_to_src(src_mod);
271
272 /*
273 * return convert rate if SRC is used,
274 * otherwise, return runtime->rate as usual
275 */
88c61cff 276 rate = rsnd_src_convert_rate(io, src);
b1eac430 277 }
1b7b08ef 278
1b7b08ef
KM
279 if (!rate)
280 rate = runtime->rate;
281
282 return rate;
283}
284
4e2639ff
KM
285static int rsnd_src_set_convert_rate(struct rsnd_mod *mod,
286 struct rsnd_dai_stream *io)
1b7b08ef
KM
287{
288 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
ba9c949f 289 struct rsnd_src *src = rsnd_mod_to_src(mod);
88c61cff 290 u32 convert_rate = rsnd_src_convert_rate(io, src);
1b7b08ef
KM
291 u32 fsrate = 0;
292
293 if (convert_rate)
294 fsrate = 0x0400000 / convert_rate * runtime->rate;
295
296 /* set/clear soft reset */
297 rsnd_mod_write(mod, SRC_SWRSR, 0);
298 rsnd_mod_write(mod, SRC_SWRSR, 1);
299
1b7b08ef 300 /* Set channel number and output bit length */
4e2639ff 301 rsnd_mod_write(mod, SRC_ADINR, rsnd_get_adinr(mod, io));
1b7b08ef
KM
302
303 /* Enable the initial value of IFS */
304 if (fsrate) {
305 rsnd_mod_write(mod, SRC_IFSCR, 1);
306
307 /* Set initial value of IFS */
308 rsnd_mod_write(mod, SRC_IFSVR, fsrate);
309 }
310
311 /* use DMA transfer */
312 rsnd_mod_write(mod, SRC_BUSIF_MODE, 1);
313
314 return 0;
315}
316
3b7843ff 317static int rsnd_src_hw_params(struct rsnd_mod *mod,
2c0fac19 318 struct rsnd_dai_stream *io,
3b7843ff
KM
319 struct snd_pcm_substream *substream,
320 struct snd_pcm_hw_params *fe_params)
321{
322 struct rsnd_src *src = rsnd_mod_to_src(mod);
323 struct snd_soc_pcm_runtime *fe = substream->private_data;
324
325 /* default value (mainly for non-DT) */
326 src->convert_rate = src->info->convert_rate;
327
328 /*
329 * SRC assumes that it is used under DPCM if user want to use
330 * sampling rate convert. Then, SRC should be FE.
331 * And then, this function will be called *after* BE settings.
332 * this means, each BE already has fixuped hw_params.
333 * see
334 * dpcm_fe_dai_hw_params()
335 * dpcm_be_dai_hw_params()
336 */
337 if (fe->dai_link->dynamic) {
338 int stream = substream->stream;
339 struct snd_soc_dpcm *dpcm;
340 struct snd_pcm_hw_params *be_params;
341
342 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
343 be_params = &dpcm->hw_params;
344
345 if (params_rate(fe_params) != params_rate(be_params))
346 src->convert_rate = params_rate(be_params);
347 }
348 }
349
350 return 0;
351}
352
353static int rsnd_src_init(struct rsnd_mod *mod,
354 struct rsnd_priv *priv)
1b7b08ef 355{
ba9c949f 356 struct rsnd_src *src = rsnd_mod_to_src(mod);
1b7b08ef 357
85642952 358 rsnd_mod_hw_start(mod);
1b7b08ef 359
cfcefe01
KM
360 src->err = 0;
361
43cb6954
KM
362 /* reset sync convert_rate */
363 src->sync.val = 0;
364
603cefa5
KM
365 /*
366 * Initialize the operation of the SRC internal circuits
367 * see rsnd_src_start()
368 */
369 rsnd_mod_write(mod, SRC_SRCIR, 1);
370
1b7b08ef
KM
371 return 0;
372}
373
ba9c949f 374static int rsnd_src_quit(struct rsnd_mod *mod,
2c0fac19 375 struct rsnd_dai_stream *io,
690602fc 376 struct rsnd_priv *priv)
1b7b08ef 377{
ba9c949f 378 struct rsnd_src *src = rsnd_mod_to_src(mod);
cfcefe01 379 struct device *dev = rsnd_priv_to_dev(priv);
1b7b08ef 380
85642952 381 rsnd_mod_hw_stop(mod);
1b7b08ef 382
cfcefe01 383 if (src->err)
337b0b4c
KM
384 dev_warn(dev, "%s[%d] under/over flow err = %d\n",
385 rsnd_mod_name(mod), rsnd_mod_id(mod), src->err);
cfcefe01 386
3b7843ff
KM
387 src->convert_rate = 0;
388
43cb6954
KM
389 /* reset sync convert_rate */
390 src->sync.val = 0;
391
1b7b08ef
KM
392 return 0;
393}
394
f0ef0cb8 395static int rsnd_src_start(struct rsnd_mod *mod)
1b7b08ef 396{
1b7b08ef
KM
397 /*
398 * Cancel the initialization and operate the SRC function
603cefa5 399 * see rsnd_src_init()
1b7b08ef
KM
400 */
401 rsnd_mod_write(mod, SRC_SRCIR, 0);
402
1b7b08ef
KM
403 return 0;
404}
405
f0ef0cb8 406static int rsnd_src_stop(struct rsnd_mod *mod)
1b7b08ef 407{
933cc8cb 408 /* nothing to do */
1b7b08ef
KM
409 return 0;
410}
411
1b7b08ef
KM
412/*
413 * Gen1 functions
414 */
88c61cff
KM
415static int rsnd_src_set_route_gen1(struct rsnd_dai_stream *io,
416 struct rsnd_mod *mod)
374a5281 417{
ba9c949f 418 struct src_route_config {
374a5281
KM
419 u32 mask;
420 int shift;
421 } routes[] = {
422 { 0xF, 0, }, /* 0 */
423 { 0xF, 4, }, /* 1 */
424 { 0xF, 8, }, /* 2 */
425 { 0x7, 12, }, /* 3 */
426 { 0x7, 16, }, /* 4 */
427 { 0x7, 20, }, /* 5 */
428 { 0x7, 24, }, /* 6 */
429 { 0x3, 28, }, /* 7 */
430 { 0x3, 30, }, /* 8 */
431 };
374a5281
KM
432 u32 mask;
433 u32 val;
374a5281
KM
434 int id;
435
374a5281 436 id = rsnd_mod_id(mod);
b5f3d7af 437 if (id < 0 || id >= ARRAY_SIZE(routes))
374a5281
KM
438 return -EIO;
439
440 /*
441 * SRC_ROUTE_SELECT
442 */
985a4f6e 443 val = rsnd_io_is_play(io) ? 0x1 : 0x2;
374a5281
KM
444 val = val << routes[id].shift;
445 mask = routes[id].mask << routes[id].shift;
446
447 rsnd_mod_bset(mod, SRC_ROUTE_SEL, mask, val);
448
28dc4b63
KM
449 return 0;
450}
451
88c61cff
KM
452static int rsnd_src_set_convert_timing_gen1(struct rsnd_dai_stream *io,
453 struct rsnd_mod *mod)
28dc4b63
KM
454{
455 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
ba9c949f 456 struct rsnd_src *src = rsnd_mod_to_src(mod);
28dc4b63 457 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
88c61cff 458 u32 convert_rate = rsnd_src_convert_rate(io, src);
28dc4b63
KM
459 u32 mask;
460 u32 val;
461 int shift;
462 int id = rsnd_mod_id(mod);
463 int ret;
464
374a5281
KM
465 /*
466 * SRC_TIMING_SELECT
467 */
468 shift = (id % 4) * 8;
469 mask = 0x1F << shift;
ef749400
KM
470
471 /*
472 * ADG is used as source clock if SRC was used,
473 * then, SSI WS is used as destination clock.
474 * SSI WS is used as source clock if SRC is not used
475 * (when playback, source/destination become reverse when capture)
476 */
28dc4b63
KM
477 ret = 0;
478 if (convert_rate) {
479 /* use ADG */
ef749400 480 val = 0;
28dc4b63
KM
481 ret = rsnd_adg_set_convert_clk_gen1(priv, mod,
482 runtime->rate,
483 convert_rate);
484 } else if (8 == id) {
485 /* use SSI WS, but SRU8 is special */
374a5281 486 val = id << shift;
28dc4b63
KM
487 } else {
488 /* use SSI WS */
374a5281 489 val = (id + 1) << shift;
28dc4b63
KM
490 }
491
492 if (ret < 0)
493 return ret;
374a5281
KM
494
495 switch (id / 4) {
496 case 0:
497 rsnd_mod_bset(mod, SRC_TMG_SEL0, mask, val);
498 break;
499 case 1:
500 rsnd_mod_bset(mod, SRC_TMG_SEL1, mask, val);
501 break;
502 case 2:
503 rsnd_mod_bset(mod, SRC_TMG_SEL2, mask, val);
504 break;
505 }
506
507 return 0;
508}
509
4e2639ff
KM
510static int rsnd_src_set_convert_rate_gen1(struct rsnd_mod *mod,
511 struct rsnd_dai_stream *io)
374a5281 512{
933cc8cb 513 struct rsnd_src *src = rsnd_mod_to_src(mod);
1b7b08ef 514 int ret;
ef749400 515
4e2639ff 516 ret = rsnd_src_set_convert_rate(mod, io);
1b7b08ef
KM
517 if (ret < 0)
518 return ret;
ef749400 519
1b7b08ef
KM
520 /* Select SRC mode (fixed value) */
521 rsnd_mod_write(mod, SRC_SRCCR, 0x00010110);
ef749400 522
1b7b08ef
KM
523 /* Set the restriction value of the FS ratio (98%) */
524 rsnd_mod_write(mod, SRC_MNFSR,
525 rsnd_mod_read(mod, SRC_IFSVR) / 100 * 98);
ef749400 526
933cc8cb 527 /* Gen1/Gen2 are not compatible */
88c61cff 528 if (rsnd_src_convert_rate(io, src))
933cc8cb
KM
529 rsnd_mod_write(mod, SRC_ROUTE_MODE0, 1);
530
1b7b08ef 531 /* no SRC_BFSSR settings, since SRC_SRCCR::BUFMD is 0 */
ef749400 532
374a5281
KM
533 return 0;
534}
535
ba9c949f 536static int rsnd_src_init_gen1(struct rsnd_mod *mod,
2c0fac19 537 struct rsnd_dai_stream *io,
690602fc 538 struct rsnd_priv *priv)
07539c1d 539{
374a5281
KM
540 int ret;
541
3b7843ff 542 ret = rsnd_src_init(mod, priv);
7b5ce975
KM
543 if (ret < 0)
544 return ret;
545
88c61cff 546 ret = rsnd_src_set_route_gen1(io, mod);
374a5281
KM
547 if (ret < 0)
548 return ret;
549
4e2639ff 550 ret = rsnd_src_set_convert_rate_gen1(mod, io);
374a5281
KM
551 if (ret < 0)
552 return ret;
07539c1d 553
88c61cff 554 ret = rsnd_src_set_convert_timing_gen1(io, mod);
28dc4b63
KM
555 if (ret < 0)
556 return ret;
557
a204d90c
KM
558 return 0;
559}
560
ba9c949f 561static int rsnd_src_start_gen1(struct rsnd_mod *mod,
2c0fac19 562 struct rsnd_dai_stream *io,
690602fc 563 struct rsnd_priv *priv)
a204d90c 564{
1b7b08ef 565 int id = rsnd_mod_id(mod);
a204d90c 566
1b7b08ef 567 rsnd_mod_bset(mod, SRC_ROUTE_CTRL, (1 << id), (1 << id));
374a5281 568
f0ef0cb8 569 return rsnd_src_start(mod);
07539c1d
KM
570}
571
ba9c949f 572static int rsnd_src_stop_gen1(struct rsnd_mod *mod,
2c0fac19 573 struct rsnd_dai_stream *io,
690602fc 574 struct rsnd_priv *priv)
a204d90c 575{
e7ce74ea 576 int id = rsnd_mod_id(mod);
a204d90c 577
1b7b08ef 578 rsnd_mod_bset(mod, SRC_ROUTE_CTRL, (1 << id), 0);
e7ce74ea 579
f0ef0cb8 580 return rsnd_src_stop(mod);
a204d90c
KM
581}
582
ba9c949f 583static struct rsnd_mod_ops rsnd_src_gen1_ops = {
8aefda50 584 .name = SRC_NAME,
72adc61f 585 .dma_req = rsnd_src_dma_req,
ba9c949f
KM
586 .init = rsnd_src_init_gen1,
587 .quit = rsnd_src_quit,
588 .start = rsnd_src_start_gen1,
589 .stop = rsnd_src_stop_gen1,
3b7843ff 590 .hw_params = rsnd_src_hw_params,
1b7b08ef 591};
e7ce74ea 592
1b7b08ef
KM
593/*
594 * Gen2 functions
595 */
cfcefe01
KM
596#define rsnd_src_irq_enable_gen2(mod) rsnd_src_irq_ctrol_gen2(mod, 1)
597#define rsnd_src_irq_disable_gen2(mod) rsnd_src_irq_ctrol_gen2(mod, 0)
598static void rsnd_src_irq_ctrol_gen2(struct rsnd_mod *mod, int enable)
599{
600 struct rsnd_src *src = rsnd_mod_to_src(mod);
601 u32 sys_int_val, int_val, sys_int_mask;
602 int irq = src->info->irq;
603 int id = rsnd_mod_id(mod);
604
605 sys_int_val =
606 sys_int_mask = OUF_SRC(id);
607 int_val = 0x3300;
608
609 /*
610 * IRQ is not supported on non-DT
611 * see
612 * rsnd_src_probe_gen2()
613 */
614 if ((irq <= 0) || !enable) {
615 sys_int_val = 0;
616 int_val = 0;
617 }
618
1a1bf58a
KM
619 /*
620 * WORKAROUND
621 *
622 * ignore over flow error when rsnd_enable_sync_convert()
623 */
624 if (rsnd_enable_sync_convert(src))
625 sys_int_val = sys_int_val & 0xffff;
626
cfcefe01
KM
627 rsnd_mod_write(mod, SRC_INT_ENABLE0, int_val);
628 rsnd_mod_bset(mod, SCU_SYS_INT_EN0, sys_int_mask, sys_int_val);
629 rsnd_mod_bset(mod, SCU_SYS_INT_EN1, sys_int_mask, sys_int_val);
630}
631
632static void rsnd_src_error_clear_gen2(struct rsnd_mod *mod)
633{
634 u32 val = OUF_SRC(rsnd_mod_id(mod));
635
636 rsnd_mod_bset(mod, SCU_SYS_STATUS0, val, val);
637 rsnd_mod_bset(mod, SCU_SYS_STATUS1, val, val);
638}
639
640static bool rsnd_src_error_record_gen2(struct rsnd_mod *mod)
641{
1a1bf58a
KM
642 struct rsnd_src *src = rsnd_mod_to_src(mod);
643 u32 val0, val1;
cfcefe01
KM
644 bool ret = false;
645
1a1bf58a
KM
646 val0 = val1 = OUF_SRC(rsnd_mod_id(mod));
647
648 /*
649 * WORKAROUND
650 *
651 * ignore over flow error when rsnd_enable_sync_convert()
652 */
653 if (rsnd_enable_sync_convert(src))
654 val0 = val0 & 0xffff;
655
656 if ((rsnd_mod_read(mod, SCU_SYS_STATUS0) & val0) ||
657 (rsnd_mod_read(mod, SCU_SYS_STATUS1) & val1)) {
cfcefe01
KM
658 struct rsnd_src *src = rsnd_mod_to_src(mod);
659
660 src->err++;
661 ret = true;
662 }
663
664 /* clear error static */
665 rsnd_src_error_clear_gen2(mod);
666
667 return ret;
668}
669
88c61cff
KM
670static int _rsnd_src_start_gen2(struct rsnd_mod *mod,
671 struct rsnd_dai_stream *io)
cfcefe01 672{
1a1bf58a
KM
673 struct rsnd_src *src = rsnd_mod_to_src(mod);
674 u32 val;
675
676 /*
677 * WORKAROUND
678 *
679 * Enable SRC output if you want to use sync convert together with DVC
680 */
681 val = (rsnd_io_to_mod_dvc(io) && !rsnd_enable_sync_convert(src)) ?
682 0x01 : 0x11;
cfcefe01
KM
683
684 rsnd_mod_write(mod, SRC_CTRL, val);
685
686 rsnd_src_error_clear_gen2(mod);
687
688 rsnd_src_start(mod);
689
690 rsnd_src_irq_enable_gen2(mod);
691
692 return 0;
693}
694
695static int _rsnd_src_stop_gen2(struct rsnd_mod *mod)
696{
697 rsnd_src_irq_disable_gen2(mod);
698
699 rsnd_mod_write(mod, SRC_CTRL, 0);
700
701 rsnd_src_error_record_gen2(mod);
702
703 return rsnd_src_stop(mod);
704}
705
88c61cff
KM
706static void __rsnd_src_interrupt_gen2(struct rsnd_mod *mod,
707 struct rsnd_dai_stream *io)
cfcefe01 708{
02299d98
KM
709 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
710
711 spin_lock(&priv->lock);
cfcefe01 712
02299d98 713 /* ignore all cases if not working */
d5bbe7de 714 if (!rsnd_io_is_working(io))
02299d98 715 goto rsnd_src_interrupt_gen2_out;
cfcefe01
KM
716
717 if (rsnd_src_error_record_gen2(mod)) {
718 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
639b231f 719 struct rsnd_src *src = rsnd_mod_to_src(mod);
cfcefe01
KM
720 struct device *dev = rsnd_priv_to_dev(priv);
721
cfcefe01
KM
722 dev_dbg(dev, "%s[%d] restart\n",
723 rsnd_mod_name(mod), rsnd_mod_id(mod));
639b231f
KM
724
725 _rsnd_src_stop_gen2(mod);
726 if (src->err < 1024)
88c61cff 727 _rsnd_src_start_gen2(mod, io);
639b231f
KM
728 else
729 dev_warn(dev, "no more SRC restart\n");
cfcefe01 730 }
88c61cff 731
02299d98
KM
732rsnd_src_interrupt_gen2_out:
733 spin_unlock(&priv->lock);
88c61cff
KM
734}
735
736static irqreturn_t rsnd_src_interrupt_gen2(int irq, void *data)
737{
738 struct rsnd_mod *mod = data;
739
740 rsnd_mod_interrupt(mod, __rsnd_src_interrupt_gen2);
cfcefe01
KM
741
742 return IRQ_HANDLED;
743}
744
4e2639ff
KM
745static int rsnd_src_set_convert_rate_gen2(struct rsnd_mod *mod,
746 struct rsnd_dai_stream *io)
629509c5 747{
054cd7f4
KM
748 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
749 struct device *dev = rsnd_priv_to_dev(priv);
054cd7f4
KM
750 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
751 struct rsnd_src *src = rsnd_mod_to_src(mod);
88c61cff 752 u32 convert_rate = rsnd_src_convert_rate(io, src);
43cb6954 753 u32 cr, route;
054cd7f4 754 uint ratio;
629509c5
KM
755 int ret;
756
054cd7f4 757 /* 6 - 1/6 are very enough ratio for SRC_BSDSR */
b167a578 758 if (!convert_rate)
054cd7f4 759 ratio = 0;
b167a578
KM
760 else if (convert_rate > runtime->rate)
761 ratio = 100 * convert_rate / runtime->rate;
054cd7f4 762 else
b167a578 763 ratio = 100 * runtime->rate / convert_rate;
054cd7f4
KM
764
765 if (ratio > 600) {
766 dev_err(dev, "FSO/FSI ratio error\n");
767 return -EINVAL;
768 }
769
4e2639ff 770 ret = rsnd_src_set_convert_rate(mod, io);
629509c5
KM
771 if (ret < 0)
772 return ret;
773
43cb6954
KM
774 cr = 0x00011110;
775 route = 0x0;
933cc8cb 776 if (convert_rate) {
43cb6954
KM
777 route = 0x1;
778
779 if (rsnd_enable_sync_convert(src)) {
780 cr |= 0x1;
781 route |= rsnd_io_is_play(io) ?
782 (0x1 << 24) : (0x1 << 25);
783 }
933cc8cb
KM
784 }
785
43cb6954
KM
786 rsnd_mod_write(mod, SRC_SRCCR, cr);
787 rsnd_mod_write(mod, SRC_ROUTE_MODE0, route);
788
054cd7f4
KM
789 switch (rsnd_mod_id(mod)) {
790 case 5:
791 case 6:
792 case 7:
793 case 8:
794 rsnd_mod_write(mod, SRC_BSDSR, 0x02400000);
795 break;
796 default:
797 rsnd_mod_write(mod, SRC_BSDSR, 0x01800000);
798 break;
799 }
800
629509c5
KM
801 rsnd_mod_write(mod, SRC_BSISR, 0x00100060);
802
803 return 0;
804}
805
88c61cff
KM
806static int rsnd_src_set_convert_timing_gen2(struct rsnd_dai_stream *io,
807 struct rsnd_mod *mod)
629509c5
KM
808{
809 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
ba9c949f 810 struct rsnd_src *src = rsnd_mod_to_src(mod);
88c61cff 811 u32 convert_rate = rsnd_src_convert_rate(io, src);
629509c5
KM
812 int ret;
813
814 if (convert_rate)
f708d944 815 ret = rsnd_adg_set_convert_clk_gen2(mod, io,
629509c5
KM
816 runtime->rate,
817 convert_rate);
818 else
f708d944 819 ret = rsnd_adg_set_convert_timing_gen2(mod, io);
629509c5
KM
820
821 return ret;
822}
823
ba9c949f 824static int rsnd_src_probe_gen2(struct rsnd_mod *mod,
2c0fac19 825 struct rsnd_dai_stream *io,
690602fc 826 struct rsnd_priv *priv)
76c6fb5c 827{
ba9c949f 828 struct rsnd_src *src = rsnd_mod_to_src(mod);
76c6fb5c 829 struct device *dev = rsnd_priv_to_dev(priv);
cfcefe01 830 int irq = src->info->irq;
76c6fb5c 831 int ret;
76c6fb5c 832
cfcefe01
KM
833 if (irq > 0) {
834 /*
835 * IRQ is not supported on non-DT
836 * see
837 * rsnd_src_irq_enable_gen2()
838 */
839 ret = devm_request_irq(dev, irq,
840 rsnd_src_interrupt_gen2,
841 IRQF_SHARED,
842 dev_name(dev), mod);
843 if (ret)
b543b52a 844 return ret;
cfcefe01
KM
845 }
846
9b99e9a7 847 ret = rsnd_dma_init(io,
76c6fb5c 848 rsnd_mod_to_dma(mod),
ba9c949f 849 src->info->dma_id);
8aefda50 850
76c6fb5c
KM
851 return ret;
852}
853
ba9c949f 854static int rsnd_src_remove_gen2(struct rsnd_mod *mod,
2c0fac19 855 struct rsnd_dai_stream *io,
690602fc 856 struct rsnd_priv *priv)
76c6fb5c 857{
9b99e9a7 858 rsnd_dma_quit(io, rsnd_mod_to_dma(mod));
76c6fb5c
KM
859
860 return 0;
861}
862
ba9c949f 863static int rsnd_src_init_gen2(struct rsnd_mod *mod,
2c0fac19 864 struct rsnd_dai_stream *io,
690602fc 865 struct rsnd_priv *priv)
629509c5
KM
866{
867 int ret;
868
3b7843ff 869 ret = rsnd_src_init(mod, priv);
629509c5
KM
870 if (ret < 0)
871 return ret;
872
4e2639ff 873 ret = rsnd_src_set_convert_rate_gen2(mod, io);
629509c5
KM
874 if (ret < 0)
875 return ret;
876
88c61cff 877 ret = rsnd_src_set_convert_timing_gen2(io, mod);
629509c5
KM
878 if (ret < 0)
879 return ret;
880
881 return 0;
882}
883
ba9c949f 884static int rsnd_src_start_gen2(struct rsnd_mod *mod,
2c0fac19 885 struct rsnd_dai_stream *io,
690602fc 886 struct rsnd_priv *priv)
629509c5 887{
9b99e9a7 888 rsnd_dma_start(io, rsnd_mod_to_dma(mod));
629509c5 889
88c61cff 890 return _rsnd_src_start_gen2(mod, io);
629509c5
KM
891}
892
ba9c949f 893static int rsnd_src_stop_gen2(struct rsnd_mod *mod,
2c0fac19 894 struct rsnd_dai_stream *io,
690602fc 895 struct rsnd_priv *priv)
629509c5 896{
cfcefe01 897 int ret;
629509c5 898
cfcefe01 899 ret = _rsnd_src_stop_gen2(mod);
629509c5 900
9b99e9a7 901 rsnd_dma_stop(io, rsnd_mod_to_dma(mod));
629509c5 902
cfcefe01 903 return ret;
629509c5
KM
904}
905
b65a7ccc
KM
906static void rsnd_src_reconvert_update(struct rsnd_dai_stream *io,
907 struct rsnd_mod *mod)
43cb6954 908{
43cb6954
KM
909 struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
910 struct rsnd_src *src = rsnd_mod_to_src(mod);
88c61cff 911 u32 convert_rate = rsnd_src_convert_rate(io, src);
43cb6954
KM
912 u32 fsrate;
913
914 if (!runtime)
915 return;
916
917 if (!convert_rate)
918 convert_rate = runtime->rate;
919
920 fsrate = 0x0400000 / convert_rate * runtime->rate;
921
922 /* update IFS */
923 rsnd_mod_write(mod, SRC_IFSVR, fsrate);
924}
925
926static int rsnd_src_pcm_new(struct rsnd_mod *mod,
2c0fac19 927 struct rsnd_dai_stream *io,
43cb6954
KM
928 struct snd_soc_pcm_runtime *rtd)
929{
930 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
43cb6954
KM
931 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
932 struct rsnd_src *src = rsnd_mod_to_src(mod);
933 int ret;
934
935 /*
936 * enable SRC sync convert if possible
937 */
938
939 /*
940 * Gen1 is not supported
941 */
942 if (rsnd_is_gen1(priv))
943 return 0;
944
945 /*
946 * SRC sync convert needs clock master
947 */
948 if (!rsnd_rdai_is_clk_master(rdai))
949 return 0;
950
43cb6954
KM
951 /*
952 * enable sync convert
953 */
b65a7ccc 954 ret = rsnd_kctrl_new_s(mod, io, rtd,
43cb6954
KM
955 rsnd_io_is_play(io) ?
956 "SRC Out Rate Switch" :
957 "SRC In Rate Switch",
958 rsnd_src_reconvert_update,
959 &src->sen, 1);
960 if (ret < 0)
961 return ret;
962
b65a7ccc 963 ret = rsnd_kctrl_new_s(mod, io, rtd,
43cb6954
KM
964 rsnd_io_is_play(io) ?
965 "SRC Out Rate" :
966 "SRC In Rate",
967 rsnd_src_reconvert_update,
968 &src->sync, 192000);
969
970 return ret;
971}
972
ba9c949f 973static struct rsnd_mod_ops rsnd_src_gen2_ops = {
8aefda50 974 .name = SRC_NAME,
72adc61f 975 .dma_req = rsnd_src_dma_req,
ba9c949f
KM
976 .probe = rsnd_src_probe_gen2,
977 .remove = rsnd_src_remove_gen2,
978 .init = rsnd_src_init_gen2,
979 .quit = rsnd_src_quit,
980 .start = rsnd_src_start_gen2,
981 .stop = rsnd_src_stop_gen2,
3b7843ff 982 .hw_params = rsnd_src_hw_params,
43cb6954 983 .pcm_new = rsnd_src_pcm_new,
629509c5
KM
984};
985
ba9c949f 986struct rsnd_mod *rsnd_src_mod_get(struct rsnd_priv *priv, int id)
07539c1d 987{
ba9c949f 988 if (WARN_ON(id < 0 || id >= rsnd_src_nr(priv)))
8b14719b 989 id = 0;
07539c1d 990
ba9c949f 991 return &((struct rsnd_src *)(priv->src) + id)->mod;
07539c1d
KM
992}
993
90e8e50f
KM
994static void rsnd_of_parse_src(struct platform_device *pdev,
995 const struct rsnd_of_data *of_data,
996 struct rsnd_priv *priv)
997{
998 struct device_node *src_node;
cfcefe01 999 struct device_node *np;
90e8e50f
KM
1000 struct rcar_snd_info *info = rsnd_priv_to_info(priv);
1001 struct rsnd_src_platform_info *src_info;
1002 struct device *dev = &pdev->dev;
cfcefe01 1003 int nr, i;
90e8e50f
KM
1004
1005 if (!of_data)
1006 return;
1007
82e76ed3 1008 src_node = rsnd_src_of_node(priv);
90e8e50f
KM
1009 if (!src_node)
1010 return;
1011
1012 nr = of_get_child_count(src_node);
1013 if (!nr)
f451e48d 1014 goto rsnd_of_parse_src_end;
90e8e50f
KM
1015
1016 src_info = devm_kzalloc(dev,
1017 sizeof(struct rsnd_src_platform_info) * nr,
1018 GFP_KERNEL);
1019 if (!src_info) {
1020 dev_err(dev, "src info allocation error\n");
f451e48d 1021 goto rsnd_of_parse_src_end;
90e8e50f
KM
1022 }
1023
1024 info->src_info = src_info;
1025 info->src_info_nr = nr;
f451e48d 1026
cfcefe01
KM
1027 i = 0;
1028 for_each_child_of_node(src_node, np) {
1029 src_info[i].irq = irq_of_parse_and_map(np, 0);
1030
1031 i++;
1032 }
1033
f451e48d
KM
1034rsnd_of_parse_src_end:
1035 of_node_put(src_node);
90e8e50f
KM
1036}
1037
ba9c949f 1038int rsnd_src_probe(struct platform_device *pdev,
90e8e50f 1039 const struct rsnd_of_data *of_data,
07539c1d
KM
1040 struct rsnd_priv *priv)
1041{
5da39cf3 1042 struct rcar_snd_info *info = rsnd_priv_to_info(priv);
07539c1d 1043 struct device *dev = rsnd_priv_to_dev(priv);
ba9c949f 1044 struct rsnd_src *src;
013f38fe 1045 struct rsnd_mod_ops *ops;
ef749400 1046 struct clk *clk;
ba9c949f 1047 char name[RSND_SRC_NAME_SIZE];
2f78dd7f 1048 int i, nr, ret;
07539c1d 1049
033e7ed8
KM
1050 ops = NULL;
1051 if (rsnd_is_gen1(priv))
1052 ops = &rsnd_src_gen1_ops;
1053 if (rsnd_is_gen2(priv))
1054 ops = &rsnd_src_gen2_ops;
1055 if (!ops) {
1056 dev_err(dev, "unknown Generation\n");
1057 return -EIO;
1058 }
1059
90e8e50f
KM
1060 rsnd_of_parse_src(pdev, of_data, priv);
1061
07539c1d 1062 /*
ba9c949f 1063 * init SRC
07539c1d 1064 */
ba9c949f 1065 nr = info->src_info_nr;
389933d9
KM
1066 if (!nr)
1067 return 0;
1068
ba9c949f 1069 src = devm_kzalloc(dev, sizeof(*src) * nr, GFP_KERNEL);
33363f7a 1070 if (!src)
07539c1d 1071 return -ENOMEM;
07539c1d 1072
ba9c949f
KM
1073 priv->src_nr = nr;
1074 priv->src = src;
07539c1d 1075
ba9c949f 1076 for_each_rsnd_src(src, priv, i) {
8aefda50
KM
1077 snprintf(name, RSND_SRC_NAME_SIZE, "%s.%d",
1078 SRC_NAME, i);
ef749400
KM
1079
1080 clk = devm_clk_get(dev, name);
1081 if (IS_ERR(clk))
1082 return PTR_ERR(clk);
1083
ba9c949f 1084 src->info = &info->src_info[i];
07539c1d 1085
2099bc8e 1086 ret = rsnd_mod_init(priv, &src->mod, ops, clk, RSND_MOD_SRC, i);
2f78dd7f
KM
1087 if (ret)
1088 return ret;
374a5281 1089 }
07539c1d
KM
1090
1091 return 0;
1092}
2f78dd7f
KM
1093
1094void rsnd_src_remove(struct platform_device *pdev,
1095 struct rsnd_priv *priv)
1096{
1097 struct rsnd_src *src;
1098 int i;
1099
1100 for_each_rsnd_src(src, priv, i) {
1101 rsnd_mod_quit(&src->mod);
1102 }
1103}
This page took 0.337383 seconds and 5 git commands to generate.