blob: c46e0afa54aeeeafbce657f1044400c048268fc1 [file] [log] [blame]
Kuninori Morimoto1536a962013-07-21 21:35:52 -07001/*
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>
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -070016#include <linux/dma-mapping.h>
Kuninori Morimoto1536a962013-07-21 21:35:52 -070017#include <linux/io.h>
18#include <linux/list.h>
19#include <linux/module.h>
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -070020#include <linux/sh_dma.h>
21#include <linux/workqueue.h>
Kuninori Morimoto1536a962013-07-21 21:35:52 -070022#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 */
Kuninori Morimoto33377442013-07-21 21:36:21 -070033enum rsnd_reg {
Kuninori Morimoto507d4662013-11-28 18:43:45 -080034 /* SRU/SCU/SSIU */
Kuninori Morimoto07539c12013-07-21 21:36:35 -070035 RSND_REG_SSI_MODE0,
36 RSND_REG_SSI_MODE1,
Kuninori Morimoto0290d2a2014-01-23 18:37:39 -080037 RSND_REG_SRC_BUSIF_MODE,
Kuninori Morimotoef749402013-12-19 19:28:51 -080038 RSND_REG_SRC_ROUTE_MODE0,
39 RSND_REG_SRC_SWRSR,
40 RSND_REG_SRC_SRCIR,
Kuninori Morimoto690ef812013-12-19 19:27:03 -080041 RSND_REG_SRC_ADINR,
Kuninori Morimotoef749402013-12-19 19:28:51 -080042 RSND_REG_SRC_IFSCR,
43 RSND_REG_SRC_IFSVR,
44 RSND_REG_SRC_SRCCR,
Kuninori Morimoto07539c12013-07-21 21:36:35 -070045
Kuninori Morimotodfc94032013-07-21 21:36:46 -070046 /* 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,
Kuninori Morimotodfc94032013-07-21 21:36:46 -070052
Kuninori Morimotoae5c3222013-07-21 21:36:57 -070053 /* SSI */
54 RSND_REG_SSICR,
55 RSND_REG_SSISR,
56 RSND_REG_SSITDR,
57 RSND_REG_SSIRDR,
58 RSND_REG_SSIWSR,
59
Kuninori Morimotoc82e1c82014-03-02 23:43:40 -080060 /* 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
Kuninori Morimoto33377442013-07-21 21:36:21 -070081 RSND_REG_MAX,
82};
83
Kuninori Morimotoc82e1c82014-03-02 23:43:40 -080084/* 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
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700116struct rsnd_priv;
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700117struct rsnd_mod;
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700118struct rsnd_dai;
119struct rsnd_dai_stream;
120
121/*
Kuninori Morimoto33377442013-07-21 21:36:21 -0700122 * 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
Kuninori Morimoto33377442013-07-21 21:36:21 -0700131u32 rsnd_read(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg);
132void rsnd_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
133 enum rsnd_reg reg, u32 data);
134void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg,
135 u32 mask, u32 data);
136
137/*
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700138 * R-Car DMA
139 */
140struct rsnd_dma {
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700141 struct sh_dmae_slave slave;
142 struct work_struct work;
143 struct dma_chan *chan;
144 enum dma_data_direction dir;
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700145
146 int submit_loop;
Kuninori Morimoto4686a0a2014-01-23 18:41:44 -0800147 int offset; /* it cares A/B plane */
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700148};
149
150void rsnd_dma_start(struct rsnd_dma *dma);
151void rsnd_dma_stop(struct rsnd_dma *dma);
152int rsnd_dma_available(struct rsnd_dma *dma);
153int rsnd_dma_init(struct rsnd_priv *priv, struct rsnd_dma *dma,
Kuninori Morimoto4686a0a2014-01-23 18:41:44 -0800154 int is_play, int id);
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700155void rsnd_dma_quit(struct rsnd_priv *priv,
156 struct rsnd_dma *dma);
157
158
159/*
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700160 * R-Car sound mod
161 */
Kuninori Morimotoa1260212014-03-02 23:42:55 -0800162enum rsnd_mod_type {
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800163 RSND_MOD_SRC = 0,
Kuninori Morimotoa1260212014-03-02 23:42:55 -0800164 RSND_MOD_SSI,
165 RSND_MOD_MAX,
166};
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700167
168struct rsnd_mod_ops {
169 char *name;
Kuninori Morimoto7681f6a2014-03-03 20:50:33 -0800170 int (*probe)(struct rsnd_mod *mod,
171 struct rsnd_dai *rdai,
172 struct rsnd_dai_stream *io);
173 int (*remove)(struct rsnd_mod *mod,
174 struct rsnd_dai *rdai,
175 struct rsnd_dai_stream *io);
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700176 int (*init)(struct rsnd_mod *mod,
177 struct rsnd_dai *rdai,
178 struct rsnd_dai_stream *io);
179 int (*quit)(struct rsnd_mod *mod,
180 struct rsnd_dai *rdai,
181 struct rsnd_dai_stream *io);
182 int (*start)(struct rsnd_mod *mod,
183 struct rsnd_dai *rdai,
184 struct rsnd_dai_stream *io);
185 int (*stop)(struct rsnd_mod *mod,
186 struct rsnd_dai *rdai,
187 struct rsnd_dai_stream *io);
188};
189
Kuninori Morimoto4686a0a2014-01-23 18:41:44 -0800190struct rsnd_dai_stream;
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700191struct rsnd_mod {
192 int id;
Kuninori Morimotoa1260212014-03-02 23:42:55 -0800193 enum rsnd_mod_type type;
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700194 struct rsnd_priv *priv;
195 struct rsnd_mod_ops *ops;
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700196 struct rsnd_dma dma;
Kuninori Morimoto4686a0a2014-01-23 18:41:44 -0800197 struct rsnd_dai_stream *io;
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700198};
199
200#define rsnd_mod_to_priv(mod) ((mod)->priv)
Kuninori Morimoto0a4d94c2013-07-28 18:58:50 -0700201#define rsnd_mod_to_dma(mod) (&(mod)->dma)
202#define rsnd_dma_to_mod(_dma) container_of((_dma), struct rsnd_mod, dma)
Kuninori Morimoto4686a0a2014-01-23 18:41:44 -0800203#define rsnd_mod_to_io(mod) ((mod)->io)
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700204#define rsnd_mod_id(mod) ((mod)->id)
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700205
206void rsnd_mod_init(struct rsnd_priv *priv,
207 struct rsnd_mod *mod,
208 struct rsnd_mod_ops *ops,
Kuninori Morimotoa1260212014-03-02 23:42:55 -0800209 enum rsnd_mod_type type,
Kuninori Morimotocdaa3cd2013-07-21 21:36:03 -0700210 int id);
211char *rsnd_mod_name(struct rsnd_mod *mod);
212
213/*
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700214 * R-Car sound DAI
215 */
216#define RSND_DAI_NAME_SIZE 16
217struct rsnd_dai_stream {
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700218 struct snd_pcm_substream *substream;
Kuninori Morimotoa1260212014-03-02 23:42:55 -0800219 struct rsnd_mod *mod[RSND_MOD_MAX];
Kuninori Morimoto389933d2014-03-03 20:50:00 -0800220 struct rsnd_dai_path_info *info; /* rcar_snd.h */
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700221 int byte_pos;
222 int period_pos;
223 int byte_per_period;
224 int next_period_byte;
225};
Kuninori Morimoto374e5422014-03-02 23:43:03 -0800226#define rsnd_io_to_mod_ssi(io) ((io)->mod[RSND_MOD_SSI])
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800227#define rsnd_io_to_mod_src(io) ((io)->mod[RSND_MOD_SRC])
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700228
229struct rsnd_dai {
230 char name[RSND_DAI_NAME_SIZE];
231 struct rsnd_dai_platform_info *info; /* rcar_snd.h */
232 struct rsnd_dai_stream playback;
233 struct rsnd_dai_stream capture;
234
Dan Carpentera3737732013-11-08 12:46:53 +0300235 unsigned int clk_master:1;
236 unsigned int bit_clk_inv:1;
237 unsigned int frm_clk_inv:1;
238 unsigned int sys_delay:1;
239 unsigned int data_alignment:1;
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700240};
241
Kuninori Morimotoecba9e72014-02-24 22:15:18 -0800242#define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700243#define for_each_rsnd_dai(rdai, priv, i) \
Kuninori Morimoto00463c112014-02-11 17:15:51 -0800244 for (i = 0; \
Kuninori Morimotoecba9e72014-02-24 22:15:18 -0800245 (i < rsnd_rdai_nr(priv)) && \
Kuninori Morimoto00463c112014-02-11 17:15:51 -0800246 ((rdai) = rsnd_dai_get(priv, i)); \
247 i++)
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700248
249struct rsnd_dai *rsnd_dai_get(struct rsnd_priv *priv, int id);
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700250int rsnd_dai_is_play(struct rsnd_dai *rdai, struct rsnd_dai_stream *io);
Kuninori Morimoto4b4dab82013-07-28 18:58:29 -0700251int rsnd_dai_id(struct rsnd_priv *priv, struct rsnd_dai *rdai);
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700252#define rsnd_dai_get_platform_info(rdai) ((rdai)->info)
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700253#define rsnd_io_to_runtime(io) ((io)->substream->runtime)
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700254
255void rsnd_dai_pointer_update(struct rsnd_dai_stream *io, int cnt);
256int rsnd_dai_pointer_offset(struct rsnd_dai_stream *io, int additional);
Kuninori Morimotoe779a202014-01-23 18:39:12 -0800257#define rsnd_dai_is_clk_master(rdai) ((rdai)->clk_master)
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700258
259/*
Kuninori Morimoto33377442013-07-21 21:36:21 -0700260 * R-Car Gen1/Gen2
261 */
262int rsnd_gen_probe(struct platform_device *pdev,
Kuninori Morimoto33377442013-07-21 21:36:21 -0700263 struct rsnd_priv *priv);
Kuninori Morimoto33377442013-07-21 21:36:21 -0700264void __iomem *rsnd_gen_reg_get(struct rsnd_priv *priv,
265 struct rsnd_mod *mod,
266 enum rsnd_reg reg);
Kuninori Morimotoc5d5a582013-10-11 00:07:01 -0700267#define rsnd_is_gen1(s) (((s)->info->flags & RSND_GEN_MASK) == RSND_GEN1)
268#define rsnd_is_gen2(s) (((s)->info->flags & RSND_GEN_MASK) == RSND_GEN2)
Kuninori Morimoto33377442013-07-21 21:36:21 -0700269
270/*
Kuninori Morimotodfc94032013-07-21 21:36:46 -0700271 * R-Car ADG
272 */
273int rsnd_adg_ssi_clk_stop(struct rsnd_mod *mod);
274int rsnd_adg_ssi_clk_try_start(struct rsnd_mod *mod, unsigned int rate);
275int rsnd_adg_probe(struct platform_device *pdev,
Kuninori Morimotodfc94032013-07-21 21:36:46 -0700276 struct rsnd_priv *priv);
Kuninori Morimoto28dc4b62014-01-23 18:41:10 -0800277int rsnd_adg_set_convert_clk_gen1(struct rsnd_priv *priv,
278 struct rsnd_mod *mod,
279 unsigned int src_rate,
280 unsigned int dst_rate);
Kuninori Morimoto629509c2014-01-23 18:42:00 -0800281int rsnd_adg_set_convert_clk_gen2(struct rsnd_mod *mod,
282 struct rsnd_dai *rdai,
283 struct rsnd_dai_stream *io,
284 unsigned int src_rate,
285 unsigned int dst_rate);
286int rsnd_adg_set_convert_timing_gen2(struct rsnd_mod *mod,
287 struct rsnd_dai *rdai,
288 struct rsnd_dai_stream *io);
Kuninori Morimotodfc94032013-07-21 21:36:46 -0700289
290/*
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700291 * R-Car sound priv
292 */
293struct rsnd_priv {
294
295 struct device *dev;
296 struct rcar_snd_info *info;
297 spinlock_t lock;
298
299 /*
Kuninori Morimoto33377442013-07-21 21:36:21 -0700300 * below value will be filled on rsnd_gen_probe()
301 */
302 void *gen;
303
304 /*
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800305 * below value will be filled on rsnd_src_probe()
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700306 */
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800307 void *src;
308 int src_nr;
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700309
310 /*
Kuninori Morimotodfc94032013-07-21 21:36:46 -0700311 * below value will be filled on rsnd_adg_probe()
312 */
313 void *adg;
314
315 /*
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700316 * below value will be filled on rsnd_ssi_probe()
317 */
Kuninori Morimotodd27d802014-01-23 18:39:40 -0800318 void *ssi;
319 int ssi_nr;
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700320
321 /*
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700322 * below value will be filled on rsnd_dai_probe()
323 */
324 struct snd_soc_dai_driver *daidrv;
325 struct rsnd_dai *rdai;
Kuninori Morimotoecba9e72014-02-24 22:15:18 -0800326 int rdai_nr;
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700327};
328
329#define rsnd_priv_to_dev(priv) ((priv)->dev)
Kuninori Morimoto5da39cf2014-02-24 22:15:00 -0800330#define rsnd_priv_to_info(priv) ((priv)->info)
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700331#define rsnd_lock(priv, flags) spin_lock_irqsave(&priv->lock, flags)
332#define rsnd_unlock(priv, flags) spin_unlock_irqrestore(&priv->lock, flags)
333
Kuninori Morimoto389933d2014-03-03 20:50:00 -0800334#define rsnd_info_is_playback(priv, type) \
335({ \
336 struct rcar_snd_info *info = rsnd_priv_to_info(priv); \
337 int i, is_play = 0; \
338 for (i = 0; i < info->dai_info_nr; i++) { \
339 if (info->dai_info[i].playback.type == (type)->info) { \
340 is_play = 1; \
341 break; \
342 } \
343 } \
344 is_play; \
345})
346
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700347/*
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800348 * R-Car SRC
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700349 */
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800350int rsnd_src_probe(struct platform_device *pdev,
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700351 struct rsnd_priv *priv);
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800352struct rsnd_mod *rsnd_src_mod_get(struct rsnd_priv *priv, int id);
353unsigned int rsnd_src_get_ssi_rate(struct rsnd_priv *priv,
Kuninori Morimoto374e5422014-03-02 23:43:03 -0800354 struct rsnd_dai_stream *io,
Kuninori Morimotoef749402013-12-19 19:28:51 -0800355 struct snd_pcm_runtime *runtime);
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800356int rsnd_src_ssi_mode_init(struct rsnd_mod *ssi_mod,
Kuninori Morimoto221bf522014-03-03 20:50:24 -0800357 struct rsnd_dai *rdai,
358 struct rsnd_dai_stream *io);
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800359int rsnd_src_enable_ssi_irq(struct rsnd_mod *ssi_mod,
Kuninori Morimotob8cc41e2014-03-03 20:50:08 -0800360 struct rsnd_dai *rdai,
361 struct rsnd_dai_stream *io);
Kuninori Morimotoef749402013-12-19 19:28:51 -0800362
Kuninori Morimotoba9c9492014-03-03 20:51:21 -0800363#define rsnd_src_nr(priv) ((priv)->src_nr)
Kuninori Morimoto07539c12013-07-21 21:36:35 -0700364
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700365/*
366 * R-Car SSI
367 */
368int rsnd_ssi_probe(struct platform_device *pdev,
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700369 struct rsnd_priv *priv);
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700370struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id);
Kuninori Morimoto4b4dab82013-07-28 18:58:29 -0700371struct rsnd_mod *rsnd_ssi_mod_get_frm_dai(struct rsnd_priv *priv,
372 int dai_id, int is_play);
Kuninori Morimoto7b5ce972014-01-23 18:39:32 -0800373int rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod);
Kuninori Morimoto32f27eb2014-01-23 18:41:17 -0800374int rsnd_ssi_is_play(struct rsnd_mod *mod);
Kuninori Morimotoae5c3222013-07-21 21:36:57 -0700375
Kuninori Morimoto1536a962013-07-21 21:35:52 -0700376#endif