blob: 28965ef4f824a0117e94fc8c271b347858d0a5e6 [file] [log] [blame]
Kuninori Morimotof1407d52011-04-04 13:44:59 +09001/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/interrupt.h>
18
Paul Bollecc502bb2012-06-03 18:39:13 +020019#include "common.h"
20#include "mod.h"
Kuninori Morimotof1407d52011-04-04 13:44:59 +090021
22#define usbhs_priv_to_modinfo(priv) (&priv->mod_info)
Kuninori Morimotob002ff62011-04-28 16:41:20 +090023#define usbhs_mod_info_call(priv, func, param...) \
24({ \
25 struct usbhs_mod_info *info; \
26 info = usbhs_priv_to_modinfo(priv); \
27 !info->func ? 0 : \
28 info->func(param); \
29})
30
31/*
32 * autonomy
33 *
34 * these functions are used if platform doesn't have external phy.
35 * -> there is no "notify_hotplug" callback from platform
36 * -> call "notify_hotplug" by itself
37 * -> use own interrupt to connect/disconnect
38 * -> it mean module clock is always ON
39 * ~~~~~~~~~~~~~~~~~~~~~~~~~
40 */
41static int usbhsm_autonomy_get_vbus(struct platform_device *pdev)
42{
43 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
44
45 return VBSTS & usbhs_read(priv, INTSTS0);
46}
47
48static int usbhsm_autonomy_irq_vbus(struct usbhs_priv *priv,
49 struct usbhs_irq_state *irq_state)
50{
51 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
52
Kuninori Morimotob4fcea22011-10-24 02:25:48 -070053 renesas_usbhs_call_notify_hotplug(pdev);
54
55 return 0;
Kuninori Morimotob002ff62011-04-28 16:41:20 +090056}
57
58void usbhs_mod_autonomy_mode(struct usbhs_priv *priv)
59{
60 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
61
62 info->irq_vbus = usbhsm_autonomy_irq_vbus;
Kuninori Morimoto48298202011-10-12 21:02:22 -070063 priv->pfunc.get_vbus = usbhsm_autonomy_get_vbus;
Kuninori Morimotob002ff62011-04-28 16:41:20 +090064
65 usbhs_irq_callback_update(priv, NULL);
66}
Kuninori Morimotof1407d52011-04-04 13:44:59 +090067
68/*
69 * host / gadget functions
70 *
71 * renesas_usbhs host/gadget can register itself by below functions.
72 * these functions are called when probe
73 *
74 */
75void usbhs_mod_register(struct usbhs_priv *priv, struct usbhs_mod *mod, int id)
76{
77 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
78
79 info->mod[id] = mod;
80 mod->priv = priv;
81}
82
83struct usbhs_mod *usbhs_mod_get(struct usbhs_priv *priv, int id)
84{
85 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
86 struct usbhs_mod *ret = NULL;
87
88 switch (id) {
89 case USBHS_HOST:
90 case USBHS_GADGET:
91 ret = info->mod[id];
92 break;
93 }
94
95 return ret;
96}
97
Kuninori Morimoto0deb3e72011-10-10 22:02:45 -070098int usbhs_mod_is_host(struct usbhs_priv *priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +090099{
Kuninori Morimoto0deb3e72011-10-10 22:02:45 -0700100 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900101 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
102
103 if (!mod)
104 return -EINVAL;
105
106 return info->mod[USBHS_HOST] == mod;
107}
108
109struct usbhs_mod *usbhs_mod_get_current(struct usbhs_priv *priv)
110{
111 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
112
113 return info->curt;
114}
115
116int usbhs_mod_change(struct usbhs_priv *priv, int id)
117{
118 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
119 struct usbhs_mod *mod = NULL;
120 int ret = 0;
121
122 /* id < 0 mean no current */
123 switch (id) {
124 case USBHS_HOST:
125 case USBHS_GADGET:
126 mod = info->mod[id];
127 break;
128 default:
129 ret = -EINVAL;
130 }
131 info->curt = mod;
132
133 return ret;
134}
135
136static irqreturn_t usbhs_interrupt(int irq, void *data);
137int usbhs_mod_probe(struct usbhs_priv *priv)
138{
139 struct device *dev = usbhs_priv_to_dev(priv);
140 int ret;
141
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900142 /*
143 * install host/gadget driver
144 */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700145 ret = usbhs_mod_host_probe(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900146 if (ret < 0)
147 return ret;
148
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700149 ret = usbhs_mod_gadget_probe(priv);
150 if (ret < 0)
151 goto mod_init_host_err;
152
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900153 /* irq settings */
Kuninori Morimoto797b4e12012-10-29 00:44:41 -0700154 ret = devm_request_irq(dev, priv->irq, usbhs_interrupt,
Shimoda, Yoshihiro53069af2012-01-05 15:37:18 +0900155 priv->irqflags, dev_name(dev), priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900156 if (ret) {
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900157 dev_err(dev, "irq request err\n");
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900158 goto mod_init_gadget_err;
159 }
160
161 return ret;
162
163mod_init_gadget_err:
164 usbhs_mod_gadget_remove(priv);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700165mod_init_host_err:
166 usbhs_mod_host_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900167
168 return ret;
169}
170
171void usbhs_mod_remove(struct usbhs_priv *priv)
172{
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700173 usbhs_mod_host_remove(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900174 usbhs_mod_gadget_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900175}
176
177/*
178 * status functions
179 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900180int usbhs_status_get_device_state(struct usbhs_irq_state *irq_state)
181{
182 int state = irq_state->intsts0 & DVSQ_MASK;
183
184 switch (state) {
185 case POWER_STATE:
186 case DEFAULT_STATE:
187 case ADDRESS_STATE:
188 case CONFIGURATION_STATE:
189 return state;
190 }
191
192 return -EIO;
193}
194
195int usbhs_status_get_ctrl_stage(struct usbhs_irq_state *irq_state)
196{
197 /*
198 * return value
199 *
200 * IDLE_SETUP_STAGE
201 * READ_DATA_STAGE
202 * READ_STATUS_STAGE
203 * WRITE_DATA_STAGE
204 * WRITE_STATUS_STAGE
205 * NODATA_STATUS_STAGE
206 * SEQUENCE_ERROR
207 */
208 return (int)irq_state->intsts0 & CTSQ_MASK;
209}
210
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900211static int usbhs_status_get_each_irq(struct usbhs_priv *priv,
212 struct usbhs_irq_state *state)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900213{
214 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900215 u16 intenb0, intenb1;
Yoshihiro Shimodac4d81992014-08-22 20:14:00 +0900216 unsigned long flags;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900217
Yoshihiro Shimodac4d81992014-08-22 20:14:00 +0900218 /******************** spin lock ********************/
219 usbhs_lock(priv, flags);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900220 state->intsts0 = usbhs_read(priv, INTSTS0);
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900221 intenb0 = usbhs_read(priv, INTENB0);
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900222
223 if (usbhs_mod_is_host(priv)) {
224 state->intsts1 = usbhs_read(priv, INTSTS1);
225 intenb1 = usbhs_read(priv, INTENB1);
Arnd Bergmann672bfda2015-05-22 13:06:35 +0200226 } else {
227 state->intsts1 = intenb1 = 0;
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900228 }
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900229
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900230 /* mask */
Kuninori Morimoto5ea68d52011-04-28 16:41:07 +0900231 if (mod) {
232 state->brdysts = usbhs_read(priv, BRDYSTS);
233 state->nrdysts = usbhs_read(priv, NRDYSTS);
234 state->bempsts = usbhs_read(priv, BEMPSTS);
235
236 state->bempsts &= mod->irq_bempsts;
237 state->brdysts &= mod->irq_brdysts;
238 }
Yoshihiro Shimodac4d81992014-08-22 20:14:00 +0900239 usbhs_unlock(priv, flags);
240 /******************** spin unlock ******************/
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900241
242 /*
243 * Check whether the irq enable registers and the irq status are set
244 * when IRQF_SHARED is set.
245 */
246 if (priv->irqflags & IRQF_SHARED) {
247 if (!(intenb0 & state->intsts0) &&
248 !(intenb1 & state->intsts1) &&
249 !(state->bempsts) &&
250 !(state->brdysts))
251 return -EIO;
252 }
253
254 return 0;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900255}
256
257/*
258 * interrupt
259 */
260#define INTSTS0_MAGIC 0xF800 /* acknowledge magical interrupt sources */
261#define INTSTS1_MAGIC 0xA870 /* acknowledge magical interrupt sources */
262static irqreturn_t usbhs_interrupt(int irq, void *data)
263{
264 struct usbhs_priv *priv = data;
265 struct usbhs_irq_state irq_state;
266
Shimoda, Yoshihiro697d5c02012-08-20 18:39:23 +0900267 if (usbhs_status_get_each_irq(priv, &irq_state) < 0)
268 return IRQ_NONE;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900269
270 /*
271 * clear interrupt
272 *
273 * The hardware is _very_ picky to clear interrupt bit.
274 * Especially INTSTS0_MAGIC, INTSTS1_MAGIC value.
275 *
276 * see
277 * "Operation"
278 * - "Control Transfer (DCP)"
279 * - Function :: VALID bit should 0
280 */
281 usbhs_write(priv, INTSTS0, ~irq_state.intsts0 & INTSTS0_MAGIC);
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900282 if (usbhs_mod_is_host(priv))
283 usbhs_write(priv, INTSTS1, ~irq_state.intsts1 & INTSTS1_MAGIC);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900284
Yoshihiro Shimoda519d8bd2016-08-29 18:00:38 +0900285 /*
286 * The driver should not clear the xxxSTS after the line of
287 * "call irq callback functions" because each "if" statement is
288 * possible to call the callback function for avoiding any side effects.
289 */
290 if (irq_state.intsts0 & BRDY)
291 usbhs_write(priv, BRDYSTS, ~irq_state.brdysts);
Kuninori Morimotod5c6a1e2012-10-11 21:49:38 -0700292 usbhs_write(priv, NRDYSTS, ~irq_state.nrdysts);
Yoshihiro Shimoda519d8bd2016-08-29 18:00:38 +0900293 if (irq_state.intsts0 & BEMP)
294 usbhs_write(priv, BEMPSTS, ~irq_state.bempsts);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900295
296 /*
297 * call irq callback functions
298 * see also
299 * usbhs_irq_setting_update
300 */
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700301
302 /* INTSTS0 */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900303 if (irq_state.intsts0 & VBINT)
304 usbhs_mod_info_call(priv, irq_vbus, priv, &irq_state);
305
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900306 if (irq_state.intsts0 & DVST)
307 usbhs_mod_call(priv, irq_dev_state, priv, &irq_state);
308
309 if (irq_state.intsts0 & CTRT)
310 usbhs_mod_call(priv, irq_ctrl_stage, priv, &irq_state);
311
312 if (irq_state.intsts0 & BEMP)
313 usbhs_mod_call(priv, irq_empty, priv, &irq_state);
314
315 if (irq_state.intsts0 & BRDY)
316 usbhs_mod_call(priv, irq_ready, priv, &irq_state);
317
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900318 if (usbhs_mod_is_host(priv)) {
319 /* INTSTS1 */
320 if (irq_state.intsts1 & ATTCH)
321 usbhs_mod_call(priv, irq_attch, priv, &irq_state);
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700322
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900323 if (irq_state.intsts1 & DTCH)
324 usbhs_mod_call(priv, irq_dtch, priv, &irq_state);
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700325
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900326 if (irq_state.intsts1 & SIGN)
327 usbhs_mod_call(priv, irq_sign, priv, &irq_state);
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700328
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900329 if (irq_state.intsts1 & SACK)
330 usbhs_mod_call(priv, irq_sack, priv, &irq_state);
331 }
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900332 return IRQ_HANDLED;
333}
334
335void usbhs_irq_callback_update(struct usbhs_priv *priv, struct usbhs_mod *mod)
336{
337 u16 intenb0 = 0;
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700338 u16 intenb1 = 0;
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900339 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900340
Kuninori Morimoto651f5e42011-10-10 22:01:15 -0700341 /*
342 * BEMPENB/BRDYENB are picky.
343 * below method is required
344 *
345 * - clear INTSTS0
346 * - update BEMPENB/BRDYENB
347 * - update INTSTS0
348 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900349 usbhs_write(priv, INTENB0, 0);
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900350 if (usbhs_mod_is_host(priv))
351 usbhs_write(priv, INTENB1, 0);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900352
353 usbhs_write(priv, BEMPENB, 0);
354 usbhs_write(priv, BRDYENB, 0);
355
356 /*
357 * see also
358 * usbhs_interrupt
359 */
360
361 /*
362 * it don't enable DVSE (intenb0) here
363 * but "mod->irq_dev_state" will be called.
364 */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900365 if (info->irq_vbus)
366 intenb0 |= VBSE;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900367
Kuninori Morimoto5ea68d52011-04-28 16:41:07 +0900368 if (mod) {
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700369 /*
370 * INTSTS0
371 */
Kuninori Morimoto5ea68d52011-04-28 16:41:07 +0900372 if (mod->irq_ctrl_stage)
373 intenb0 |= CTRE;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900374
Kuninori Morimoto5ea68d52011-04-28 16:41:07 +0900375 if (mod->irq_empty && mod->irq_bempsts) {
376 usbhs_write(priv, BEMPENB, mod->irq_bempsts);
377 intenb0 |= BEMPE;
378 }
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900379
Kuninori Morimoto5ea68d52011-04-28 16:41:07 +0900380 if (mod->irq_ready && mod->irq_brdysts) {
381 usbhs_write(priv, BRDYENB, mod->irq_brdysts);
382 intenb0 |= BRDYE;
383 }
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700384
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900385 if (usbhs_mod_is_host(priv)) {
386 /*
387 * INTSTS1
388 */
389 if (mod->irq_attch)
390 intenb1 |= ATTCHE;
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700391
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900392 if (mod->irq_dtch)
393 intenb1 |= DTCHE;
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700394
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900395 if (mod->irq_sign)
396 intenb1 |= SIGNE;
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700397
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900398 if (mod->irq_sack)
399 intenb1 |= SACKE;
400 }
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900401 }
402
Kuninori Morimoto651f5e42011-10-10 22:01:15 -0700403 if (intenb0)
404 usbhs_write(priv, INTENB0, intenb0);
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700405
Nobuhiro Iwamatsu88a25e02015-01-09 09:28:41 +0900406 if (usbhs_mod_is_host(priv) && intenb1)
Kuninori Morimoto89c1d2e2011-10-10 22:06:57 -0700407 usbhs_write(priv, INTENB1, intenb1);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900408}