blob: 0d964a0a3e31af5318878723602f68bd5e7ecee1 [file] [log] [blame]
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +00001/*
2 * Renesas R-Car SSIU support
3 *
4 * Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include "rsnd.h"
11
12#define SSIU_NAME "ssiu"
13
14struct rsnd_ssiu {
15 struct rsnd_mod mod;
16};
17
18#define rsnd_ssiu_nr(priv) ((priv)->ssiu_nr)
19#define for_each_rsnd_ssiu(pos, priv, i) \
20 for (i = 0; \
21 (i < rsnd_ssiu_nr(priv)) && \
22 ((pos) = ((struct rsnd_ssiu *)(priv)->ssiu + i)); \
23 i++)
24
25static int rsnd_ssiu_init(struct rsnd_mod *mod,
26 struct rsnd_dai_stream *io,
27 struct rsnd_priv *priv)
28{
29 struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
Kuninori Morimoto4f5c6342016-02-18 08:18:54 +000030 u32 multi_ssi_slaves = rsnd_ssi_multi_slaves_runtime(io);
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000031 int use_busif = rsnd_ssi_use_busif(io);
32 int id = rsnd_mod_id(mod);
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000033 u32 mask1, val1;
34 u32 mask2, val2;
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000035
36 /*
37 * SSI_MODE0
38 */
39 rsnd_mod_bset(mod, SSI_MODE0, (1 << id), !use_busif << id);
40
41 /*
42 * SSI_MODE1
43 */
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000044 mask1 = (1 << 4) | (1 << 20); /* mask sync bit */
45 mask2 = (1 << 4); /* mask sync bit */
46 val1 = val2 = 0;
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000047 if (rsnd_ssi_is_pin_sharing(io)) {
48 int shift = -1;
49
50 switch (id) {
51 case 1:
52 shift = 0;
53 break;
54 case 2:
55 shift = 2;
56 break;
57 case 4:
58 shift = 16;
59 break;
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000060 default:
61 return -EINVAL;
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000062 }
63
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000064 mask1 |= 0x3 << shift;
65 val1 = rsnd_rdai_is_clk_master(rdai) ?
66 0x2 << shift : 0x1 << shift;
67
68 } else if (multi_ssi_slaves) {
69
70 mask2 |= 0x00000007;
71 mask1 |= 0x0000000f;
72
73 switch (multi_ssi_slaves) {
74 case 0x0206: /* SSI0/1/2/9 */
75 val2 = (1 << 4) | /* SSI0129 sync */
Dan Carpenter8012c982016-01-06 12:38:41 +030076 (rsnd_rdai_is_clk_master(rdai) ? 0x2 : 0x1);
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000077 /* fall through */
78 case 0x0006: /* SSI0/1/2 */
79 val1 = rsnd_rdai_is_clk_master(rdai) ?
80 0xa : 0x5;
81
82 if (!val2) /* SSI012 sync */
83 val1 |= (1 << 4);
84 }
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000085 }
86
Kuninori Morimotob4c83b12015-12-17 03:00:10 +000087 rsnd_mod_bset(mod, SSI_MODE1, mask1, val1);
88 rsnd_mod_bset(mod, SSI_MODE2, mask2, val2);
89
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +000090 return 0;
91}
92
93static struct rsnd_mod_ops rsnd_ssiu_ops_gen1 = {
94 .name = SSIU_NAME,
95 .init = rsnd_ssiu_init,
96};
97
98static int rsnd_ssiu_init_gen2(struct rsnd_mod *mod,
99 struct rsnd_dai_stream *io,
100 struct rsnd_priv *priv)
101{
102 int ret;
103
104 ret = rsnd_ssiu_init(mod, io, priv);
105 if (ret < 0)
106 return ret;
107
Kuninori Morimotoc1402842015-12-17 02:57:27 +0000108 if (rsnd_get_slot_width(io) >= 6) {
Kuninori Morimoto186fadc2015-11-30 08:54:03 +0000109 /*
110 * TDM Extend Mode
111 * see
112 * rsnd_ssi_config_init()
113 */
114 rsnd_mod_write(mod, SSI_MODE, 0x1);
115 }
116
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000117 if (rsnd_ssi_use_busif(io)) {
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000118 rsnd_mod_write(mod, SSI_BUSIF_ADINR,
Kuninori Morimotoc45f7262015-11-30 08:49:33 +0000119 rsnd_get_adinr_bit(mod, io) |
120 rsnd_get_adinr_chan(mod, io));
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000121 rsnd_mod_write(mod, SSI_BUSIF_MODE, 1);
Kuninori Morimoto135bb7d2016-02-25 05:52:13 +0000122 rsnd_mod_write(mod, SSI_BUSIF_DALIGN,
123 rsnd_get_dalign(mod, io));
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000124 }
125
126 return 0;
127}
128
129static int rsnd_ssiu_start_gen2(struct rsnd_mod *mod,
130 struct rsnd_dai_stream *io,
131 struct rsnd_priv *priv)
132{
Kuninori Morimotob4c83b12015-12-17 03:00:10 +0000133 if (!rsnd_ssi_use_busif(io))
134 return 0;
135
136 rsnd_mod_write(mod, SSI_CTRL, 0x1);
137
Kuninori Morimoto4f5c6342016-02-18 08:18:54 +0000138 if (rsnd_ssi_multi_slaves_runtime(io))
Kuninori Morimotob4c83b12015-12-17 03:00:10 +0000139 rsnd_mod_write(mod, SSI_CONTROL, 0x1);
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000140
141 return 0;
142}
143
144static int rsnd_ssiu_stop_gen2(struct rsnd_mod *mod,
145 struct rsnd_dai_stream *io,
146 struct rsnd_priv *priv)
147{
Kuninori Morimotob4c83b12015-12-17 03:00:10 +0000148 if (!rsnd_ssi_use_busif(io))
149 return 0;
150
151 rsnd_mod_write(mod, SSI_CTRL, 0);
152
Kuninori Morimoto4f5c6342016-02-18 08:18:54 +0000153 if (rsnd_ssi_multi_slaves_runtime(io))
Kuninori Morimotob4c83b12015-12-17 03:00:10 +0000154 rsnd_mod_write(mod, SSI_CONTROL, 0);
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000155
156 return 0;
157}
158
159static struct rsnd_mod_ops rsnd_ssiu_ops_gen2 = {
160 .name = SSIU_NAME,
161 .init = rsnd_ssiu_init_gen2,
162 .start = rsnd_ssiu_start_gen2,
163 .stop = rsnd_ssiu_stop_gen2,
164};
165
166static struct rsnd_mod *rsnd_ssiu_mod_get(struct rsnd_priv *priv, int id)
167{
168 if (WARN_ON(id < 0 || id >= rsnd_ssiu_nr(priv)))
169 id = 0;
170
171 return rsnd_mod_get((struct rsnd_ssiu *)(priv->ssiu) + id);
172}
173
174int rsnd_ssiu_attach(struct rsnd_dai_stream *io,
175 struct rsnd_mod *ssi_mod)
176{
177 struct rsnd_priv *priv = rsnd_io_to_priv(io);
178 struct rsnd_mod *mod = rsnd_ssiu_mod_get(priv, rsnd_mod_id(ssi_mod));
179
180 rsnd_mod_confirm_ssi(ssi_mod);
181
182 return rsnd_dai_connect(mod, io, mod->type);
183}
184
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000185int rsnd_ssiu_probe(struct rsnd_priv *priv)
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000186{
187 struct device *dev = rsnd_priv_to_dev(priv);
188 struct rsnd_ssiu *ssiu;
189 static struct rsnd_mod_ops *ops;
190 int i, nr, ret;
191
192 /* same number to SSI */
193 nr = priv->ssi_nr;
194 ssiu = devm_kzalloc(dev, sizeof(*ssiu) * nr, GFP_KERNEL);
195 if (!ssiu)
196 return -ENOMEM;
197
198 priv->ssiu = ssiu;
199 priv->ssiu_nr = nr;
200
201 if (rsnd_is_gen1(priv))
202 ops = &rsnd_ssiu_ops_gen1;
203 else
204 ops = &rsnd_ssiu_ops_gen2;
205
206 for_each_rsnd_ssiu(ssiu, priv, i) {
207 ret = rsnd_mod_init(priv, rsnd_mod_get(ssiu),
Kuninori Morimoto5ba17b422016-01-21 01:58:07 +0000208 ops, NULL, rsnd_mod_get_status,
209 RSND_MOD_SSIU, i);
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000210 if (ret)
211 return ret;
212 }
213
214 return 0;
215}
216
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000217void rsnd_ssiu_remove(struct rsnd_priv *priv)
Kuninori Morimotoc7f69ab2015-10-26 08:43:41 +0000218{
219 struct rsnd_ssiu *ssiu;
220 int i;
221
222 for_each_rsnd_ssiu(ssiu, priv, i) {
223 rsnd_mod_quit(rsnd_mod_get(ssiu));
224 }
225}