Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/renesas/rcar/core.c
26444 views
1
// SPDX-License-Identifier: GPL-2.0
2
//
3
// Renesas R-Car SRU/SCU/SSIU/SSI support
4
//
5
// Copyright (C) 2013 Renesas Solutions Corp.
6
// Kuninori Morimoto <[email protected]>
7
//
8
// Based on fsi.c
9
// Kuninori Morimoto <[email protected]>
10
11
/*
12
* Renesas R-Car sound device structure
13
*
14
* Gen1
15
*
16
* SRU : Sound Routing Unit
17
* - SRC : Sampling Rate Converter
18
* - CMD
19
* - CTU : Channel Count Conversion Unit
20
* - MIX : Mixer
21
* - DVC : Digital Volume and Mute Function
22
* - SSI : Serial Sound Interface
23
*
24
* Gen2
25
*
26
* SCU : Sampling Rate Converter Unit
27
* - SRC : Sampling Rate Converter
28
* - CMD
29
* - CTU : Channel Count Conversion Unit
30
* - MIX : Mixer
31
* - DVC : Digital Volume and Mute Function
32
* SSIU : Serial Sound Interface Unit
33
* - SSI : Serial Sound Interface
34
*/
35
36
/*
37
* driver data Image
38
*
39
* rsnd_priv
40
* |
41
* | ** this depends on Gen1/Gen2
42
* |
43
* +- gen
44
* |
45
* | ** these depend on data path
46
* | ** gen and platform data control it
47
* |
48
* +- rdai[0]
49
* | | sru ssiu ssi
50
* | +- playback -> [mod] -> [mod] -> [mod] -> ...
51
* | |
52
* | | sru ssiu ssi
53
* | +- capture -> [mod] -> [mod] -> [mod] -> ...
54
* |
55
* +- rdai[1]
56
* | | sru ssiu ssi
57
* | +- playback -> [mod] -> [mod] -> [mod] -> ...
58
* | |
59
* | | sru ssiu ssi
60
* | +- capture -> [mod] -> [mod] -> [mod] -> ...
61
* ...
62
* |
63
* | ** these control ssi
64
* |
65
* +- ssi
66
* | |
67
* | +- ssi[0]
68
* | +- ssi[1]
69
* | +- ssi[2]
70
* | ...
71
* |
72
* | ** these control src
73
* |
74
* +- src
75
* |
76
* +- src[0]
77
* +- src[1]
78
* +- src[2]
79
* ...
80
*
81
*
82
* for_each_rsnd_dai(xx, priv, xx)
83
* rdai[0] => rdai[1] => rdai[2] => ...
84
*
85
* for_each_rsnd_mod(xx, rdai, xx)
86
* [mod] => [mod] => [mod] => ...
87
*
88
* rsnd_dai_call(xxx, fn )
89
* [mod]->fn() -> [mod]->fn() -> [mod]->fn()...
90
*
91
*/
92
93
#include <linux/pm_runtime.h>
94
#include <linux/of_graph.h>
95
#include "rsnd.h"
96
97
#define RSND_RATES SNDRV_PCM_RATE_8000_192000
98
#define RSND_FMTS (SNDRV_PCM_FMTBIT_S8 |\
99
SNDRV_PCM_FMTBIT_S16_LE |\
100
SNDRV_PCM_FMTBIT_S24_LE)
101
102
static const struct of_device_id rsnd_of_match[] = {
103
{ .compatible = "renesas,rcar_sound-gen1", .data = (void *)RSND_GEN1 },
104
{ .compatible = "renesas,rcar_sound-gen2", .data = (void *)RSND_GEN2 },
105
{ .compatible = "renesas,rcar_sound-gen3", .data = (void *)RSND_GEN3 },
106
{ .compatible = "renesas,rcar_sound-gen4", .data = (void *)RSND_GEN4 },
107
/* Special Handling */
108
{ .compatible = "renesas,rcar_sound-r8a77990", .data = (void *)(RSND_GEN3 | RSND_SOC_E) },
109
{},
110
};
111
MODULE_DEVICE_TABLE(of, rsnd_of_match);
112
113
/*
114
* rsnd_mod functions
115
*/
116
void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type)
117
{
118
if (mod->type != type) {
119
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
120
struct device *dev = rsnd_priv_to_dev(priv);
121
122
dev_warn(dev, "%s is not your expected module\n",
123
rsnd_mod_name(mod));
124
}
125
}
126
127
struct dma_chan *rsnd_mod_dma_req(struct rsnd_dai_stream *io,
128
struct rsnd_mod *mod)
129
{
130
if (!mod || !mod->ops || !mod->ops->dma_req)
131
return NULL;
132
133
return mod->ops->dma_req(io, mod);
134
}
135
136
#define MOD_NAME_NUM 5
137
#define MOD_NAME_SIZE 16
138
char *rsnd_mod_name(struct rsnd_mod *mod)
139
{
140
static char names[MOD_NAME_NUM][MOD_NAME_SIZE];
141
static int num;
142
char *name = names[num];
143
144
num++;
145
if (num >= MOD_NAME_NUM)
146
num = 0;
147
148
/*
149
* Let's use same char to avoid pointlessness memory
150
* Thus, rsnd_mod_name() should be used immediately
151
* Don't keep pointer
152
*/
153
if ((mod)->ops->id_sub) {
154
snprintf(name, MOD_NAME_SIZE, "%s[%d%d]",
155
mod->ops->name,
156
rsnd_mod_id(mod),
157
rsnd_mod_id_sub(mod));
158
} else {
159
snprintf(name, MOD_NAME_SIZE, "%s[%d]",
160
mod->ops->name,
161
rsnd_mod_id(mod));
162
}
163
164
return name;
165
}
166
167
u32 *rsnd_mod_get_status(struct rsnd_mod *mod,
168
struct rsnd_dai_stream *io,
169
enum rsnd_mod_type type)
170
{
171
return &mod->status;
172
}
173
174
int rsnd_mod_id_raw(struct rsnd_mod *mod)
175
{
176
return mod->id;
177
}
178
179
int rsnd_mod_id(struct rsnd_mod *mod)
180
{
181
if ((mod)->ops->id)
182
return (mod)->ops->id(mod);
183
184
return rsnd_mod_id_raw(mod);
185
}
186
187
int rsnd_mod_id_sub(struct rsnd_mod *mod)
188
{
189
if ((mod)->ops->id_sub)
190
return (mod)->ops->id_sub(mod);
191
192
return 0;
193
}
194
195
int rsnd_mod_init(struct rsnd_priv *priv,
196
struct rsnd_mod *mod,
197
struct rsnd_mod_ops *ops,
198
struct clk *clk,
199
enum rsnd_mod_type type,
200
int id)
201
{
202
int ret = clk_prepare(clk);
203
204
if (ret)
205
return ret;
206
207
mod->id = id;
208
mod->ops = ops;
209
mod->type = type;
210
mod->clk = clk;
211
mod->priv = priv;
212
213
return 0;
214
}
215
216
void rsnd_mod_quit(struct rsnd_mod *mod)
217
{
218
clk_unprepare(mod->clk);
219
mod->clk = NULL;
220
}
221
222
void rsnd_mod_interrupt(struct rsnd_mod *mod,
223
void (*callback)(struct rsnd_mod *mod,
224
struct rsnd_dai_stream *io))
225
{
226
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
227
struct rsnd_dai *rdai;
228
int i;
229
230
for_each_rsnd_dai(rdai, priv, i) {
231
struct rsnd_dai_stream *io = &rdai->playback;
232
233
if (mod == io->mod[mod->type])
234
callback(mod, io);
235
236
io = &rdai->capture;
237
if (mod == io->mod[mod->type])
238
callback(mod, io);
239
}
240
}
241
242
int rsnd_io_is_working(struct rsnd_dai_stream *io)
243
{
244
/* see rsnd_dai_stream_init/quit() */
245
if (io->substream)
246
return snd_pcm_running(io->substream);
247
248
return 0;
249
}
250
251
int rsnd_runtime_channel_original_with_params(struct rsnd_dai_stream *io,
252
struct snd_pcm_hw_params *params)
253
{
254
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
255
256
/*
257
* params will be added when refine
258
* see
259
* __rsnd_soc_hw_rule_rate()
260
* __rsnd_soc_hw_rule_channels()
261
*/
262
if (params)
263
return params_channels(params);
264
else if (runtime)
265
return runtime->channels;
266
return 0;
267
}
268
269
int rsnd_runtime_channel_after_ctu_with_params(struct rsnd_dai_stream *io,
270
struct snd_pcm_hw_params *params)
271
{
272
int chan = rsnd_runtime_channel_original_with_params(io, params);
273
struct rsnd_mod *ctu_mod = rsnd_io_to_mod_ctu(io);
274
275
if (ctu_mod) {
276
u32 converted_chan = rsnd_io_converted_chan(io);
277
278
/*
279
* !! Note !!
280
*
281
* converted_chan will be used for CTU,
282
* or TDM Split mode.
283
* User shouldn't use CTU with TDM Split mode.
284
*/
285
if (rsnd_runtime_is_tdm_split(io)) {
286
struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io));
287
288
dev_err(dev, "CTU and TDM Split should be used\n");
289
}
290
291
if (converted_chan)
292
return converted_chan;
293
}
294
295
return chan;
296
}
297
298
int rsnd_channel_normalization(int chan)
299
{
300
if (WARN_ON((chan > 8) || (chan < 0)))
301
return 0;
302
303
/* TDM Extend Mode needs 8ch */
304
if (chan == 6)
305
chan = 8;
306
307
return chan;
308
}
309
310
int rsnd_runtime_channel_for_ssi_with_params(struct rsnd_dai_stream *io,
311
struct snd_pcm_hw_params *params)
312
{
313
struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
314
int chan = rsnd_io_is_play(io) ?
315
rsnd_runtime_channel_after_ctu_with_params(io, params) :
316
rsnd_runtime_channel_original_with_params(io, params);
317
318
/* Use Multi SSI */
319
if (rsnd_runtime_is_multi_ssi(io))
320
chan /= rsnd_rdai_ssi_lane_get(rdai);
321
322
return rsnd_channel_normalization(chan);
323
}
324
325
int rsnd_runtime_is_multi_ssi(struct rsnd_dai_stream *io)
326
{
327
struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
328
int lane = rsnd_rdai_ssi_lane_get(rdai);
329
int chan = rsnd_io_is_play(io) ?
330
rsnd_runtime_channel_after_ctu(io) :
331
rsnd_runtime_channel_original(io);
332
333
return (chan > 2) && (lane > 1);
334
}
335
336
int rsnd_runtime_is_tdm(struct rsnd_dai_stream *io)
337
{
338
return rsnd_runtime_channel_for_ssi(io) >= 6;
339
}
340
341
int rsnd_runtime_is_tdm_split(struct rsnd_dai_stream *io)
342
{
343
return !!rsnd_flags_has(io, RSND_STREAM_TDM_SPLIT);
344
}
345
346
/*
347
* ADINR function
348
*/
349
u32 rsnd_get_adinr_bit(struct rsnd_mod *mod, struct rsnd_dai_stream *io)
350
{
351
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
352
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
353
struct device *dev = rsnd_priv_to_dev(priv);
354
355
switch (snd_pcm_format_width(runtime->format)) {
356
case 8:
357
return 16 << 16;
358
case 16:
359
return 8 << 16;
360
case 24:
361
return 0 << 16;
362
}
363
364
dev_warn(dev, "not supported sample bits\n");
365
366
return 0;
367
}
368
369
/*
370
* DALIGN function
371
*/
372
u32 rsnd_get_dalign(struct rsnd_mod *mod, struct rsnd_dai_stream *io)
373
{
374
static const u32 dalign_values[8] = {
375
0x76543210, 0x00000032, 0x00007654, 0x00000076,
376
0xfedcba98, 0x000000ba, 0x0000fedc, 0x000000fe,
377
};
378
int id = 0;
379
struct rsnd_mod *ssiu = rsnd_io_to_mod_ssiu(io);
380
struct rsnd_mod *target;
381
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
382
u32 dalign;
383
384
/*
385
* *Hardware* L/R and *Software* L/R are inverted for 16bit data.
386
* 31..16 15...0
387
* HW: [L ch] [R ch]
388
* SW: [R ch] [L ch]
389
* We need to care about inversion timing to control
390
* Playback/Capture correctly.
391
* The point is [DVC] needs *Hardware* L/R, [MEM] needs *Software* L/R
392
*
393
* sL/R : software L/R
394
* hL/R : hardware L/R
395
* (*) : conversion timing
396
*
397
* Playback
398
* sL/R (*) hL/R hL/R hL/R hL/R hL/R
399
* [MEM] -> [SRC] -> [DVC] -> [CMD] -> [SSIU] -> [SSI] -> codec
400
*
401
* Capture
402
* hL/R hL/R hL/R hL/R hL/R (*) sL/R
403
* codec -> [SSI] -> [SSIU] -> [SRC] -> [DVC] -> [CMD] -> [MEM]
404
*/
405
if (rsnd_io_is_play(io)) {
406
struct rsnd_mod *src = rsnd_io_to_mod_src(io);
407
408
target = src ? src : ssiu;
409
} else {
410
struct rsnd_mod *cmd = rsnd_io_to_mod_cmd(io);
411
412
target = cmd ? cmd : ssiu;
413
}
414
415
if (mod == ssiu)
416
id = rsnd_mod_id_sub(mod);
417
418
dalign = dalign_values[id];
419
420
if (mod == target && snd_pcm_format_width(runtime->format) == 16) {
421
/* Target mod needs inverted DALIGN when 16bit */
422
dalign = (dalign & 0xf0f0f0f0) >> 4 |
423
(dalign & 0x0f0f0f0f) << 4;
424
}
425
426
return dalign;
427
}
428
429
u32 rsnd_get_busif_shift(struct rsnd_dai_stream *io, struct rsnd_mod *mod)
430
{
431
static const enum rsnd_mod_type playback_mods[] = {
432
RSND_MOD_SRC,
433
RSND_MOD_CMD,
434
RSND_MOD_SSIU,
435
};
436
static const enum rsnd_mod_type capture_mods[] = {
437
RSND_MOD_CMD,
438
RSND_MOD_SRC,
439
RSND_MOD_SSIU,
440
};
441
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
442
struct rsnd_mod *tmod = NULL;
443
const enum rsnd_mod_type *mods =
444
rsnd_io_is_play(io) ?
445
playback_mods : capture_mods;
446
int i;
447
448
/*
449
* This is needed for 24bit data
450
* We need to shift 8bit
451
*
452
* Linux 24bit data is located as 0x00******
453
* HW 24bit data is located as 0x******00
454
*
455
*/
456
if (snd_pcm_format_width(runtime->format) != 24)
457
return 0;
458
459
for (i = 0; i < ARRAY_SIZE(playback_mods); i++) {
460
tmod = rsnd_io_to_mod(io, mods[i]);
461
if (tmod)
462
break;
463
}
464
465
if (tmod != mod)
466
return 0;
467
468
if (rsnd_io_is_play(io))
469
return (0 << 20) | /* shift to Left */
470
(8 << 16); /* 8bit */
471
else
472
return (1 << 20) | /* shift to Right */
473
(8 << 16); /* 8bit */
474
}
475
476
/*
477
* rsnd_dai functions
478
*/
479
struct rsnd_mod *rsnd_mod_next(int *iterator,
480
struct rsnd_dai_stream *io,
481
enum rsnd_mod_type *array,
482
int array_size)
483
{
484
int max = array ? array_size : RSND_MOD_MAX;
485
486
for (; *iterator < max; (*iterator)++) {
487
enum rsnd_mod_type type = (array) ? array[*iterator] : *iterator;
488
struct rsnd_mod *mod = rsnd_io_to_mod(io, type);
489
490
if (mod)
491
return mod;
492
}
493
494
return NULL;
495
}
496
497
static enum rsnd_mod_type rsnd_mod_sequence[][RSND_MOD_MAX] = {
498
{
499
/* CAPTURE */
500
RSND_MOD_AUDMAPP,
501
RSND_MOD_AUDMA,
502
RSND_MOD_DVC,
503
RSND_MOD_MIX,
504
RSND_MOD_CTU,
505
RSND_MOD_CMD,
506
RSND_MOD_SRC,
507
RSND_MOD_SSIU,
508
RSND_MOD_SSIM3,
509
RSND_MOD_SSIM2,
510
RSND_MOD_SSIM1,
511
RSND_MOD_SSIP,
512
RSND_MOD_SSI,
513
}, {
514
/* PLAYBACK */
515
RSND_MOD_AUDMAPP,
516
RSND_MOD_AUDMA,
517
RSND_MOD_SSIM3,
518
RSND_MOD_SSIM2,
519
RSND_MOD_SSIM1,
520
RSND_MOD_SSIP,
521
RSND_MOD_SSI,
522
RSND_MOD_SSIU,
523
RSND_MOD_DVC,
524
RSND_MOD_MIX,
525
RSND_MOD_CTU,
526
RSND_MOD_CMD,
527
RSND_MOD_SRC,
528
},
529
};
530
531
static int rsnd_status_update(struct rsnd_dai_stream *io,
532
struct rsnd_mod *mod, enum rsnd_mod_type type,
533
int shift, int add, int timing)
534
{
535
u32 *status = mod->ops->get_status(mod, io, type);
536
u32 mask = 0xF << shift;
537
u8 val = (*status >> shift) & 0xF;
538
u8 next_val = (val + add) & 0xF;
539
int func_call = (val == timing);
540
541
/* no status update */
542
if (add == 0 || shift == 28)
543
return 1;
544
545
if (next_val == 0xF) /* underflow case */
546
func_call = -1;
547
else
548
*status = (*status & ~mask) + (next_val << shift);
549
550
return func_call;
551
}
552
553
#define rsnd_dai_call(fn, io, param...) \
554
({ \
555
struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io)); \
556
struct rsnd_mod *mod; \
557
int is_play = rsnd_io_is_play(io); \
558
int ret = 0, i; \
559
enum rsnd_mod_type *types = rsnd_mod_sequence[is_play]; \
560
for_each_rsnd_mod_arrays(i, mod, io, types, RSND_MOD_MAX) { \
561
int tmp = 0; \
562
int func_call = rsnd_status_update(io, mod, types[i], \
563
__rsnd_mod_shift_##fn, \
564
__rsnd_mod_add_##fn, \
565
__rsnd_mod_call_##fn); \
566
if (func_call > 0 && (mod)->ops->fn) \
567
tmp = (mod)->ops->fn(mod, io, param); \
568
if (unlikely(func_call < 0) || \
569
unlikely(tmp && (tmp != -EPROBE_DEFER))) \
570
dev_err(dev, "%s : %s error (%d, %d)\n", \
571
rsnd_mod_name(mod), #fn, tmp, func_call);\
572
ret |= tmp; \
573
} \
574
ret; \
575
})
576
577
int rsnd_dai_connect(struct rsnd_mod *mod,
578
struct rsnd_dai_stream *io,
579
enum rsnd_mod_type type)
580
{
581
struct rsnd_priv *priv;
582
struct device *dev;
583
584
if (!mod)
585
return -EIO;
586
587
if (io->mod[type] == mod)
588
return 0;
589
590
if (io->mod[type])
591
return -EINVAL;
592
593
priv = rsnd_mod_to_priv(mod);
594
dev = rsnd_priv_to_dev(priv);
595
596
io->mod[type] = mod;
597
598
dev_dbg(dev, "%s is connected to io (%s)\n",
599
rsnd_mod_name(mod),
600
rsnd_io_is_play(io) ? "Playback" : "Capture");
601
602
return 0;
603
}
604
605
static void rsnd_dai_disconnect(struct rsnd_mod *mod,
606
struct rsnd_dai_stream *io,
607
enum rsnd_mod_type type)
608
{
609
io->mod[type] = NULL;
610
}
611
612
int rsnd_rdai_channels_ctrl(struct rsnd_dai *rdai,
613
int max_channels)
614
{
615
if (max_channels > 0)
616
rdai->max_channels = max_channels;
617
618
return rdai->max_channels;
619
}
620
621
int rsnd_rdai_ssi_lane_ctrl(struct rsnd_dai *rdai,
622
int ssi_lane)
623
{
624
if (ssi_lane > 0)
625
rdai->ssi_lane = ssi_lane;
626
627
return rdai->ssi_lane;
628
}
629
630
int rsnd_rdai_width_ctrl(struct rsnd_dai *rdai, int width)
631
{
632
if (width > 0)
633
rdai->chan_width = width;
634
635
return rdai->chan_width;
636
}
637
638
struct rsnd_dai *rsnd_rdai_get(struct rsnd_priv *priv, int id)
639
{
640
if ((id < 0) || (id >= rsnd_rdai_nr(priv)))
641
return NULL;
642
643
return priv->rdai + id;
644
}
645
646
static struct snd_soc_dai_driver
647
*rsnd_daidrv_get(struct rsnd_priv *priv, int id)
648
{
649
if ((id < 0) || (id >= rsnd_rdai_nr(priv)))
650
return NULL;
651
652
return priv->daidrv + id;
653
}
654
655
#define rsnd_dai_to_priv(dai) snd_soc_dai_get_drvdata(dai)
656
static struct rsnd_dai *rsnd_dai_to_rdai(struct snd_soc_dai *dai)
657
{
658
struct rsnd_priv *priv = rsnd_dai_to_priv(dai);
659
660
return rsnd_rdai_get(priv, dai->id);
661
}
662
663
static void rsnd_dai_stream_init(struct rsnd_dai_stream *io,
664
struct snd_pcm_substream *substream)
665
{
666
io->substream = substream;
667
}
668
669
static void rsnd_dai_stream_quit(struct rsnd_dai_stream *io)
670
{
671
io->substream = NULL;
672
}
673
674
static
675
struct snd_soc_dai *rsnd_substream_to_dai(struct snd_pcm_substream *substream)
676
{
677
struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
678
679
return snd_soc_rtd_to_cpu(rtd, 0);
680
}
681
682
static
683
struct rsnd_dai_stream *rsnd_rdai_to_io(struct rsnd_dai *rdai,
684
struct snd_pcm_substream *substream)
685
{
686
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
687
return &rdai->playback;
688
else
689
return &rdai->capture;
690
}
691
692
static int rsnd_soc_dai_trigger(struct snd_pcm_substream *substream, int cmd,
693
struct snd_soc_dai *dai)
694
{
695
struct rsnd_priv *priv = rsnd_dai_to_priv(dai);
696
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
697
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
698
int ret;
699
unsigned long flags;
700
701
spin_lock_irqsave(&priv->lock, flags);
702
703
switch (cmd) {
704
case SNDRV_PCM_TRIGGER_START:
705
case SNDRV_PCM_TRIGGER_RESUME:
706
ret = rsnd_dai_call(init, io, priv);
707
if (ret < 0)
708
goto dai_trigger_end;
709
710
ret = rsnd_dai_call(start, io, priv);
711
if (ret < 0)
712
goto dai_trigger_end;
713
714
ret = rsnd_dai_call(irq, io, priv, 1);
715
if (ret < 0)
716
goto dai_trigger_end;
717
718
break;
719
case SNDRV_PCM_TRIGGER_STOP:
720
case SNDRV_PCM_TRIGGER_SUSPEND:
721
ret = rsnd_dai_call(irq, io, priv, 0);
722
723
ret |= rsnd_dai_call(stop, io, priv);
724
725
ret |= rsnd_dai_call(quit, io, priv);
726
727
break;
728
default:
729
ret = -EINVAL;
730
}
731
732
dai_trigger_end:
733
spin_unlock_irqrestore(&priv->lock, flags);
734
735
return ret;
736
}
737
738
static int rsnd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
739
{
740
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
741
742
/* set clock master for audio interface */
743
switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
744
case SND_SOC_DAIFMT_BC_FC:
745
rdai->clk_master = 0;
746
break;
747
case SND_SOC_DAIFMT_BP_FP:
748
rdai->clk_master = 1; /* cpu is master */
749
break;
750
default:
751
return -EINVAL;
752
}
753
754
/* set format */
755
rdai->bit_clk_inv = 0;
756
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
757
case SND_SOC_DAIFMT_I2S:
758
rdai->sys_delay = 0;
759
rdai->data_alignment = 0;
760
rdai->frm_clk_inv = 0;
761
break;
762
case SND_SOC_DAIFMT_LEFT_J:
763
case SND_SOC_DAIFMT_DSP_B:
764
rdai->sys_delay = 1;
765
rdai->data_alignment = 0;
766
rdai->frm_clk_inv = 1;
767
break;
768
case SND_SOC_DAIFMT_RIGHT_J:
769
rdai->sys_delay = 1;
770
rdai->data_alignment = 1;
771
rdai->frm_clk_inv = 1;
772
break;
773
case SND_SOC_DAIFMT_DSP_A:
774
rdai->sys_delay = 0;
775
rdai->data_alignment = 0;
776
rdai->frm_clk_inv = 1;
777
break;
778
}
779
780
/* set clock inversion */
781
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
782
case SND_SOC_DAIFMT_NB_IF:
783
rdai->frm_clk_inv = !rdai->frm_clk_inv;
784
break;
785
case SND_SOC_DAIFMT_IB_NF:
786
rdai->bit_clk_inv = !rdai->bit_clk_inv;
787
break;
788
case SND_SOC_DAIFMT_IB_IF:
789
rdai->bit_clk_inv = !rdai->bit_clk_inv;
790
rdai->frm_clk_inv = !rdai->frm_clk_inv;
791
break;
792
case SND_SOC_DAIFMT_NB_NF:
793
default:
794
break;
795
}
796
797
return 0;
798
}
799
800
static int rsnd_soc_set_dai_tdm_slot(struct snd_soc_dai *dai,
801
u32 tx_mask, u32 rx_mask,
802
int slots, int slot_width)
803
{
804
struct rsnd_priv *priv = rsnd_dai_to_priv(dai);
805
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
806
struct device *dev = rsnd_priv_to_dev(priv);
807
808
switch (slot_width) {
809
case 16:
810
case 24:
811
case 32:
812
break;
813
default:
814
/* use default */
815
/*
816
* Indicate warning if DT has "dai-tdm-slot-width"
817
* but the value was not expected.
818
*/
819
if (slot_width)
820
dev_warn(dev, "unsupported TDM slot width (%d), force to use default 32\n",
821
slot_width);
822
slot_width = 32;
823
}
824
825
switch (slots) {
826
case 2:
827
/* TDM Split Mode */
828
case 6:
829
case 8:
830
/* TDM Extend Mode */
831
rsnd_rdai_channels_set(rdai, slots);
832
rsnd_rdai_ssi_lane_set(rdai, 1);
833
rsnd_rdai_width_set(rdai, slot_width);
834
break;
835
default:
836
dev_err(dev, "unsupported TDM slots (%d)\n", slots);
837
return -EINVAL;
838
}
839
840
return 0;
841
}
842
843
static unsigned int rsnd_soc_hw_channels_list[] = {
844
2, 6, 8,
845
};
846
847
static unsigned int rsnd_soc_hw_rate_list[] = {
848
8000,
849
11025,
850
16000,
851
22050,
852
32000,
853
44100,
854
48000,
855
64000,
856
88200,
857
96000,
858
176400,
859
192000,
860
};
861
862
static int rsnd_soc_hw_rule(struct rsnd_dai *rdai,
863
unsigned int *list, int list_num,
864
struct snd_interval *baseline, struct snd_interval *iv,
865
struct rsnd_dai_stream *io, char *unit)
866
{
867
struct snd_interval p;
868
unsigned int rate;
869
int i;
870
871
snd_interval_any(&p);
872
p.min = UINT_MAX;
873
p.max = 0;
874
875
for (i = 0; i < list_num; i++) {
876
877
if (!snd_interval_test(iv, list[i]))
878
continue;
879
880
rate = rsnd_ssi_clk_query(rdai,
881
baseline->min, list[i], NULL);
882
if (rate > 0) {
883
p.min = min(p.min, list[i]);
884
p.max = max(p.max, list[i]);
885
}
886
887
rate = rsnd_ssi_clk_query(rdai,
888
baseline->max, list[i], NULL);
889
if (rate > 0) {
890
p.min = min(p.min, list[i]);
891
p.max = max(p.max, list[i]);
892
}
893
}
894
895
/* Indicate error once if it can't handle */
896
if (!rsnd_flags_has(io, RSND_HW_RULE_ERR) && (p.min > p.max)) {
897
struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
898
struct device *dev = rsnd_priv_to_dev(priv);
899
900
dev_warn(dev, "It can't handle %d %s <-> %d %s\n",
901
baseline->min, unit, baseline->max, unit);
902
rsnd_flags_set(io, RSND_HW_RULE_ERR);
903
}
904
905
return snd_interval_refine(iv, &p);
906
}
907
908
static int rsnd_soc_hw_rule_rate(struct snd_pcm_hw_params *params,
909
struct snd_pcm_hw_rule *rule)
910
{
911
struct snd_interval *ic_ = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
912
struct snd_interval *ir = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
913
struct snd_interval ic;
914
struct rsnd_dai_stream *io = rule->private;
915
struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
916
917
/*
918
* possible sampling rate limitation is same as
919
* 2ch if it supports multi ssi
920
* and same as 8ch if TDM 6ch (see rsnd_ssi_config_init())
921
*/
922
ic = *ic_;
923
ic.min =
924
ic.max = rsnd_runtime_channel_for_ssi_with_params(io, params);
925
926
return rsnd_soc_hw_rule(rdai, rsnd_soc_hw_rate_list,
927
ARRAY_SIZE(rsnd_soc_hw_rate_list),
928
&ic, ir, io, "ch");
929
}
930
931
static int rsnd_soc_hw_rule_channels(struct snd_pcm_hw_params *params,
932
struct snd_pcm_hw_rule *rule)
933
{
934
struct snd_interval *ic_ = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
935
struct snd_interval *ir = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
936
struct snd_interval ic;
937
struct rsnd_dai_stream *io = rule->private;
938
struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
939
940
/*
941
* possible sampling rate limitation is same as
942
* 2ch if it supports multi ssi
943
* and same as 8ch if TDM 6ch (see rsnd_ssi_config_init())
944
*/
945
ic = *ic_;
946
ic.min =
947
ic.max = rsnd_runtime_channel_for_ssi_with_params(io, params);
948
949
return rsnd_soc_hw_rule(rdai, rsnd_soc_hw_channels_list,
950
ARRAY_SIZE(rsnd_soc_hw_channels_list),
951
ir, &ic, io, "Hz");
952
}
953
954
static const struct snd_pcm_hardware rsnd_pcm_hardware = {
955
.info = SNDRV_PCM_INFO_INTERLEAVED |
956
SNDRV_PCM_INFO_MMAP |
957
SNDRV_PCM_INFO_MMAP_VALID,
958
.buffer_bytes_max = 64 * 1024,
959
.period_bytes_min = 32,
960
.period_bytes_max = 8192,
961
.periods_min = 1,
962
.periods_max = 32,
963
.fifo_size = 256,
964
};
965
966
static int rsnd_soc_dai_startup(struct snd_pcm_substream *substream,
967
struct snd_soc_dai *dai)
968
{
969
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
970
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
971
struct snd_pcm_hw_constraint_list *constraint = &rdai->constraint;
972
struct snd_pcm_runtime *runtime = substream->runtime;
973
unsigned int max_channels = rsnd_rdai_channels_get(rdai);
974
int i;
975
976
rsnd_flags_del(io, RSND_HW_RULE_ERR);
977
978
rsnd_dai_stream_init(io, substream);
979
980
/*
981
* Channel Limitation
982
* It depends on Platform design
983
*/
984
constraint->list = rsnd_soc_hw_channels_list;
985
constraint->count = 0;
986
constraint->mask = 0;
987
988
for (i = 0; i < ARRAY_SIZE(rsnd_soc_hw_channels_list); i++) {
989
if (rsnd_soc_hw_channels_list[i] > max_channels)
990
break;
991
constraint->count = i + 1;
992
}
993
994
snd_soc_set_runtime_hwparams(substream, &rsnd_pcm_hardware);
995
996
snd_pcm_hw_constraint_list(runtime, 0,
997
SNDRV_PCM_HW_PARAM_CHANNELS, constraint);
998
999
snd_pcm_hw_constraint_integer(runtime,
1000
SNDRV_PCM_HW_PARAM_PERIODS);
1001
1002
/*
1003
* Sampling Rate / Channel Limitation
1004
* It depends on Clock Master Mode
1005
*/
1006
if (rsnd_rdai_is_clk_master(rdai)) {
1007
int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1008
1009
snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1010
rsnd_soc_hw_rule_rate,
1011
is_play ? &rdai->playback : &rdai->capture,
1012
SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1013
snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1014
rsnd_soc_hw_rule_channels,
1015
is_play ? &rdai->playback : &rdai->capture,
1016
SNDRV_PCM_HW_PARAM_RATE, -1);
1017
}
1018
1019
return 0;
1020
}
1021
1022
static void rsnd_soc_dai_shutdown(struct snd_pcm_substream *substream,
1023
struct snd_soc_dai *dai)
1024
{
1025
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1026
struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
1027
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
1028
1029
/*
1030
* call rsnd_dai_call without spinlock
1031
*/
1032
rsnd_dai_call(cleanup, io, priv);
1033
1034
rsnd_dai_stream_quit(io);
1035
}
1036
1037
static int rsnd_soc_dai_prepare(struct snd_pcm_substream *substream,
1038
struct snd_soc_dai *dai)
1039
{
1040
struct rsnd_priv *priv = rsnd_dai_to_priv(dai);
1041
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1042
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
1043
1044
return rsnd_dai_call(prepare, io, priv);
1045
}
1046
1047
static const u64 rsnd_soc_dai_formats[] = {
1048
/*
1049
* 1st Priority
1050
*
1051
* Well tested formats.
1052
* Select below from Sound Card, not auto
1053
* SND_SOC_DAIFMT_CBC_CFC
1054
* SND_SOC_DAIFMT_CBP_CFP
1055
*/
1056
SND_SOC_POSSIBLE_DAIFMT_I2S |
1057
SND_SOC_POSSIBLE_DAIFMT_RIGHT_J |
1058
SND_SOC_POSSIBLE_DAIFMT_LEFT_J |
1059
SND_SOC_POSSIBLE_DAIFMT_NB_NF |
1060
SND_SOC_POSSIBLE_DAIFMT_NB_IF |
1061
SND_SOC_POSSIBLE_DAIFMT_IB_NF |
1062
SND_SOC_POSSIBLE_DAIFMT_IB_IF,
1063
/*
1064
* 2nd Priority
1065
*
1066
* Supported, but not well tested
1067
*/
1068
SND_SOC_POSSIBLE_DAIFMT_DSP_A |
1069
SND_SOC_POSSIBLE_DAIFMT_DSP_B,
1070
};
1071
1072
static void rsnd_parse_tdm_split_mode(struct rsnd_priv *priv,
1073
struct rsnd_dai_stream *io,
1074
struct device_node *dai_np)
1075
{
1076
struct device *dev = rsnd_priv_to_dev(priv);
1077
struct device_node *ssiu_np = rsnd_ssiu_of_node(priv);
1078
int is_play = rsnd_io_is_play(io);
1079
int i;
1080
1081
if (!ssiu_np)
1082
return;
1083
1084
/*
1085
* This driver assumes that it is TDM Split mode
1086
* if it includes ssiu node
1087
*/
1088
for (i = 0;; i++) {
1089
struct device_node *node = is_play ?
1090
of_parse_phandle(dai_np, "playback", i) :
1091
of_parse_phandle(dai_np, "capture", i);
1092
1093
if (!node)
1094
break;
1095
1096
for_each_child_of_node_scoped(ssiu_np, np) {
1097
if (np == node) {
1098
rsnd_flags_set(io, RSND_STREAM_TDM_SPLIT);
1099
dev_dbg(dev, "%s is part of TDM Split\n", io->name);
1100
}
1101
}
1102
1103
of_node_put(node);
1104
}
1105
1106
of_node_put(ssiu_np);
1107
}
1108
1109
static void rsnd_parse_connect_simple(struct rsnd_priv *priv,
1110
struct rsnd_dai_stream *io,
1111
struct device_node *dai_np)
1112
{
1113
if (!rsnd_io_to_mod_ssi(io))
1114
return;
1115
1116
rsnd_parse_tdm_split_mode(priv, io, dai_np);
1117
}
1118
1119
static void rsnd_parse_connect_graph(struct rsnd_priv *priv,
1120
struct rsnd_dai_stream *io,
1121
struct device_node *endpoint)
1122
{
1123
struct device *dev = rsnd_priv_to_dev(priv);
1124
struct device_node *remote_node;
1125
1126
if (!rsnd_io_to_mod_ssi(io))
1127
return;
1128
1129
remote_node = of_graph_get_remote_port_parent(endpoint);
1130
1131
/* HDMI0 */
1132
if (strstr(remote_node->full_name, "hdmi@fead0000")) {
1133
rsnd_flags_set(io, RSND_STREAM_HDMI0);
1134
dev_dbg(dev, "%s connected to HDMI0\n", io->name);
1135
}
1136
1137
/* HDMI1 */
1138
if (strstr(remote_node->full_name, "hdmi@feae0000")) {
1139
rsnd_flags_set(io, RSND_STREAM_HDMI1);
1140
dev_dbg(dev, "%s connected to HDMI1\n", io->name);
1141
}
1142
1143
rsnd_parse_tdm_split_mode(priv, io, endpoint);
1144
1145
of_node_put(remote_node);
1146
}
1147
1148
void rsnd_parse_connect_common(struct rsnd_dai *rdai, char *name,
1149
struct rsnd_mod* (*mod_get)(struct rsnd_priv *priv, int id),
1150
struct device_node *node,
1151
struct device_node *playback,
1152
struct device_node *capture)
1153
{
1154
struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
1155
struct device *dev = rsnd_priv_to_dev(priv);
1156
int i;
1157
1158
if (!node)
1159
return;
1160
1161
i = 0;
1162
for_each_child_of_node_scoped(node, np) {
1163
struct rsnd_mod *mod;
1164
1165
i = rsnd_node_fixed_index(dev, np, name, i);
1166
if (i < 0)
1167
break;
1168
1169
mod = mod_get(priv, i);
1170
1171
if (np == playback)
1172
rsnd_dai_connect(mod, &rdai->playback, mod->type);
1173
if (np == capture)
1174
rsnd_dai_connect(mod, &rdai->capture, mod->type);
1175
i++;
1176
}
1177
1178
of_node_put(node);
1179
}
1180
1181
int rsnd_node_fixed_index(struct device *dev, struct device_node *node, char *name, int idx)
1182
{
1183
char node_name[16];
1184
1185
/*
1186
* rsnd is assuming each device nodes are sequential numbering,
1187
* but some of them are not.
1188
* This function adjusts index for it.
1189
*
1190
* ex)
1191
* Normal case, special case
1192
* ssi-0
1193
* ssi-1
1194
* ssi-2
1195
* ssi-3 ssi-3
1196
* ssi-4 ssi-4
1197
* ...
1198
*
1199
* assume Max 64 node
1200
*/
1201
for (; idx < 64; idx++) {
1202
snprintf(node_name, sizeof(node_name), "%s-%d", name, idx);
1203
1204
if (strncmp(node_name, of_node_full_name(node), sizeof(node_name)) == 0)
1205
return idx;
1206
}
1207
1208
dev_err(dev, "strange node numbering (%s)",
1209
of_node_full_name(node));
1210
return -EINVAL;
1211
}
1212
1213
int rsnd_node_count(struct rsnd_priv *priv, struct device_node *node, char *name)
1214
{
1215
struct device *dev = rsnd_priv_to_dev(priv);
1216
int i;
1217
1218
i = 0;
1219
for_each_child_of_node_scoped(node, np) {
1220
i = rsnd_node_fixed_index(dev, np, name, i);
1221
if (i < 0)
1222
return 0;
1223
i++;
1224
}
1225
1226
return i;
1227
}
1228
1229
static struct device_node*
1230
rsnd_pick_endpoint_node_for_ports(struct device_node *e_ports,
1231
struct device_node *e_port)
1232
{
1233
if (of_node_name_eq(e_ports, "ports"))
1234
return e_ports;
1235
1236
if (of_node_name_eq(e_ports, "port"))
1237
return e_port;
1238
1239
return NULL;
1240
}
1241
1242
static int rsnd_dai_of_node(struct rsnd_priv *priv, int *is_graph)
1243
{
1244
struct device *dev = rsnd_priv_to_dev(priv);
1245
struct device_node *np = dev->of_node;
1246
struct device_node *node;
1247
int nr = 0;
1248
int i = 0;
1249
1250
*is_graph = 0;
1251
1252
/*
1253
* parse both previous dai (= rcar_sound,dai), and
1254
* graph dai (= ports/port)
1255
*/
1256
1257
/*
1258
* Simple-Card
1259
*/
1260
node = of_get_child_by_name(np, RSND_NODE_DAI);
1261
if (!node)
1262
goto audio_graph;
1263
1264
of_node_put(node);
1265
1266
for_each_child_of_node_scoped(np, node) {
1267
if (!of_node_name_eq(node, RSND_NODE_DAI))
1268
continue;
1269
1270
priv->component_dais[i] = of_get_child_count(node);
1271
nr += priv->component_dais[i];
1272
i++;
1273
if (i >= RSND_MAX_COMPONENT) {
1274
dev_info(dev, "reach to max component\n");
1275
break;
1276
}
1277
}
1278
1279
return nr;
1280
1281
audio_graph:
1282
/*
1283
* Audio-Graph-Card
1284
*/
1285
for_each_child_of_node_scoped(np, ports) {
1286
node = rsnd_pick_endpoint_node_for_ports(ports, np);
1287
if (!node)
1288
continue;
1289
priv->component_dais[i] = of_graph_get_endpoint_count(node);
1290
nr += priv->component_dais[i];
1291
i++;
1292
if (i >= RSND_MAX_COMPONENT) {
1293
dev_info(dev, "reach to max component\n");
1294
break;
1295
}
1296
}
1297
1298
*is_graph = 1;
1299
1300
return nr;
1301
}
1302
1303
1304
#define PREALLOC_BUFFER (32 * 1024)
1305
#define PREALLOC_BUFFER_MAX (32 * 1024)
1306
1307
static int rsnd_preallocate_pages(struct snd_soc_pcm_runtime *rtd,
1308
struct rsnd_dai_stream *io,
1309
int stream)
1310
{
1311
struct rsnd_priv *priv = rsnd_io_to_priv(io);
1312
struct device *dev = rsnd_priv_to_dev(priv);
1313
struct snd_pcm_substream *substream;
1314
1315
/*
1316
* use Audio-DMAC dev if we can use IPMMU
1317
* see
1318
* rsnd_dmaen_attach()
1319
*/
1320
if (io->dmac_dev)
1321
dev = io->dmac_dev;
1322
1323
for (substream = rtd->pcm->streams[stream].substream;
1324
substream;
1325
substream = substream->next) {
1326
snd_pcm_set_managed_buffer(substream,
1327
SNDRV_DMA_TYPE_DEV,
1328
dev,
1329
PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1330
}
1331
1332
return 0;
1333
}
1334
1335
static int rsnd_soc_dai_pcm_new(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
1336
{
1337
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1338
int ret;
1339
1340
ret = rsnd_dai_call(pcm_new, &rdai->playback, rtd);
1341
if (ret)
1342
return ret;
1343
1344
ret = rsnd_dai_call(pcm_new, &rdai->capture, rtd);
1345
if (ret)
1346
return ret;
1347
1348
ret = rsnd_preallocate_pages(rtd, &rdai->playback,
1349
SNDRV_PCM_STREAM_PLAYBACK);
1350
if (ret)
1351
return ret;
1352
1353
ret = rsnd_preallocate_pages(rtd, &rdai->capture,
1354
SNDRV_PCM_STREAM_CAPTURE);
1355
if (ret)
1356
return ret;
1357
1358
return 0;
1359
}
1360
1361
static const struct snd_soc_dai_ops rsnd_soc_dai_ops = {
1362
.pcm_new = rsnd_soc_dai_pcm_new,
1363
.startup = rsnd_soc_dai_startup,
1364
.shutdown = rsnd_soc_dai_shutdown,
1365
.trigger = rsnd_soc_dai_trigger,
1366
.set_fmt = rsnd_soc_dai_set_fmt,
1367
.set_tdm_slot = rsnd_soc_set_dai_tdm_slot,
1368
.prepare = rsnd_soc_dai_prepare,
1369
.auto_selectable_formats = rsnd_soc_dai_formats,
1370
.num_auto_selectable_formats = ARRAY_SIZE(rsnd_soc_dai_formats),
1371
};
1372
1373
static void __rsnd_dai_probe(struct rsnd_priv *priv,
1374
struct device_node *dai_np,
1375
struct device_node *node_np,
1376
uint32_t node_arg,
1377
int dai_i)
1378
{
1379
struct rsnd_dai_stream *io_playback;
1380
struct rsnd_dai_stream *io_capture;
1381
struct snd_soc_dai_driver *drv;
1382
struct rsnd_dai *rdai;
1383
struct device *dev = rsnd_priv_to_dev(priv);
1384
int playback_exist = 0, capture_exist = 0;
1385
int io_i;
1386
1387
rdai = rsnd_rdai_get(priv, dai_i);
1388
drv = rsnd_daidrv_get(priv, dai_i);
1389
io_playback = &rdai->playback;
1390
io_capture = &rdai->capture;
1391
1392
snprintf(rdai->name, RSND_DAI_NAME_SIZE, "rsnd-dai.%d", dai_i);
1393
1394
/* for multi Component */
1395
rdai->dai_args.np = node_np;
1396
rdai->dai_args.args_count = 1;
1397
rdai->dai_args.args[0] = node_arg;
1398
1399
rdai->priv = priv;
1400
drv->name = rdai->name;
1401
drv->ops = &rsnd_soc_dai_ops;
1402
drv->id = dai_i;
1403
drv->dai_args = &rdai->dai_args;
1404
1405
io_playback->rdai = rdai;
1406
io_capture->rdai = rdai;
1407
rsnd_rdai_channels_set(rdai, 2); /* default 2ch */
1408
rsnd_rdai_ssi_lane_set(rdai, 1); /* default 1lane */
1409
rsnd_rdai_width_set(rdai, 32); /* default 32bit width */
1410
1411
for (io_i = 0;; io_i++) {
1412
struct device_node *playback = of_parse_phandle(dai_np, "playback", io_i);
1413
struct device_node *capture = of_parse_phandle(dai_np, "capture", io_i);
1414
1415
if (!playback && !capture)
1416
break;
1417
1418
if (io_i == 0) {
1419
/* check whether playback/capture property exists */
1420
if (playback)
1421
playback_exist = 1;
1422
if (capture)
1423
capture_exist = 1;
1424
}
1425
1426
rsnd_parse_connect_ssi(rdai, playback, capture);
1427
rsnd_parse_connect_ssiu(rdai, playback, capture);
1428
rsnd_parse_connect_src(rdai, playback, capture);
1429
rsnd_parse_connect_ctu(rdai, playback, capture);
1430
rsnd_parse_connect_mix(rdai, playback, capture);
1431
rsnd_parse_connect_dvc(rdai, playback, capture);
1432
1433
of_node_put(playback);
1434
of_node_put(capture);
1435
}
1436
1437
if (playback_exist) {
1438
snprintf(io_playback->name, RSND_DAI_NAME_SIZE, "DAI%d Playback", dai_i);
1439
drv->playback.rates = RSND_RATES;
1440
drv->playback.formats = RSND_FMTS;
1441
drv->playback.channels_min = 2;
1442
drv->playback.channels_max = 8;
1443
drv->playback.stream_name = io_playback->name;
1444
}
1445
if (capture_exist) {
1446
snprintf(io_capture->name, RSND_DAI_NAME_SIZE, "DAI%d Capture", dai_i);
1447
drv->capture.rates = RSND_RATES;
1448
drv->capture.formats = RSND_FMTS;
1449
drv->capture.channels_min = 2;
1450
drv->capture.channels_max = 8;
1451
drv->capture.stream_name = io_capture->name;
1452
}
1453
1454
if (rsnd_ssi_is_pin_sharing(io_capture) ||
1455
rsnd_ssi_is_pin_sharing(io_playback)) {
1456
/* should have symmetric_rate if pin sharing */
1457
drv->symmetric_rate = 1;
1458
}
1459
1460
dev_dbg(dev, "%s (%s/%s)\n", rdai->name,
1461
rsnd_io_to_mod_ssi(io_playback) ? "play" : " -- ",
1462
rsnd_io_to_mod_ssi(io_capture) ? "capture" : " -- ");
1463
}
1464
1465
static int rsnd_dai_probe(struct rsnd_priv *priv)
1466
{
1467
struct snd_soc_dai_driver *rdrv;
1468
struct device *dev = rsnd_priv_to_dev(priv);
1469
struct device_node *np = dev->of_node;
1470
struct rsnd_dai *rdai;
1471
int nr = 0;
1472
int is_graph;
1473
int dai_i;
1474
1475
nr = rsnd_dai_of_node(priv, &is_graph);
1476
1477
/*
1478
* There is a case that it is used only for ADG (Sound Clock).
1479
* No DAI is not error
1480
*/
1481
if (!nr)
1482
return 0;
1483
1484
rdrv = devm_kcalloc(dev, nr, sizeof(*rdrv), GFP_KERNEL);
1485
rdai = devm_kcalloc(dev, nr, sizeof(*rdai), GFP_KERNEL);
1486
if (!rdrv || !rdai)
1487
return -ENOMEM;
1488
1489
priv->rdai_nr = nr;
1490
priv->daidrv = rdrv;
1491
priv->rdai = rdai;
1492
1493
/*
1494
* parse all dai
1495
*/
1496
dai_i = 0;
1497
if (is_graph) {
1498
struct device_node *dai_np_port;
1499
struct device_node *dai_np;
1500
1501
for_each_child_of_node_scoped(np, ports) {
1502
dai_np_port = rsnd_pick_endpoint_node_for_ports(ports, np);
1503
if (!dai_np_port)
1504
continue;
1505
1506
for_each_endpoint_of_node(dai_np_port, dai_np) {
1507
__rsnd_dai_probe(priv, dai_np, dai_np, 0, dai_i);
1508
if (!rsnd_is_gen1(priv) && !rsnd_is_gen2(priv)) {
1509
rdai = rsnd_rdai_get(priv, dai_i);
1510
1511
rsnd_parse_connect_graph(priv, &rdai->playback, dai_np);
1512
rsnd_parse_connect_graph(priv, &rdai->capture, dai_np);
1513
}
1514
dai_i++;
1515
}
1516
}
1517
} else {
1518
for_each_child_of_node_scoped(np, node) {
1519
if (!of_node_name_eq(node, RSND_NODE_DAI))
1520
continue;
1521
1522
for_each_child_of_node_scoped(node, dai_np) {
1523
__rsnd_dai_probe(priv, dai_np, np, dai_i, dai_i);
1524
if (!rsnd_is_gen1(priv) && !rsnd_is_gen2(priv)) {
1525
rdai = rsnd_rdai_get(priv, dai_i);
1526
1527
rsnd_parse_connect_simple(priv, &rdai->playback, dai_np);
1528
rsnd_parse_connect_simple(priv, &rdai->capture, dai_np);
1529
}
1530
dai_i++;
1531
}
1532
}
1533
}
1534
1535
return 0;
1536
}
1537
1538
/*
1539
* pcm ops
1540
*/
1541
static int rsnd_hw_update(struct snd_pcm_substream *substream,
1542
struct snd_pcm_hw_params *hw_params)
1543
{
1544
struct snd_soc_dai *dai = rsnd_substream_to_dai(substream);
1545
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1546
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
1547
struct rsnd_priv *priv = rsnd_io_to_priv(io);
1548
unsigned long flags;
1549
int ret;
1550
1551
spin_lock_irqsave(&priv->lock, flags);
1552
if (hw_params)
1553
ret = rsnd_dai_call(hw_params, io, substream, hw_params);
1554
else
1555
ret = rsnd_dai_call(hw_free, io, substream);
1556
spin_unlock_irqrestore(&priv->lock, flags);
1557
1558
return ret;
1559
}
1560
1561
static int rsnd_hw_params(struct snd_soc_component *component,
1562
struct snd_pcm_substream *substream,
1563
struct snd_pcm_hw_params *hw_params)
1564
{
1565
struct snd_soc_dai *dai = rsnd_substream_to_dai(substream);
1566
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1567
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
1568
struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1569
1570
/*
1571
* rsnd assumes that it might be used under DPCM if user want to use
1572
* channel / rate convert. Then, rsnd should be FE.
1573
* And then, this function will be called *after* BE settings.
1574
* this means, each BE already has fixuped hw_params.
1575
* see
1576
* dpcm_fe_dai_hw_params()
1577
* dpcm_be_dai_hw_params()
1578
*/
1579
io->converted_rate = 0;
1580
io->converted_chan = 0;
1581
if (fe->dai_link->dynamic) {
1582
struct rsnd_priv *priv = rsnd_io_to_priv(io);
1583
struct device *dev = rsnd_priv_to_dev(priv);
1584
struct snd_soc_dpcm *dpcm;
1585
int stream = substream->stream;
1586
1587
for_each_dpcm_be(fe, stream, dpcm) {
1588
struct snd_soc_pcm_runtime *be = dpcm->be;
1589
struct snd_pcm_hw_params *be_params = &be->dpcm[stream].hw_params;
1590
1591
if (params_channels(hw_params) != params_channels(be_params))
1592
io->converted_chan = params_channels(be_params);
1593
if (params_rate(hw_params) != params_rate(be_params))
1594
io->converted_rate = params_rate(be_params);
1595
}
1596
if (io->converted_chan)
1597
dev_dbg(dev, "convert channels = %d\n", io->converted_chan);
1598
if (io->converted_rate) {
1599
/*
1600
* SRC supports convert rates from params_rate(hw_params)/k_down
1601
* to params_rate(hw_params)*k_up, where k_up is always 6, and
1602
* k_down depends on number of channels and SRC unit.
1603
* So all SRC units can upsample audio up to 6 times regardless
1604
* its number of channels. And all SRC units can downsample
1605
* 2 channel audio up to 6 times too.
1606
*/
1607
int k_up = 6;
1608
int k_down = 6;
1609
int channel;
1610
struct rsnd_mod *src_mod = rsnd_io_to_mod_src(io);
1611
1612
dev_dbg(dev, "convert rate = %d\n", io->converted_rate);
1613
1614
channel = io->converted_chan ? io->converted_chan :
1615
params_channels(hw_params);
1616
1617
switch (rsnd_mod_id(src_mod)) {
1618
/*
1619
* SRC0 can downsample 4, 6 and 8 channel audio up to 4 times.
1620
* SRC1, SRC3 and SRC4 can downsample 4 channel audio
1621
* up to 4 times.
1622
* SRC1, SRC3 and SRC4 can downsample 6 and 8 channel audio
1623
* no more than twice.
1624
*/
1625
case 1:
1626
case 3:
1627
case 4:
1628
if (channel > 4) {
1629
k_down = 2;
1630
break;
1631
}
1632
fallthrough;
1633
case 0:
1634
if (channel > 2)
1635
k_down = 4;
1636
break;
1637
1638
/* Other SRC units do not support more than 2 channels */
1639
default:
1640
if (channel > 2)
1641
return -EINVAL;
1642
}
1643
1644
if (params_rate(hw_params) > io->converted_rate * k_down) {
1645
hw_param_interval(hw_params, SNDRV_PCM_HW_PARAM_RATE)->min =
1646
io->converted_rate * k_down;
1647
hw_param_interval(hw_params, SNDRV_PCM_HW_PARAM_RATE)->max =
1648
io->converted_rate * k_down;
1649
hw_params->cmask |= SNDRV_PCM_HW_PARAM_RATE;
1650
} else if (params_rate(hw_params) * k_up < io->converted_rate) {
1651
hw_param_interval(hw_params, SNDRV_PCM_HW_PARAM_RATE)->min =
1652
DIV_ROUND_UP(io->converted_rate, k_up);
1653
hw_param_interval(hw_params, SNDRV_PCM_HW_PARAM_RATE)->max =
1654
DIV_ROUND_UP(io->converted_rate, k_up);
1655
hw_params->cmask |= SNDRV_PCM_HW_PARAM_RATE;
1656
}
1657
1658
/*
1659
* TBD: Max SRC input and output rates also depend on number
1660
* of channels and SRC unit:
1661
* SRC1, SRC3 and SRC4 do not support more than 128kHz
1662
* for 6 channel and 96kHz for 8 channel audio.
1663
* Perhaps this function should return EINVAL if the input or
1664
* the output rate exceeds the limitation.
1665
*/
1666
}
1667
}
1668
1669
return rsnd_hw_update(substream, hw_params);
1670
}
1671
1672
static int rsnd_hw_free(struct snd_soc_component *component,
1673
struct snd_pcm_substream *substream)
1674
{
1675
return rsnd_hw_update(substream, NULL);
1676
}
1677
1678
static snd_pcm_uframes_t rsnd_pointer(struct snd_soc_component *component,
1679
struct snd_pcm_substream *substream)
1680
{
1681
struct snd_soc_dai *dai = rsnd_substream_to_dai(substream);
1682
struct rsnd_dai *rdai = rsnd_dai_to_rdai(dai);
1683
struct rsnd_dai_stream *io = rsnd_rdai_to_io(rdai, substream);
1684
snd_pcm_uframes_t pointer = 0;
1685
1686
rsnd_dai_call(pointer, io, &pointer);
1687
1688
return pointer;
1689
}
1690
1691
/*
1692
* snd_kcontrol
1693
*/
1694
static int rsnd_kctrl_info(struct snd_kcontrol *kctrl,
1695
struct snd_ctl_elem_info *uinfo)
1696
{
1697
struct rsnd_kctrl_cfg *cfg = snd_kcontrol_chip(kctrl);
1698
1699
if (cfg->texts) {
1700
uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1701
uinfo->count = cfg->size;
1702
uinfo->value.enumerated.items = cfg->max;
1703
if (uinfo->value.enumerated.item >= cfg->max)
1704
uinfo->value.enumerated.item = cfg->max - 1;
1705
strscpy(uinfo->value.enumerated.name,
1706
cfg->texts[uinfo->value.enumerated.item],
1707
sizeof(uinfo->value.enumerated.name));
1708
} else {
1709
uinfo->count = cfg->size;
1710
uinfo->value.integer.min = 0;
1711
uinfo->value.integer.max = cfg->max;
1712
uinfo->type = (cfg->max == 1) ?
1713
SNDRV_CTL_ELEM_TYPE_BOOLEAN :
1714
SNDRV_CTL_ELEM_TYPE_INTEGER;
1715
}
1716
1717
return 0;
1718
}
1719
1720
static int rsnd_kctrl_get(struct snd_kcontrol *kctrl,
1721
struct snd_ctl_elem_value *uc)
1722
{
1723
struct rsnd_kctrl_cfg *cfg = snd_kcontrol_chip(kctrl);
1724
int i;
1725
1726
for (i = 0; i < cfg->size; i++)
1727
if (cfg->texts)
1728
uc->value.enumerated.item[i] = cfg->val[i];
1729
else
1730
uc->value.integer.value[i] = cfg->val[i];
1731
1732
return 0;
1733
}
1734
1735
static int rsnd_kctrl_put(struct snd_kcontrol *kctrl,
1736
struct snd_ctl_elem_value *uc)
1737
{
1738
struct rsnd_kctrl_cfg *cfg = snd_kcontrol_chip(kctrl);
1739
int i, change = 0;
1740
1741
if (!cfg->accept(cfg->io))
1742
return 0;
1743
1744
for (i = 0; i < cfg->size; i++) {
1745
if (cfg->texts) {
1746
change |= (uc->value.enumerated.item[i] != cfg->val[i]);
1747
cfg->val[i] = uc->value.enumerated.item[i];
1748
} else {
1749
change |= (uc->value.integer.value[i] != cfg->val[i]);
1750
cfg->val[i] = uc->value.integer.value[i];
1751
}
1752
}
1753
1754
if (change && cfg->update)
1755
cfg->update(cfg->io, cfg->mod);
1756
1757
return change;
1758
}
1759
1760
int rsnd_kctrl_accept_anytime(struct rsnd_dai_stream *io)
1761
{
1762
return 1;
1763
}
1764
1765
struct rsnd_kctrl_cfg *rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m *cfg)
1766
{
1767
cfg->cfg.val = cfg->val;
1768
1769
return &cfg->cfg;
1770
}
1771
1772
struct rsnd_kctrl_cfg *rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s *cfg)
1773
{
1774
cfg->cfg.val = &cfg->val;
1775
1776
return &cfg->cfg;
1777
}
1778
1779
const char * const volume_ramp_rate[] = {
1780
"128 dB/1 step", /* 00000 */
1781
"64 dB/1 step", /* 00001 */
1782
"32 dB/1 step", /* 00010 */
1783
"16 dB/1 step", /* 00011 */
1784
"8 dB/1 step", /* 00100 */
1785
"4 dB/1 step", /* 00101 */
1786
"2 dB/1 step", /* 00110 */
1787
"1 dB/1 step", /* 00111 */
1788
"0.5 dB/1 step", /* 01000 */
1789
"0.25 dB/1 step", /* 01001 */
1790
"0.125 dB/1 step", /* 01010 = VOLUME_RAMP_MAX_MIX */
1791
"0.125 dB/2 steps", /* 01011 */
1792
"0.125 dB/4 steps", /* 01100 */
1793
"0.125 dB/8 steps", /* 01101 */
1794
"0.125 dB/16 steps", /* 01110 */
1795
"0.125 dB/32 steps", /* 01111 */
1796
"0.125 dB/64 steps", /* 10000 */
1797
"0.125 dB/128 steps", /* 10001 */
1798
"0.125 dB/256 steps", /* 10010 */
1799
"0.125 dB/512 steps", /* 10011 */
1800
"0.125 dB/1024 steps", /* 10100 */
1801
"0.125 dB/2048 steps", /* 10101 */
1802
"0.125 dB/4096 steps", /* 10110 */
1803
"0.125 dB/8192 steps", /* 10111 = VOLUME_RAMP_MAX_DVC */
1804
};
1805
1806
int rsnd_kctrl_new(struct rsnd_mod *mod,
1807
struct rsnd_dai_stream *io,
1808
struct snd_soc_pcm_runtime *rtd,
1809
const unsigned char *name,
1810
int (*accept)(struct rsnd_dai_stream *io),
1811
void (*update)(struct rsnd_dai_stream *io,
1812
struct rsnd_mod *mod),
1813
struct rsnd_kctrl_cfg *cfg,
1814
const char * const *texts,
1815
int size,
1816
u32 max)
1817
{
1818
struct snd_card *card = rtd->card->snd_card;
1819
struct snd_kcontrol *kctrl;
1820
struct snd_kcontrol_new knew = {
1821
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1822
.name = name,
1823
.info = rsnd_kctrl_info,
1824
.index = rtd->id,
1825
.get = rsnd_kctrl_get,
1826
.put = rsnd_kctrl_put,
1827
};
1828
int ret;
1829
1830
/*
1831
* 1) Avoid duplicate register for DVC with MIX case
1832
* 2) Allow duplicate register for MIX
1833
* 3) re-register if card was rebinded
1834
*/
1835
list_for_each_entry(kctrl, &card->controls, list) {
1836
struct rsnd_kctrl_cfg *c = kctrl->private_data;
1837
1838
if (c == cfg)
1839
return 0;
1840
}
1841
1842
if (size > RSND_MAX_CHANNELS)
1843
return -EINVAL;
1844
1845
kctrl = snd_ctl_new1(&knew, cfg);
1846
if (!kctrl)
1847
return -ENOMEM;
1848
1849
ret = snd_ctl_add(card, kctrl);
1850
if (ret < 0)
1851
return ret;
1852
1853
cfg->texts = texts;
1854
cfg->max = max;
1855
cfg->size = size;
1856
cfg->accept = accept;
1857
cfg->update = update;
1858
cfg->card = card;
1859
cfg->kctrl = kctrl;
1860
cfg->io = io;
1861
cfg->mod = mod;
1862
1863
return 0;
1864
}
1865
1866
/*
1867
* snd_soc_component
1868
*/
1869
static const struct snd_soc_component_driver rsnd_soc_component = {
1870
.name = "rsnd",
1871
.probe = rsnd_debugfs_probe,
1872
.hw_params = rsnd_hw_params,
1873
.hw_free = rsnd_hw_free,
1874
.pointer = rsnd_pointer,
1875
.legacy_dai_naming = 1,
1876
};
1877
1878
static int rsnd_rdai_continuance_probe(struct rsnd_priv *priv,
1879
struct rsnd_dai_stream *io)
1880
{
1881
int ret;
1882
1883
ret = rsnd_dai_call(probe, io, priv);
1884
if (ret == -EAGAIN) {
1885
struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
1886
struct rsnd_mod *mod;
1887
int i;
1888
1889
/*
1890
* Fallback to PIO mode
1891
*/
1892
1893
/*
1894
* call "remove" for SSI/SRC/DVC
1895
* SSI will be switch to PIO mode if it was DMA mode
1896
* see
1897
* rsnd_dma_init()
1898
* rsnd_ssi_fallback()
1899
*/
1900
rsnd_dai_call(remove, io, priv);
1901
1902
/*
1903
* remove all mod from io
1904
* and, re connect ssi
1905
*/
1906
for_each_rsnd_mod(i, mod, io)
1907
rsnd_dai_disconnect(mod, io, i);
1908
rsnd_dai_connect(ssi_mod, io, RSND_MOD_SSI);
1909
1910
/*
1911
* fallback
1912
*/
1913
rsnd_dai_call(fallback, io, priv);
1914
1915
/*
1916
* retry to "probe".
1917
* DAI has SSI which is PIO mode only now.
1918
*/
1919
ret = rsnd_dai_call(probe, io, priv);
1920
}
1921
1922
return ret;
1923
}
1924
1925
/*
1926
* rsnd probe
1927
*/
1928
static int rsnd_probe(struct platform_device *pdev)
1929
{
1930
struct rsnd_priv *priv;
1931
struct device *dev = &pdev->dev;
1932
struct rsnd_dai *rdai;
1933
int (*probe_func[])(struct rsnd_priv *priv) = {
1934
rsnd_gen_probe,
1935
rsnd_dma_probe,
1936
rsnd_ssi_probe,
1937
rsnd_ssiu_probe,
1938
rsnd_src_probe,
1939
rsnd_ctu_probe,
1940
rsnd_mix_probe,
1941
rsnd_dvc_probe,
1942
rsnd_cmd_probe,
1943
rsnd_adg_probe,
1944
rsnd_dai_probe,
1945
};
1946
int ret, i;
1947
int ci;
1948
1949
/*
1950
* init priv data
1951
*/
1952
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
1953
if (!priv)
1954
return -ENODEV;
1955
1956
priv->pdev = pdev;
1957
priv->flags = (unsigned long)of_device_get_match_data(dev);
1958
spin_lock_init(&priv->lock);
1959
1960
/*
1961
* init each module
1962
*/
1963
for (i = 0; i < ARRAY_SIZE(probe_func); i++) {
1964
ret = probe_func[i](priv);
1965
if (ret)
1966
return ret;
1967
}
1968
1969
for_each_rsnd_dai(rdai, priv, i) {
1970
ret = rsnd_rdai_continuance_probe(priv, &rdai->playback);
1971
if (ret)
1972
goto exit_snd_probe;
1973
1974
ret = rsnd_rdai_continuance_probe(priv, &rdai->capture);
1975
if (ret)
1976
goto exit_snd_probe;
1977
}
1978
1979
dev_set_drvdata(dev, priv);
1980
1981
/*
1982
* asoc register
1983
*/
1984
ci = 0;
1985
for (i = 0; priv->component_dais[i] > 0; i++) {
1986
int nr = priv->component_dais[i];
1987
1988
ret = devm_snd_soc_register_component(dev, &rsnd_soc_component,
1989
priv->daidrv + ci, nr);
1990
if (ret < 0) {
1991
dev_err(dev, "cannot snd component register\n");
1992
goto exit_snd_probe;
1993
}
1994
1995
ci += nr;
1996
}
1997
1998
pm_runtime_enable(dev);
1999
2000
dev_info(dev, "probed\n");
2001
return ret;
2002
2003
exit_snd_probe:
2004
for_each_rsnd_dai(rdai, priv, i) {
2005
rsnd_dai_call(remove, &rdai->playback, priv);
2006
rsnd_dai_call(remove, &rdai->capture, priv);
2007
}
2008
2009
/*
2010
* adg is very special mod which can't use rsnd_dai_call(remove),
2011
* and it registers ADG clock on probe.
2012
* It should be unregister if probe failed.
2013
* Mainly it is assuming -EPROBE_DEFER case
2014
*/
2015
rsnd_adg_remove(priv);
2016
2017
return ret;
2018
}
2019
2020
static void rsnd_remove(struct platform_device *pdev)
2021
{
2022
struct rsnd_priv *priv = dev_get_drvdata(&pdev->dev);
2023
struct rsnd_dai *rdai;
2024
void (*remove_func[])(struct rsnd_priv *priv) = {
2025
rsnd_ssi_remove,
2026
rsnd_ssiu_remove,
2027
rsnd_src_remove,
2028
rsnd_ctu_remove,
2029
rsnd_mix_remove,
2030
rsnd_dvc_remove,
2031
rsnd_cmd_remove,
2032
rsnd_adg_remove,
2033
};
2034
int i;
2035
2036
pm_runtime_disable(&pdev->dev);
2037
2038
for_each_rsnd_dai(rdai, priv, i) {
2039
int ret;
2040
2041
ret = rsnd_dai_call(remove, &rdai->playback, priv);
2042
if (ret)
2043
dev_warn(&pdev->dev, "Failed to remove playback dai #%d\n", i);
2044
2045
ret = rsnd_dai_call(remove, &rdai->capture, priv);
2046
if (ret)
2047
dev_warn(&pdev->dev, "Failed to remove capture dai #%d\n", i);
2048
}
2049
2050
for (i = 0; i < ARRAY_SIZE(remove_func); i++)
2051
remove_func[i](priv);
2052
}
2053
2054
static int rsnd_suspend(struct device *dev)
2055
{
2056
struct rsnd_priv *priv = dev_get_drvdata(dev);
2057
2058
rsnd_adg_clk_disable(priv);
2059
2060
return 0;
2061
}
2062
2063
static int rsnd_resume(struct device *dev)
2064
{
2065
struct rsnd_priv *priv = dev_get_drvdata(dev);
2066
2067
return rsnd_adg_clk_enable(priv);
2068
}
2069
2070
static const struct dev_pm_ops rsnd_pm_ops = {
2071
SYSTEM_SLEEP_PM_OPS(rsnd_suspend, rsnd_resume)
2072
};
2073
2074
static struct platform_driver rsnd_driver = {
2075
.driver = {
2076
.name = "rcar_sound",
2077
.pm = pm_ptr(&rsnd_pm_ops),
2078
.of_match_table = rsnd_of_match,
2079
},
2080
.probe = rsnd_probe,
2081
.remove = rsnd_remove,
2082
};
2083
module_platform_driver(rsnd_driver);
2084
2085
MODULE_LICENSE("GPL v2");
2086
MODULE_DESCRIPTION("Renesas R-Car audio driver");
2087
MODULE_AUTHOR("Kuninori Morimoto <[email protected]>");
2088
MODULE_ALIAS("platform:rcar-pcm-audio");
2089
2090