ASoC: rsnd: Get correct SCU ID
[platform/adaptation/renesas_rcar/renesas_kernel.git] / sound / soc / sh / rcar / rsnd.h
1 /*
2  * Renesas R-Car
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 #ifndef RSND_H
12 #define RSND_H
13
14 #include <linux/clk.h>
15 #include <linux/device.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/io.h>
18 #include <linux/list.h>
19 #include <linux/module.h>
20 #include <linux/sh_dma.h>
21 #include <linux/workqueue.h>
22 #include <sound/rcar_snd.h>
23 #include <sound/soc.h>
24 #include <sound/pcm_params.h>
25
26 /*
27  *      pseudo register
28  *
29  * The register address offsets SRU/SCU/SSIU on Gen1/Gen2 are very different.
30  * This driver uses pseudo register in order to hide it.
31  * see gen1/gen2 for detail
32  */
33 enum rsnd_reg {
34         /* SRU/SCU/SSIU */
35         RSND_REG_SSI_MODE0,
36         RSND_REG_SSI_MODE1,
37         RSND_REG_SRC_BUSIF_MODE,
38         RSND_REG_SRC_ROUTE_MODE0,
39         RSND_REG_SRC_SWRSR,
40         RSND_REG_SRC_SRCIR,
41         RSND_REG_SRC_ADINR,
42         RSND_REG_SRC_IFSCR,
43         RSND_REG_SRC_IFSVR,
44         RSND_REG_SRC_SRCCR,
45
46         /* ADG */
47         RSND_REG_BRRA,
48         RSND_REG_BRRB,
49         RSND_REG_SSICKR,
50         RSND_REG_AUDIO_CLK_SEL0,
51         RSND_REG_AUDIO_CLK_SEL1,
52
53         /* SSI */
54         RSND_REG_SSICR,
55         RSND_REG_SSISR,
56         RSND_REG_SSITDR,
57         RSND_REG_SSIRDR,
58         RSND_REG_SSIWSR,
59
60         /* SHARE see below */
61         RSND_REG_SHARE01,
62         RSND_REG_SHARE02,
63         RSND_REG_SHARE03,
64         RSND_REG_SHARE04,
65         RSND_REG_SHARE05,
66         RSND_REG_SHARE06,
67         RSND_REG_SHARE07,
68         RSND_REG_SHARE08,
69         RSND_REG_SHARE09,
70         RSND_REG_SHARE10,
71         RSND_REG_SHARE11,
72         RSND_REG_SHARE12,
73         RSND_REG_SHARE13,
74         RSND_REG_SHARE14,
75         RSND_REG_SHARE15,
76         RSND_REG_SHARE16,
77         RSND_REG_SHARE17,
78         RSND_REG_SHARE18,
79         RSND_REG_SHARE19,
80
81         RSND_REG_MAX,
82 };
83
84 /* Gen1 only */
85 #define RSND_REG_SRC_ROUTE_SEL          RSND_REG_SHARE01
86 #define RSND_REG_SRC_TMG_SEL0           RSND_REG_SHARE02
87 #define RSND_REG_SRC_TMG_SEL1           RSND_REG_SHARE03
88 #define RSND_REG_SRC_TMG_SEL2           RSND_REG_SHARE04
89 #define RSND_REG_SRC_ROUTE_CTRL         RSND_REG_SHARE05
90 #define RSND_REG_SRC_MNFSR              RSND_REG_SHARE06
91 #define RSND_REG_AUDIO_CLK_SEL3         RSND_REG_SHARE07
92 #define RSND_REG_AUDIO_CLK_SEL4         RSND_REG_SHARE08
93 #define RSND_REG_AUDIO_CLK_SEL5         RSND_REG_SHARE09
94
95 /* Gen2 only */
96 #define RSND_REG_SRC_CTRL               RSND_REG_SHARE01
97 #define RSND_REG_SSI_CTRL               RSND_REG_SHARE02
98 #define RSND_REG_SSI_BUSIF_MODE         RSND_REG_SHARE03
99 #define RSND_REG_SSI_BUSIF_ADINR        RSND_REG_SHARE04
100 #define RSND_REG_INT_ENABLE             RSND_REG_SHARE05
101 #define RSND_REG_SRC_BSDSR              RSND_REG_SHARE06
102 #define RSND_REG_SRC_BSISR              RSND_REG_SHARE07
103 #define RSND_REG_DIV_EN                 RSND_REG_SHARE08
104 #define RSND_REG_SRCIN_TIMSEL0          RSND_REG_SHARE09
105 #define RSND_REG_SRCIN_TIMSEL1          RSND_REG_SHARE10
106 #define RSND_REG_SRCIN_TIMSEL2          RSND_REG_SHARE11
107 #define RSND_REG_SRCIN_TIMSEL3          RSND_REG_SHARE12
108 #define RSND_REG_SRCIN_TIMSEL4          RSND_REG_SHARE13
109 #define RSND_REG_SRCOUT_TIMSEL0         RSND_REG_SHARE14
110 #define RSND_REG_SRCOUT_TIMSEL1         RSND_REG_SHARE15
111 #define RSND_REG_SRCOUT_TIMSEL2         RSND_REG_SHARE16
112 #define RSND_REG_SRCOUT_TIMSEL3         RSND_REG_SHARE17
113 #define RSND_REG_SRCOUT_TIMSEL4         RSND_REG_SHARE18
114 #define RSND_REG_AUDIO_CLK_SEL2         RSND_REG_SHARE19
115
116 struct rsnd_priv;
117 struct rsnd_mod;
118 struct rsnd_dai;
119 struct rsnd_dai_stream;
120
121 /*
122  *      R-Car basic functions
123  */
124 #define rsnd_mod_read(m, r) \
125         rsnd_read(rsnd_mod_to_priv(m), m, RSND_REG_##r)
126 #define rsnd_mod_write(m, r, d) \
127         rsnd_write(rsnd_mod_to_priv(m), m, RSND_REG_##r, d)
128 #define rsnd_mod_bset(m, r, s, d) \
129         rsnd_bset(rsnd_mod_to_priv(m), m, RSND_REG_##r, s, d)
130
131 u32 rsnd_read(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg);
132 void rsnd_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
133                 enum rsnd_reg reg, u32 data);
134 void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg,
135                     u32 mask, u32 data);
136
137 /*
138  *      R-Car DMA
139  */
140 struct rsnd_dma {
141         struct sh_dmae_slave    slave;
142         struct work_struct      work;
143         struct dma_chan         *chan;
144         enum dma_data_direction dir;
145
146         int submit_loop;
147         int offset; /* it cares A/B plane */
148 };
149
150 void rsnd_dma_start(struct rsnd_dma *dma);
151 void rsnd_dma_stop(struct rsnd_dma *dma);
152 int rsnd_dma_available(struct rsnd_dma *dma);
153 int rsnd_dma_init(struct rsnd_priv *priv, struct rsnd_dma *dma,
154         int is_play, int id);
155 void  rsnd_dma_quit(struct rsnd_priv *priv,
156                     struct rsnd_dma *dma);
157
158
159 /*
160  *      R-Car sound mod
161  */
162 enum rsnd_mod_type {
163         RSND_MOD_SCU = 0,
164         RSND_MOD_SSI,
165         RSND_MOD_MAX,
166 };
167
168 struct rsnd_mod_ops {
169         char *name;
170         int (*init)(struct rsnd_mod *mod,
171                     struct rsnd_dai *rdai,
172                     struct rsnd_dai_stream *io);
173         int (*quit)(struct rsnd_mod *mod,
174                     struct rsnd_dai *rdai,
175                     struct rsnd_dai_stream *io);
176         int (*start)(struct rsnd_mod *mod,
177                      struct rsnd_dai *rdai,
178                      struct rsnd_dai_stream *io);
179         int (*stop)(struct rsnd_mod *mod,
180                     struct rsnd_dai *rdai,
181                     struct rsnd_dai_stream *io);
182 };
183
184 struct rsnd_dai_stream;
185 struct rsnd_mod {
186         int id;
187         enum rsnd_mod_type type;
188         struct rsnd_priv *priv;
189         struct rsnd_mod_ops *ops;
190         struct rsnd_dma dma;
191         struct rsnd_dai_stream *io;
192 };
193
194 #define rsnd_mod_to_priv(mod) ((mod)->priv)
195 #define rsnd_mod_to_dma(mod) (&(mod)->dma)
196 #define rsnd_dma_to_mod(_dma) container_of((_dma), struct rsnd_mod, dma)
197 #define rsnd_mod_to_io(mod) ((mod)->io)
198 #define rsnd_mod_id(mod) ((mod)->id)
199
200 void rsnd_mod_init(struct rsnd_priv *priv,
201                    struct rsnd_mod *mod,
202                    struct rsnd_mod_ops *ops,
203                    enum rsnd_mod_type type,
204                    int id);
205 char *rsnd_mod_name(struct rsnd_mod *mod);
206
207 /*
208  *      R-Car sound DAI
209  */
210 #define RSND_DAI_NAME_SIZE      16
211 struct rsnd_dai_stream {
212         struct snd_pcm_substream *substream;
213         struct rsnd_mod *mod[RSND_MOD_MAX];
214         struct rsnd_dai_path_info *info; /* rcar_snd.h */
215         int byte_pos;
216         int period_pos;
217         int byte_per_period;
218         int next_period_byte;
219 };
220 #define rsnd_io_to_mod_ssi(io)  ((io)->mod[RSND_MOD_SSI])
221 #define rsnd_io_to_mod_scu(io)  ((io)->mod[RSND_MOD_SCU])
222
223 struct rsnd_dai {
224         char name[RSND_DAI_NAME_SIZE];
225         struct rsnd_dai_platform_info *info; /* rcar_snd.h */
226         struct rsnd_dai_stream playback;
227         struct rsnd_dai_stream capture;
228
229         unsigned int clk_master:1;
230         unsigned int bit_clk_inv:1;
231         unsigned int frm_clk_inv:1;
232         unsigned int sys_delay:1;
233         unsigned int data_alignment:1;
234 };
235
236 #define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
237 #define for_each_rsnd_dai(rdai, priv, i)                \
238         for (i = 0;                                     \
239              (i < rsnd_rdai_nr(priv)) &&                \
240              ((rdai) = rsnd_dai_get(priv, i));          \
241              i++)
242
243 struct rsnd_dai *rsnd_dai_get(struct rsnd_priv *priv, int id);
244 int rsnd_dai_is_play(struct rsnd_dai *rdai, struct rsnd_dai_stream *io);
245 int rsnd_dai_id(struct rsnd_priv *priv, struct rsnd_dai *rdai);
246 #define rsnd_dai_get_platform_info(rdai) ((rdai)->info)
247 #define rsnd_io_to_runtime(io) ((io)->substream->runtime)
248
249 void rsnd_dai_pointer_update(struct rsnd_dai_stream *io, int cnt);
250 int rsnd_dai_pointer_offset(struct rsnd_dai_stream *io, int additional);
251 #define rsnd_dai_is_clk_master(rdai) ((rdai)->clk_master)
252
253 /*
254  *      R-Car Gen1/Gen2
255  */
256 int rsnd_gen_probe(struct platform_device *pdev,
257                    struct rsnd_priv *priv);
258 void rsnd_gen_remove(struct platform_device *pdev,
259                      struct rsnd_priv *priv);
260 void __iomem *rsnd_gen_reg_get(struct rsnd_priv *priv,
261                                struct rsnd_mod *mod,
262                                enum rsnd_reg reg);
263 #define rsnd_is_gen1(s)         (((s)->info->flags & RSND_GEN_MASK) == RSND_GEN1)
264 #define rsnd_is_gen2(s)         (((s)->info->flags & RSND_GEN_MASK) == RSND_GEN2)
265
266 /*
267  *      R-Car ADG
268  */
269 int rsnd_adg_ssi_clk_stop(struct rsnd_mod *mod);
270 int rsnd_adg_ssi_clk_try_start(struct rsnd_mod *mod, unsigned int rate);
271 int rsnd_adg_probe(struct platform_device *pdev,
272                    struct rsnd_priv *priv);
273 void rsnd_adg_remove(struct platform_device *pdev,
274                    struct rsnd_priv *priv);
275 int rsnd_adg_set_convert_clk_gen1(struct rsnd_priv *priv,
276                                   struct rsnd_mod *mod,
277                                   unsigned int src_rate,
278                                   unsigned int dst_rate);
279 int rsnd_adg_set_convert_clk_gen2(struct rsnd_mod *mod,
280                                   struct rsnd_dai *rdai,
281                                   struct rsnd_dai_stream *io,
282                                   unsigned int src_rate,
283                                   unsigned int dst_rate);
284 int rsnd_adg_set_convert_timing_gen2(struct rsnd_mod *mod,
285                                      struct rsnd_dai *rdai,
286                                      struct rsnd_dai_stream *io);
287
288 /*
289  *      R-Car sound priv
290  */
291 struct rsnd_priv {
292
293         struct device *dev;
294         struct rcar_snd_info *info;
295         spinlock_t lock;
296
297         /*
298          * below value will be filled on rsnd_gen_probe()
299          */
300         void *gen;
301
302         /*
303          * below value will be filled on rsnd_scu_probe()
304          */
305         void *scu;
306         int scu_nr;
307
308         /*
309          * below value will be filled on rsnd_adg_probe()
310          */
311         void *adg;
312
313         /*
314          * below value will be filled on rsnd_ssi_probe()
315          */
316         void *ssi;
317         int ssi_nr;
318
319         /*
320          * below value will be filled on rsnd_dai_probe()
321          */
322         struct snd_soc_dai_driver *daidrv;
323         struct rsnd_dai *rdai;
324         int rdai_nr;
325 };
326
327 #define rsnd_priv_to_dev(priv)  ((priv)->dev)
328 #define rsnd_priv_to_info(priv) ((priv)->info)
329 #define rsnd_lock(priv, flags) spin_lock_irqsave(&priv->lock, flags)
330 #define rsnd_unlock(priv, flags) spin_unlock_irqrestore(&priv->lock, flags)
331
332 #define rsnd_info_is_playback(priv, type)                               \
333 ({                                                                      \
334         struct rcar_snd_info *info = rsnd_priv_to_info(priv);           \
335         int i, is_play = 0;                                             \
336         for (i = 0; i < info->dai_info_nr; i++) {                       \
337                 if (info->dai_info[i].playback.type == (type)->info) {  \
338                         is_play = 1;                                    \
339                         break;                                          \
340                 }                                                       \
341         }                                                               \
342         is_play;                                                        \
343 })
344
345 /*
346  *      R-Car SCU
347  */
348 int rsnd_scu_probe(struct platform_device *pdev,
349                    struct rsnd_priv *priv);
350 void rsnd_scu_remove(struct platform_device *pdev,
351                      struct rsnd_priv *priv);
352 struct rsnd_mod *rsnd_scu_mod_get(struct rsnd_priv *priv, int id);
353 unsigned int rsnd_scu_get_ssi_rate(struct rsnd_priv *priv,
354                                    struct rsnd_dai_stream *io,
355                                    struct snd_pcm_runtime *runtime);
356
357 #define rsnd_scu_nr(priv) ((priv)->scu_nr)
358
359 /*
360  *      R-Car SSI
361  */
362 int rsnd_ssi_probe(struct platform_device *pdev,
363                    struct rsnd_priv *priv);
364 void rsnd_ssi_remove(struct platform_device *pdev,
365                    struct rsnd_priv *priv);
366 struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id);
367 struct rsnd_mod *rsnd_ssi_mod_get_frm_dai(struct rsnd_priv *priv,
368                                           int dai_id, int is_play);
369 int rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod);
370 int rsnd_ssi_is_play(struct rsnd_mod *mod);
371
372 #endif