GNU Linux-libre 4.19.304-gnu1
[releases.git] / sound / soc / sh / rcar / rsnd.h
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Renesas R-Car
4 //
5 // Copyright (C) 2013 Renesas Solutions Corp.
6 // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7
8 #ifndef RSND_H
9 #define RSND_H
10
11 #include <linux/clk.h>
12 #include <linux/device.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/io.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/of_device.h>
18 #include <linux/of_graph.h>
19 #include <linux/of_irq.h>
20 #include <linux/sh_dma.h>
21 #include <linux/workqueue.h>
22 #include <sound/soc.h>
23 #include <sound/pcm_params.h>
24
25 #define RSND_GEN1_SRU   0
26 #define RSND_GEN1_ADG   1
27 #define RSND_GEN1_SSI   2
28
29 #define RSND_GEN2_SCU   0
30 #define RSND_GEN2_ADG   1
31 #define RSND_GEN2_SSIU  2
32 #define RSND_GEN2_SSI   3
33
34 #define RSND_BASE_MAX   4
35
36 /*
37  *      pseudo register
38  *
39  * The register address offsets SRU/SCU/SSIU on Gen1/Gen2 are very different.
40  * This driver uses pseudo register in order to hide it.
41  * see gen1/gen2 for detail
42  */
43 enum rsnd_reg {
44         /* SCU (MIX/CTU/DVC) */
45         RSND_REG_SRC_I_BUSIF_MODE,
46         RSND_REG_SRC_O_BUSIF_MODE,
47         RSND_REG_SRC_ROUTE_MODE0,
48         RSND_REG_SRC_SWRSR,
49         RSND_REG_SRC_SRCIR,
50         RSND_REG_SRC_ADINR,
51         RSND_REG_SRC_IFSCR,
52         RSND_REG_SRC_IFSVR,
53         RSND_REG_SRC_SRCCR,
54         RSND_REG_SRC_CTRL,
55         RSND_REG_SRC_BSDSR,
56         RSND_REG_SRC_BSISR,
57         RSND_REG_SRC_INT_ENABLE0,
58         RSND_REG_SRC_BUSIF_DALIGN,
59         RSND_REG_SRCIN_TIMSEL0,
60         RSND_REG_SRCIN_TIMSEL1,
61         RSND_REG_SRCIN_TIMSEL2,
62         RSND_REG_SRCIN_TIMSEL3,
63         RSND_REG_SRCIN_TIMSEL4,
64         RSND_REG_SRCOUT_TIMSEL0,
65         RSND_REG_SRCOUT_TIMSEL1,
66         RSND_REG_SRCOUT_TIMSEL2,
67         RSND_REG_SRCOUT_TIMSEL3,
68         RSND_REG_SRCOUT_TIMSEL4,
69         RSND_REG_SCU_SYS_STATUS0,
70         RSND_REG_SCU_SYS_STATUS1,
71         RSND_REG_SCU_SYS_INT_EN0,
72         RSND_REG_SCU_SYS_INT_EN1,
73         RSND_REG_CMD_CTRL,
74         RSND_REG_CMD_BUSIF_MODE,
75         RSND_REG_CMD_BUSIF_DALIGN,
76         RSND_REG_CMD_ROUTE_SLCT,
77         RSND_REG_CMDOUT_TIMSEL,
78         RSND_REG_CTU_SWRSR,
79         RSND_REG_CTU_CTUIR,
80         RSND_REG_CTU_ADINR,
81         RSND_REG_CTU_CPMDR,
82         RSND_REG_CTU_SCMDR,
83         RSND_REG_CTU_SV00R,
84         RSND_REG_CTU_SV01R,
85         RSND_REG_CTU_SV02R,
86         RSND_REG_CTU_SV03R,
87         RSND_REG_CTU_SV04R,
88         RSND_REG_CTU_SV05R,
89         RSND_REG_CTU_SV06R,
90         RSND_REG_CTU_SV07R,
91         RSND_REG_CTU_SV10R,
92         RSND_REG_CTU_SV11R,
93         RSND_REG_CTU_SV12R,
94         RSND_REG_CTU_SV13R,
95         RSND_REG_CTU_SV14R,
96         RSND_REG_CTU_SV15R,
97         RSND_REG_CTU_SV16R,
98         RSND_REG_CTU_SV17R,
99         RSND_REG_CTU_SV20R,
100         RSND_REG_CTU_SV21R,
101         RSND_REG_CTU_SV22R,
102         RSND_REG_CTU_SV23R,
103         RSND_REG_CTU_SV24R,
104         RSND_REG_CTU_SV25R,
105         RSND_REG_CTU_SV26R,
106         RSND_REG_CTU_SV27R,
107         RSND_REG_CTU_SV30R,
108         RSND_REG_CTU_SV31R,
109         RSND_REG_CTU_SV32R,
110         RSND_REG_CTU_SV33R,
111         RSND_REG_CTU_SV34R,
112         RSND_REG_CTU_SV35R,
113         RSND_REG_CTU_SV36R,
114         RSND_REG_CTU_SV37R,
115         RSND_REG_MIX_SWRSR,
116         RSND_REG_MIX_MIXIR,
117         RSND_REG_MIX_ADINR,
118         RSND_REG_MIX_MIXMR,
119         RSND_REG_MIX_MVPDR,
120         RSND_REG_MIX_MDBAR,
121         RSND_REG_MIX_MDBBR,
122         RSND_REG_MIX_MDBCR,
123         RSND_REG_MIX_MDBDR,
124         RSND_REG_MIX_MDBER,
125         RSND_REG_DVC_SWRSR,
126         RSND_REG_DVC_DVUIR,
127         RSND_REG_DVC_ADINR,
128         RSND_REG_DVC_DVUCR,
129         RSND_REG_DVC_ZCMCR,
130         RSND_REG_DVC_VOL0R,
131         RSND_REG_DVC_VOL1R,
132         RSND_REG_DVC_VOL2R,
133         RSND_REG_DVC_VOL3R,
134         RSND_REG_DVC_VOL4R,
135         RSND_REG_DVC_VOL5R,
136         RSND_REG_DVC_VOL6R,
137         RSND_REG_DVC_VOL7R,
138         RSND_REG_DVC_DVUER,
139         RSND_REG_DVC_VRCTR,
140         RSND_REG_DVC_VRPDR,
141         RSND_REG_DVC_VRDBR,
142
143         /* ADG */
144         RSND_REG_BRRA,
145         RSND_REG_BRRB,
146         RSND_REG_BRGCKR,
147         RSND_REG_DIV_EN,
148         RSND_REG_AUDIO_CLK_SEL0,
149         RSND_REG_AUDIO_CLK_SEL1,
150         RSND_REG_AUDIO_CLK_SEL2,
151
152         /* SSIU */
153         RSND_REG_SSI_MODE,
154         RSND_REG_SSI_MODE0,
155         RSND_REG_SSI_MODE1,
156         RSND_REG_SSI_MODE2,
157         RSND_REG_SSI_CONTROL,
158         RSND_REG_SSI_CTRL,
159         RSND_REG_SSI_BUSIF_MODE,
160         RSND_REG_SSI_BUSIF_ADINR,
161         RSND_REG_SSI_BUSIF_DALIGN,
162         RSND_REG_SSI_INT_ENABLE,
163         RSND_REG_SSI_SYS_STATUS0,
164         RSND_REG_SSI_SYS_STATUS1,
165         RSND_REG_SSI_SYS_STATUS2,
166         RSND_REG_SSI_SYS_STATUS3,
167         RSND_REG_SSI_SYS_STATUS4,
168         RSND_REG_SSI_SYS_STATUS5,
169         RSND_REG_SSI_SYS_STATUS6,
170         RSND_REG_SSI_SYS_STATUS7,
171         RSND_REG_HDMI0_SEL,
172         RSND_REG_HDMI1_SEL,
173
174         /* SSI */
175         RSND_REG_SSICR,
176         RSND_REG_SSISR,
177         RSND_REG_SSITDR,
178         RSND_REG_SSIRDR,
179         RSND_REG_SSIWSR,
180
181         RSND_REG_MAX,
182 };
183
184 struct rsnd_priv;
185 struct rsnd_mod;
186 struct rsnd_dai;
187 struct rsnd_dai_stream;
188
189 /*
190  *      R-Car basic functions
191  */
192 #define rsnd_mod_read(m, r) \
193         rsnd_read(rsnd_mod_to_priv(m), m, RSND_REG_##r)
194 #define rsnd_mod_write(m, r, d) \
195         rsnd_write(rsnd_mod_to_priv(m), m, RSND_REG_##r, d)
196 #define rsnd_mod_bset(m, r, s, d) \
197         rsnd_bset(rsnd_mod_to_priv(m), m, RSND_REG_##r, s, d)
198
199 u32 rsnd_read(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg);
200 void rsnd_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
201                 enum rsnd_reg reg, u32 data);
202 void rsnd_force_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
203                 enum rsnd_reg reg, u32 data);
204 void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg,
205                     u32 mask, u32 data);
206 u32 rsnd_get_adinr_bit(struct rsnd_mod *mod, struct rsnd_dai_stream *io);
207 u32 rsnd_get_dalign(struct rsnd_mod *mod, struct rsnd_dai_stream *io);
208 u32 rsnd_get_busif_shift(struct rsnd_dai_stream *io, struct rsnd_mod *mod);
209
210 /*
211  *      R-Car DMA
212  */
213 int rsnd_dma_attach(struct rsnd_dai_stream *io,
214                     struct rsnd_mod *mod, struct rsnd_mod **dma_mod);
215 int rsnd_dma_probe(struct rsnd_priv *priv);
216 struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
217                                           struct rsnd_mod *mod, char *name);
218
219 /*
220  *      R-Car sound mod
221  */
222 enum rsnd_mod_type {
223         RSND_MOD_AUDMAPP,
224         RSND_MOD_AUDMA,
225         RSND_MOD_DVC,
226         RSND_MOD_MIX,
227         RSND_MOD_CTU,
228         RSND_MOD_CMD,
229         RSND_MOD_SRC,
230         RSND_MOD_SSIM3,         /* SSI multi 3 */
231         RSND_MOD_SSIM2,         /* SSI multi 2 */
232         RSND_MOD_SSIM1,         /* SSI multi 1 */
233         RSND_MOD_SSIP,          /* SSI parent */
234         RSND_MOD_SSI,
235         RSND_MOD_SSIU,
236         RSND_MOD_MAX,
237 };
238
239 struct rsnd_mod_ops {
240         char *name;
241         struct dma_chan* (*dma_req)(struct rsnd_dai_stream *io,
242                                     struct rsnd_mod *mod);
243         int (*probe)(struct rsnd_mod *mod,
244                      struct rsnd_dai_stream *io,
245                      struct rsnd_priv *priv);
246         int (*remove)(struct rsnd_mod *mod,
247                       struct rsnd_dai_stream *io,
248                       struct rsnd_priv *priv);
249         int (*init)(struct rsnd_mod *mod,
250                     struct rsnd_dai_stream *io,
251                     struct rsnd_priv *priv);
252         int (*quit)(struct rsnd_mod *mod,
253                     struct rsnd_dai_stream *io,
254                     struct rsnd_priv *priv);
255         int (*start)(struct rsnd_mod *mod,
256                      struct rsnd_dai_stream *io,
257                      struct rsnd_priv *priv);
258         int (*stop)(struct rsnd_mod *mod,
259                     struct rsnd_dai_stream *io,
260                     struct rsnd_priv *priv);
261         int (*irq)(struct rsnd_mod *mod,
262                    struct rsnd_dai_stream *io,
263                    struct rsnd_priv *priv, int enable);
264         int (*pcm_new)(struct rsnd_mod *mod,
265                        struct rsnd_dai_stream *io,
266                        struct snd_soc_pcm_runtime *rtd);
267         int (*hw_params)(struct rsnd_mod *mod,
268                          struct rsnd_dai_stream *io,
269                          struct snd_pcm_substream *substream,
270                          struct snd_pcm_hw_params *hw_params);
271         int (*pointer)(struct rsnd_mod *mod,
272                        struct rsnd_dai_stream *io,
273                        snd_pcm_uframes_t *pointer);
274         int (*fallback)(struct rsnd_mod *mod,
275                         struct rsnd_dai_stream *io,
276                         struct rsnd_priv *priv);
277         int (*nolock_start)(struct rsnd_mod *mod,
278                     struct rsnd_dai_stream *io,
279                     struct rsnd_priv *priv);
280         int (*nolock_stop)(struct rsnd_mod *mod,
281                     struct rsnd_dai_stream *io,
282                     struct rsnd_priv *priv);
283         int (*prepare)(struct rsnd_mod *mod,
284                        struct rsnd_dai_stream *io,
285                        struct rsnd_priv *priv);
286 };
287
288 struct rsnd_dai_stream;
289 struct rsnd_mod {
290         int id;
291         enum rsnd_mod_type type;
292         struct rsnd_mod_ops *ops;
293         struct rsnd_priv *priv;
294         struct clk *clk;
295         u32 *(*get_status)(struct rsnd_dai_stream *io,
296                            struct rsnd_mod *mod,
297                            enum rsnd_mod_type type);
298         u32 status;
299 };
300 /*
301  * status
302  *
303  * 0xH0000CBA
304  *
305  * A    0: nolock_start 1: nolock_stop
306  * B    0: init         1: quit
307  * C    0: start        1: stop
308  *
309  * H is always called (see __rsnd_mod_call)
310  * H    0: probe        1: remove
311  * H    0: pcm_new
312  * H    0: fallback
313  * H    0: hw_params
314  * H    0: pointer
315  * H    0: prepare
316  */
317 #define __rsnd_mod_shift_nolock_start   0
318 #define __rsnd_mod_shift_nolock_stop    0
319 #define __rsnd_mod_shift_init           4
320 #define __rsnd_mod_shift_quit           4
321 #define __rsnd_mod_shift_start          8
322 #define __rsnd_mod_shift_stop           8
323 #define __rsnd_mod_shift_probe          28 /* always called */
324 #define __rsnd_mod_shift_remove         28 /* always called */
325 #define __rsnd_mod_shift_irq            28 /* always called */
326 #define __rsnd_mod_shift_pcm_new        28 /* always called */
327 #define __rsnd_mod_shift_fallback       28 /* always called */
328 #define __rsnd_mod_shift_hw_params      28 /* always called */
329 #define __rsnd_mod_shift_pointer        28 /* always called */
330 #define __rsnd_mod_shift_prepare        28 /* always called */
331
332 #define __rsnd_mod_add_probe            0
333 #define __rsnd_mod_add_remove           0
334 #define __rsnd_mod_add_nolock_start      1
335 #define __rsnd_mod_add_nolock_stop      -1
336 #define __rsnd_mod_add_init              1
337 #define __rsnd_mod_add_quit             -1
338 #define __rsnd_mod_add_start             1
339 #define __rsnd_mod_add_stop             -1
340 #define __rsnd_mod_add_irq              0
341 #define __rsnd_mod_add_pcm_new          0
342 #define __rsnd_mod_add_fallback         0
343 #define __rsnd_mod_add_hw_params        0
344 #define __rsnd_mod_add_pointer          0
345 #define __rsnd_mod_add_prepare          0
346
347 #define __rsnd_mod_call_probe           0
348 #define __rsnd_mod_call_remove          0
349 #define __rsnd_mod_call_init            0
350 #define __rsnd_mod_call_quit            1
351 #define __rsnd_mod_call_start           0
352 #define __rsnd_mod_call_stop            1
353 #define __rsnd_mod_call_irq             0
354 #define __rsnd_mod_call_pcm_new         0
355 #define __rsnd_mod_call_fallback        0
356 #define __rsnd_mod_call_hw_params       0
357 #define __rsnd_mod_call_pointer         0
358 #define __rsnd_mod_call_nolock_start    0
359 #define __rsnd_mod_call_nolock_stop     1
360 #define __rsnd_mod_call_prepare         0
361
362 #define rsnd_mod_to_priv(mod)   ((mod)->priv)
363 #define rsnd_mod_name(mod)      ((mod)->ops->name)
364 #define rsnd_mod_id(mod)        ((mod)->id)
365 #define rsnd_mod_power_on(mod)  clk_enable((mod)->clk)
366 #define rsnd_mod_power_off(mod) clk_disable((mod)->clk)
367 #define rsnd_mod_get(ip)        (&(ip)->mod)
368
369 int rsnd_mod_init(struct rsnd_priv *priv,
370                   struct rsnd_mod *mod,
371                   struct rsnd_mod_ops *ops,
372                   struct clk *clk,
373                   u32* (*get_status)(struct rsnd_dai_stream *io,
374                                      struct rsnd_mod *mod,
375                                      enum rsnd_mod_type type),
376                   enum rsnd_mod_type type,
377                   int id);
378 void rsnd_mod_quit(struct rsnd_mod *mod);
379 struct dma_chan *rsnd_mod_dma_req(struct rsnd_dai_stream *io,
380                                   struct rsnd_mod *mod);
381 void rsnd_mod_interrupt(struct rsnd_mod *mod,
382                         void (*callback)(struct rsnd_mod *mod,
383                                          struct rsnd_dai_stream *io));
384 u32 *rsnd_mod_get_status(struct rsnd_dai_stream *io,
385                          struct rsnd_mod *mod,
386                          enum rsnd_mod_type type);
387 struct rsnd_mod *rsnd_mod_next(int *iterator,
388                                struct rsnd_dai_stream *io,
389                                enum rsnd_mod_type *array,
390                                int array_size);
391 #define for_each_rsnd_mod(iterator, pos, io)                            \
392         for (iterator = 0;                                              \
393              (pos = rsnd_mod_next(&iterator, io, NULL, 0)); iterator++)
394 #define for_each_rsnd_mod_arrays(iterator, pos, io, array, size)        \
395         for (iterator = 0;                                              \
396              (pos = rsnd_mod_next(&iterator, io, array, size)); iterator++)
397 #define for_each_rsnd_mod_array(iterator, pos, io, array)               \
398         for_each_rsnd_mod_arrays(iterator, pos, io, array, ARRAY_SIZE(array))
399
400 void rsnd_parse_connect_common(struct rsnd_dai *rdai,
401                 struct rsnd_mod* (*mod_get)(struct rsnd_priv *priv, int id),
402                 struct device_node *node,
403                 struct device_node *playback,
404                 struct device_node *capture);
405
406 #define rsnd_runtime_channel_original(io) \
407         rsnd_runtime_channel_original_with_params(io, NULL)
408 int rsnd_runtime_channel_original_with_params(struct rsnd_dai_stream *io,
409                                 struct snd_pcm_hw_params *params);
410 #define rsnd_runtime_channel_after_ctu(io)                      \
411         rsnd_runtime_channel_after_ctu_with_params(io, NULL)
412 int rsnd_runtime_channel_after_ctu_with_params(struct rsnd_dai_stream *io,
413                                 struct snd_pcm_hw_params *params);
414 #define rsnd_runtime_channel_for_ssi(io) \
415         rsnd_runtime_channel_for_ssi_with_params(io, NULL)
416 int rsnd_runtime_channel_for_ssi_with_params(struct rsnd_dai_stream *io,
417                                  struct snd_pcm_hw_params *params);
418 int rsnd_runtime_is_ssi_multi(struct rsnd_dai_stream *io);
419 int rsnd_runtime_is_ssi_tdm(struct rsnd_dai_stream *io);
420
421 /*
422  * DT
423  */
424 #define rsnd_parse_of_node(priv, node)                                  \
425         of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, node)
426 #define RSND_NODE_DAI   "rcar_sound,dai"
427 #define RSND_NODE_SSI   "rcar_sound,ssi"
428 #define RSND_NODE_SRC   "rcar_sound,src"
429 #define RSND_NODE_CTU   "rcar_sound,ctu"
430 #define RSND_NODE_MIX   "rcar_sound,mix"
431 #define RSND_NODE_DVC   "rcar_sound,dvc"
432
433 /*
434  *      R-Car sound DAI
435  */
436 #define RSND_DAI_NAME_SIZE      16
437 struct rsnd_dai_stream {
438         char name[RSND_DAI_NAME_SIZE];
439         struct snd_pcm_substream *substream;
440         struct rsnd_mod *mod[RSND_MOD_MAX];
441         struct rsnd_mod *dma;
442         struct rsnd_dai *rdai;
443         struct device *dmac_dev; /* for IPMMU */
444         u32 parent_ssi_status;
445 };
446 #define rsnd_io_to_mod(io, i)   ((i) < RSND_MOD_MAX ? (io)->mod[(i)] : NULL)
447 #define rsnd_io_to_mod_ssi(io)  rsnd_io_to_mod((io), RSND_MOD_SSI)
448 #define rsnd_io_to_mod_ssiu(io) rsnd_io_to_mod((io), RSND_MOD_SSIU)
449 #define rsnd_io_to_mod_ssip(io) rsnd_io_to_mod((io), RSND_MOD_SSIP)
450 #define rsnd_io_to_mod_src(io)  rsnd_io_to_mod((io), RSND_MOD_SRC)
451 #define rsnd_io_to_mod_ctu(io)  rsnd_io_to_mod((io), RSND_MOD_CTU)
452 #define rsnd_io_to_mod_mix(io)  rsnd_io_to_mod((io), RSND_MOD_MIX)
453 #define rsnd_io_to_mod_dvc(io)  rsnd_io_to_mod((io), RSND_MOD_DVC)
454 #define rsnd_io_to_mod_cmd(io)  rsnd_io_to_mod((io), RSND_MOD_CMD)
455 #define rsnd_io_to_rdai(io)     ((io)->rdai)
456 #define rsnd_io_to_priv(io)     (rsnd_rdai_to_priv(rsnd_io_to_rdai(io)))
457 #define rsnd_io_is_play(io)     (&rsnd_io_to_rdai(io)->playback == io)
458 #define rsnd_io_to_runtime(io) ((io)->substream ? \
459                                 (io)->substream->runtime : NULL)
460 int rsnd_io_is_working(struct rsnd_dai_stream *io);
461
462 struct rsnd_dai {
463         char name[RSND_DAI_NAME_SIZE];
464         struct rsnd_dai_stream playback;
465         struct rsnd_dai_stream capture;
466         struct rsnd_priv *priv;
467         struct snd_pcm_hw_constraint_list constraint;
468
469         int max_channels;       /* 2ch - 16ch */
470         int ssi_lane;           /* 1lane - 4lane */
471
472         unsigned int clk_master:1;
473         unsigned int bit_clk_inv:1;
474         unsigned int frm_clk_inv:1;
475         unsigned int sys_delay:1;
476         unsigned int data_alignment:1;
477 };
478
479 #define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
480 #define rsnd_rdai_is_clk_master(rdai) ((rdai)->clk_master)
481 #define rsnd_rdai_to_priv(rdai) ((rdai)->priv)
482 #define for_each_rsnd_dai(rdai, priv, i)                \
483         for (i = 0;                                     \
484              (i < rsnd_rdai_nr(priv)) &&                \
485              ((rdai) = rsnd_rdai_get(priv, i));         \
486              i++)
487
488 struct rsnd_dai *rsnd_rdai_get(struct rsnd_priv *priv, int id);
489
490 #define rsnd_rdai_channels_set(rdai, max_channels) \
491         rsnd_rdai_channels_ctrl(rdai, max_channels)
492 #define rsnd_rdai_channels_get(rdai) \
493         rsnd_rdai_channels_ctrl(rdai, 0)
494 int rsnd_rdai_channels_ctrl(struct rsnd_dai *rdai,
495                             int max_channels);
496
497 #define rsnd_rdai_ssi_lane_set(rdai, ssi_lane) \
498         rsnd_rdai_ssi_lane_ctrl(rdai, ssi_lane)
499 #define rsnd_rdai_ssi_lane_get(rdai) \
500         rsnd_rdai_ssi_lane_ctrl(rdai, 0)
501 int rsnd_rdai_ssi_lane_ctrl(struct rsnd_dai *rdai,
502                             int ssi_lane);
503
504 void rsnd_dai_period_elapsed(struct rsnd_dai_stream *io);
505 int rsnd_dai_connect(struct rsnd_mod *mod,
506                      struct rsnd_dai_stream *io,
507                      enum rsnd_mod_type type);
508
509 /*
510  *      R-Car Gen1/Gen2
511  */
512 int rsnd_gen_probe(struct rsnd_priv *priv);
513 void __iomem *rsnd_gen_reg_get(struct rsnd_priv *priv,
514                                struct rsnd_mod *mod,
515                                enum rsnd_reg reg);
516 phys_addr_t rsnd_gen_get_phy_addr(struct rsnd_priv *priv, int reg_id);
517
518 /*
519  *      R-Car ADG
520  */
521 int rsnd_adg_clk_query(struct rsnd_priv *priv, unsigned int rate);
522 int rsnd_adg_ssi_clk_stop(struct rsnd_mod *mod);
523 int rsnd_adg_ssi_clk_try_start(struct rsnd_mod *mod, unsigned int rate);
524 int rsnd_adg_probe(struct rsnd_priv *priv);
525 void rsnd_adg_remove(struct rsnd_priv *priv);
526 int rsnd_adg_set_src_timesel_gen2(struct rsnd_mod *src_mod,
527                                   struct rsnd_dai_stream *io,
528                                   unsigned int in_rate,
529                                   unsigned int out_rate);
530 int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *mod,
531                                  struct rsnd_dai_stream *io);
532 #define rsnd_adg_clk_enable(priv)       rsnd_adg_clk_control(priv, 1)
533 #define rsnd_adg_clk_disable(priv)      rsnd_adg_clk_control(priv, 0)
534 void rsnd_adg_clk_control(struct rsnd_priv *priv, int enable);
535
536 /*
537  *      R-Car sound priv
538  */
539 struct rsnd_priv {
540
541         struct platform_device *pdev;
542         spinlock_t lock;
543         unsigned long flags;
544 #define RSND_GEN_MASK   (0xF << 0)
545 #define RSND_GEN1       (1 << 0)
546 #define RSND_GEN2       (2 << 0)
547 #define RSND_GEN3       (3 << 0)
548
549         /*
550          * below value will be filled on rsnd_gen_probe()
551          */
552         void *gen;
553
554         /*
555          * below value will be filled on rsnd_adg_probe()
556          */
557         void *adg;
558
559         /*
560          * below value will be filled on rsnd_dma_probe()
561          */
562         void *dma;
563
564         /*
565          * below value will be filled on rsnd_ssi_probe()
566          */
567         void *ssi;
568         int ssi_nr;
569
570         /*
571          * below value will be filled on rsnd_ssiu_probe()
572          */
573         void *ssiu;
574         int ssiu_nr;
575
576         /*
577          * below value will be filled on rsnd_src_probe()
578          */
579         void *src;
580         int src_nr;
581
582         /*
583          * below value will be filled on rsnd_ctu_probe()
584          */
585         void *ctu;
586         int ctu_nr;
587
588         /*
589          * below value will be filled on rsnd_mix_probe()
590          */
591         void *mix;
592         int mix_nr;
593
594         /*
595          * below value will be filled on rsnd_dvc_probe()
596          */
597         void *dvc;
598         int dvc_nr;
599
600         /*
601          * below value will be filled on rsnd_cmd_probe()
602          */
603         void *cmd;
604         int cmd_nr;
605
606         /*
607          * below value will be filled on rsnd_dai_probe()
608          */
609         struct snd_soc_dai_driver *daidrv;
610         struct rsnd_dai *rdai;
611         int rdai_nr;
612 };
613
614 #define rsnd_priv_to_pdev(priv) ((priv)->pdev)
615 #define rsnd_priv_to_dev(priv)  (&(rsnd_priv_to_pdev(priv)->dev))
616
617 #define rsnd_is_gen1(priv)      (((priv)->flags & RSND_GEN_MASK) == RSND_GEN1)
618 #define rsnd_is_gen2(priv)      (((priv)->flags & RSND_GEN_MASK) == RSND_GEN2)
619 #define rsnd_is_gen3(priv)      (((priv)->flags & RSND_GEN_MASK) == RSND_GEN3)
620
621 #define rsnd_flags_has(p, f) ((p)->flags & (f))
622 #define rsnd_flags_set(p, f) ((p)->flags |= (f))
623 #define rsnd_flags_del(p, f) ((p)->flags &= ~(f))
624
625 /*
626  *      rsnd_kctrl
627  */
628 struct rsnd_kctrl_cfg {
629         unsigned int max;
630         unsigned int size;
631         u32 *val;
632         const char * const *texts;
633         int (*accept)(struct rsnd_dai_stream *io);
634         void (*update)(struct rsnd_dai_stream *io, struct rsnd_mod *mod);
635         struct rsnd_dai_stream *io;
636         struct snd_card *card;
637         struct snd_kcontrol *kctrl;
638         struct rsnd_mod *mod;
639 };
640
641 #define RSND_MAX_CHANNELS       8
642 struct rsnd_kctrl_cfg_m {
643         struct rsnd_kctrl_cfg cfg;
644         u32 val[RSND_MAX_CHANNELS];
645 };
646
647 struct rsnd_kctrl_cfg_s {
648         struct rsnd_kctrl_cfg cfg;
649         u32 val;
650 };
651 #define rsnd_kctrl_size(x)      ((x).cfg.size)
652 #define rsnd_kctrl_max(x)       ((x).cfg.max)
653 #define rsnd_kctrl_valm(x, i)   ((x).val[i])    /* = (x).cfg.val[i] */
654 #define rsnd_kctrl_vals(x)      ((x).val)       /* = (x).cfg.val[0] */
655
656 int rsnd_kctrl_accept_anytime(struct rsnd_dai_stream *io);
657 int rsnd_kctrl_accept_runtime(struct rsnd_dai_stream *io);
658 struct rsnd_kctrl_cfg *rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m *cfg);
659 struct rsnd_kctrl_cfg *rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s *cfg);
660 int rsnd_kctrl_new(struct rsnd_mod *mod,
661                    struct rsnd_dai_stream *io,
662                    struct snd_soc_pcm_runtime *rtd,
663                    const unsigned char *name,
664                    int (*accept)(struct rsnd_dai_stream *io),
665                    void (*update)(struct rsnd_dai_stream *io,
666                                   struct rsnd_mod *mod),
667                    struct rsnd_kctrl_cfg *cfg,
668                    const char * const *texts,
669                    int size,
670                    u32 max);
671
672 #define rsnd_kctrl_new_m(mod, io, rtd, name, accept, update, cfg, size, max) \
673         rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_m(cfg), \
674                        NULL, size, max)
675
676 #define rsnd_kctrl_new_s(mod, io, rtd, name, accept, update, cfg, max)  \
677         rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_s(cfg), \
678                        NULL, 1, max)
679
680 #define rsnd_kctrl_new_e(mod, io, rtd, name, accept, update, cfg, texts, size) \
681         rsnd_kctrl_new(mod, io, rtd, name, accept, update, rsnd_kctrl_init_s(cfg), \
682                        texts, 1, size)
683
684 extern const char * const volume_ramp_rate[];
685 #define VOLUME_RAMP_MAX_DVC     (0x17 + 1)
686 #define VOLUME_RAMP_MAX_MIX     (0x0a + 1)
687
688 /*
689  *      R-Car SSI
690  */
691 int rsnd_ssi_probe(struct rsnd_priv *priv);
692 void rsnd_ssi_remove(struct rsnd_priv *priv);
693 struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id);
694 int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod);
695 int rsnd_ssi_use_busif(struct rsnd_dai_stream *io);
696 u32 rsnd_ssi_multi_slaves_runtime(struct rsnd_dai_stream *io);
697
698 #define RSND_SSI_HDMI_PORT0     0xf0
699 #define RSND_SSI_HDMI_PORT1     0xf1
700 int rsnd_ssi_hdmi_port(struct rsnd_dai_stream *io);
701 void rsnd_ssi_parse_hdmi_connection(struct rsnd_priv *priv,
702                                     struct device_node *endpoint,
703                                     int dai_i);
704
705 #define rsnd_ssi_is_pin_sharing(io)     \
706         __rsnd_ssi_is_pin_sharing(rsnd_io_to_mod_ssi(io))
707 int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod);
708
709 #define rsnd_ssi_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_SSI)
710 void rsnd_parse_connect_ssi(struct rsnd_dai *rdai,
711                             struct device_node *playback,
712                             struct device_node *capture);
713 unsigned int rsnd_ssi_clk_query(struct rsnd_priv *priv,
714                        int param1, int param2, int *idx);
715
716 /*
717  *      R-Car SSIU
718  */
719 int rsnd_ssiu_attach(struct rsnd_dai_stream *io,
720                      struct rsnd_mod *mod);
721 int rsnd_ssiu_probe(struct rsnd_priv *priv);
722 void rsnd_ssiu_remove(struct rsnd_priv *priv);
723
724 /*
725  *      R-Car SRC
726  */
727 int rsnd_src_probe(struct rsnd_priv *priv);
728 void rsnd_src_remove(struct rsnd_priv *priv);
729 struct rsnd_mod *rsnd_src_mod_get(struct rsnd_priv *priv, int id);
730
731 #define rsnd_src_get_in_rate(priv, io) rsnd_src_get_rate(priv, io, 1)
732 #define rsnd_src_get_out_rate(priv, io) rsnd_src_get_rate(priv, io, 0)
733 unsigned int rsnd_src_get_rate(struct rsnd_priv *priv,
734                                struct rsnd_dai_stream *io,
735                                int is_in);
736
737 #define rsnd_src_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_SRC)
738 #define rsnd_parse_connect_src(rdai, playback, capture)                 \
739         rsnd_parse_connect_common(rdai, rsnd_src_mod_get,               \
740                                   rsnd_src_of_node(rsnd_rdai_to_priv(rdai)), \
741                                                    playback, capture)
742
743 /*
744  *      R-Car CTU
745  */
746 int rsnd_ctu_probe(struct rsnd_priv *priv);
747 void rsnd_ctu_remove(struct rsnd_priv *priv);
748 int rsnd_ctu_converted_channel(struct rsnd_mod *mod);
749 struct rsnd_mod *rsnd_ctu_mod_get(struct rsnd_priv *priv, int id);
750 #define rsnd_ctu_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_CTU)
751 #define rsnd_parse_connect_ctu(rdai, playback, capture)                 \
752         rsnd_parse_connect_common(rdai, rsnd_ctu_mod_get,               \
753                                   rsnd_ctu_of_node(rsnd_rdai_to_priv(rdai)), \
754                                                    playback, capture)
755
756 /*
757  *      R-Car MIX
758  */
759 int rsnd_mix_probe(struct rsnd_priv *priv);
760 void rsnd_mix_remove(struct rsnd_priv *priv);
761 struct rsnd_mod *rsnd_mix_mod_get(struct rsnd_priv *priv, int id);
762 #define rsnd_mix_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_MIX)
763 #define rsnd_parse_connect_mix(rdai, playback, capture)                 \
764         rsnd_parse_connect_common(rdai, rsnd_mix_mod_get,               \
765                                   rsnd_mix_of_node(rsnd_rdai_to_priv(rdai)), \
766                                                    playback, capture)
767
768 /*
769  *      R-Car DVC
770  */
771 int rsnd_dvc_probe(struct rsnd_priv *priv);
772 void rsnd_dvc_remove(struct rsnd_priv *priv);
773 struct rsnd_mod *rsnd_dvc_mod_get(struct rsnd_priv *priv, int id);
774 #define rsnd_dvc_of_node(priv) rsnd_parse_of_node(priv, RSND_NODE_DVC)
775 #define rsnd_parse_connect_dvc(rdai, playback, capture)                 \
776         rsnd_parse_connect_common(rdai, rsnd_dvc_mod_get,               \
777                                   rsnd_dvc_of_node(rsnd_rdai_to_priv(rdai)), \
778                                                    playback, capture)
779
780 /*
781  *      R-Car CMD
782  */
783 int rsnd_cmd_probe(struct rsnd_priv *priv);
784 void rsnd_cmd_remove(struct rsnd_priv *priv);
785 int rsnd_cmd_attach(struct rsnd_dai_stream *io, int id);
786
787 void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type);
788 #ifdef DEBUG
789 #define rsnd_mod_confirm_ssi(mssi)      rsnd_mod_make_sure(mssi, RSND_MOD_SSI)
790 #define rsnd_mod_confirm_src(msrc)      rsnd_mod_make_sure(msrc, RSND_MOD_SRC)
791 #define rsnd_mod_confirm_dvc(mdvc)      rsnd_mod_make_sure(mdvc, RSND_MOD_DVC)
792 #else
793 #define rsnd_mod_confirm_ssi(mssi)
794 #define rsnd_mod_confirm_src(msrc)
795 #define rsnd_mod_confirm_dvc(mdvc)
796 #endif
797
798 /*
799  * If you don't need interrupt status debug message,
800  * define RSND_DEBUG_NO_IRQ_STATUS as 1 on top of src.c/ssi.c
801  *
802  * #define RSND_DEBUG_NO_IRQ_STATUS 1
803  */
804 #define rsnd_dbg_irq_status(dev, param...)              \
805         if (!IS_BUILTIN(RSND_DEBUG_NO_IRQ_STATUS))      \
806                 dev_dbg(dev, param)
807
808 /*
809  * If you don't need rsnd_dai_call debug message,
810  * define RSND_DEBUG_NO_DAI_CALL as 1 on top of core.c
811  *
812  * #define RSND_DEBUG_NO_DAI_CALL 1
813  */
814 #define rsnd_dbg_dai_call(dev, param...)                \
815         if (!IS_BUILTIN(RSND_DEBUG_NO_DAI_CALL))        \
816                 dev_dbg(dev, param)
817
818 #endif