blob: 576d925af77c6158d7dca7b36d2b7c6f18a7a641 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Neil Zhang277164f2011-12-20 13:20:22 +08002/*
3 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
4 * Author: Chao Xie <chao.xie@marvell.com>
5 * Neil Zhang <zhangwm@marvell.com>
Neil Zhang277164f2011-12-20 13:20:22 +08006 */
7
8#include <linux/module.h>
9#include <linux/kernel.h>
Neil Zhang277164f2011-12-20 13:20:22 +080010#include <linux/io.h>
Chunfeng Yunf158afe2020-09-21 14:13:33 +080011#include <linux/iopoll.h>
Neil Zhang277164f2011-12-20 13:20:22 +080012#include <linux/uaccess.h>
13#include <linux/device.h>
14#include <linux/proc_fs.h>
15#include <linux/clk.h>
16#include <linux/workqueue.h>
17#include <linux/platform_device.h>
18
19#include <linux/usb.h>
20#include <linux/usb/ch9.h>
21#include <linux/usb/otg.h>
22#include <linux/usb/gadget.h>
23#include <linux/usb/hcd.h>
24#include <linux/platform_data/mv_usb.h>
25
Felipe Balbi94ae9842013-03-07 17:37:59 +020026#include "phy-mv-usb.h"
Neil Zhang277164f2011-12-20 13:20:22 +080027
28#define DRIVER_DESC "Marvell USB OTG transceiver driver"
Neil Zhang277164f2011-12-20 13:20:22 +080029
30MODULE_DESCRIPTION(DRIVER_DESC);
Neil Zhang277164f2011-12-20 13:20:22 +080031MODULE_LICENSE("GPL");
32
33static const char driver_name[] = "mv-otg";
34
35static char *state_string[] = {
36 "undefined",
37 "b_idle",
38 "b_srp_init",
39 "b_peripheral",
40 "b_wait_acon",
41 "b_host",
42 "a_idle",
43 "a_wait_vrise",
44 "a_wait_bcon",
45 "a_host",
46 "a_suspend",
47 "a_peripheral",
48 "a_wait_vfall",
49 "a_vbus_err"
50};
51
Heikki Krogerusb1c711d2012-02-13 13:24:17 +020052static int mv_otg_set_vbus(struct usb_otg *otg, bool on)
Neil Zhang277164f2011-12-20 13:20:22 +080053{
Antoine Tenart19c1eac2014-10-30 18:41:14 +010054 struct mv_otg *mvotg = container_of(otg->usb_phy, struct mv_otg, phy);
Neil Zhang277164f2011-12-20 13:20:22 +080055 if (mvotg->pdata->set_vbus == NULL)
56 return -ENODEV;
57
58 return mvotg->pdata->set_vbus(on);
59}
60
Heikki Krogerusb1c711d2012-02-13 13:24:17 +020061static int mv_otg_set_host(struct usb_otg *otg,
Neil Zhang277164f2011-12-20 13:20:22 +080062 struct usb_bus *host)
63{
64 otg->host = host;
65
66 return 0;
67}
68
Heikki Krogerusb1c711d2012-02-13 13:24:17 +020069static int mv_otg_set_peripheral(struct usb_otg *otg,
Neil Zhang277164f2011-12-20 13:20:22 +080070 struct usb_gadget *gadget)
71{
72 otg->gadget = gadget;
73
74 return 0;
75}
76
77static void mv_otg_run_state_machine(struct mv_otg *mvotg,
78 unsigned long delay)
79{
80 dev_dbg(&mvotg->pdev->dev, "transceiver is updated\n");
81 if (!mvotg->qwork)
82 return;
83
84 queue_delayed_work(mvotg->qwork, &mvotg->work, delay);
85}
86
Kees Cook97187562017-10-16 16:46:06 -070087static void mv_otg_timer_await_bcon(struct timer_list *t)
Neil Zhang277164f2011-12-20 13:20:22 +080088{
Kees Cook97187562017-10-16 16:46:06 -070089 struct mv_otg *mvotg = from_timer(mvotg, t,
90 otg_ctrl.timer[A_WAIT_BCON_TIMER]);
Neil Zhang277164f2011-12-20 13:20:22 +080091
92 mvotg->otg_ctrl.a_wait_bcon_timeout = 1;
93
94 dev_info(&mvotg->pdev->dev, "B Device No Response!\n");
95
96 if (spin_trylock(&mvotg->wq_lock)) {
97 mv_otg_run_state_machine(mvotg, 0);
98 spin_unlock(&mvotg->wq_lock);
99 }
100}
101
102static int mv_otg_cancel_timer(struct mv_otg *mvotg, unsigned int id)
103{
104 struct timer_list *timer;
105
106 if (id >= OTG_TIMER_NUM)
107 return -EINVAL;
108
109 timer = &mvotg->otg_ctrl.timer[id];
110
111 if (timer_pending(timer))
112 del_timer(timer);
113
114 return 0;
115}
116
117static int mv_otg_set_timer(struct mv_otg *mvotg, unsigned int id,
Kees Cook97187562017-10-16 16:46:06 -0700118 unsigned long interval)
Neil Zhang277164f2011-12-20 13:20:22 +0800119{
120 struct timer_list *timer;
121
122 if (id >= OTG_TIMER_NUM)
123 return -EINVAL;
124
125 timer = &mvotg->otg_ctrl.timer[id];
126 if (timer_pending(timer)) {
127 dev_err(&mvotg->pdev->dev, "Timer%d is already running\n", id);
128 return -EBUSY;
129 }
130
Neil Zhang277164f2011-12-20 13:20:22 +0800131 timer->expires = jiffies + interval;
132 add_timer(timer);
133
134 return 0;
135}
136
137static int mv_otg_reset(struct mv_otg *mvotg)
138{
Neil Zhang277164f2011-12-20 13:20:22 +0800139 u32 tmp;
Chunfeng Yunf158afe2020-09-21 14:13:33 +0800140 int ret;
Neil Zhang277164f2011-12-20 13:20:22 +0800141
142 /* Stop the controller */
143 tmp = readl(&mvotg->op_regs->usbcmd);
144 tmp &= ~USBCMD_RUN_STOP;
145 writel(tmp, &mvotg->op_regs->usbcmd);
146
147 /* Reset the controller to get default values */
148 writel(USBCMD_CTRL_RESET, &mvotg->op_regs->usbcmd);
149
Chunfeng Yunf158afe2020-09-21 14:13:33 +0800150 ret = readl_poll_timeout_atomic(&mvotg->op_regs->usbcmd, tmp,
151 (tmp & USBCMD_CTRL_RESET), 10, 10000);
152 if (ret < 0) {
153 dev_err(&mvotg->pdev->dev,
154 "Wait for RESET completed TIMEOUT\n");
155 return ret;
Neil Zhang277164f2011-12-20 13:20:22 +0800156 }
157
158 writel(0x0, &mvotg->op_regs->usbintr);
159 tmp = readl(&mvotg->op_regs->usbsts);
160 writel(tmp, &mvotg->op_regs->usbsts);
161
162 return 0;
163}
164
165static void mv_otg_init_irq(struct mv_otg *mvotg)
166{
167 u32 otgsc;
168
169 mvotg->irq_en = OTGSC_INTR_A_SESSION_VALID
170 | OTGSC_INTR_A_VBUS_VALID;
171 mvotg->irq_status = OTGSC_INTSTS_A_SESSION_VALID
172 | OTGSC_INTSTS_A_VBUS_VALID;
173
174 if (mvotg->pdata->vbus == NULL) {
175 mvotg->irq_en |= OTGSC_INTR_B_SESSION_VALID
176 | OTGSC_INTR_B_SESSION_END;
177 mvotg->irq_status |= OTGSC_INTSTS_B_SESSION_VALID
178 | OTGSC_INTSTS_B_SESSION_END;
179 }
180
181 if (mvotg->pdata->id == NULL) {
182 mvotg->irq_en |= OTGSC_INTR_USB_ID;
183 mvotg->irq_status |= OTGSC_INTSTS_USB_ID;
184 }
185
186 otgsc = readl(&mvotg->op_regs->otgsc);
187 otgsc |= mvotg->irq_en;
188 writel(otgsc, &mvotg->op_regs->otgsc);
189}
190
191static void mv_otg_start_host(struct mv_otg *mvotg, int on)
192{
Geert Uytterhoeven2053c2d2012-01-15 12:36:16 +0100193#ifdef CONFIG_USB
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200194 struct usb_otg *otg = mvotg->phy.otg;
Neil Zhang277164f2011-12-20 13:20:22 +0800195 struct usb_hcd *hcd;
196
197 if (!otg->host)
198 return;
199
200 dev_info(&mvotg->pdev->dev, "%s host\n", on ? "start" : "stop");
201
202 hcd = bus_to_hcd(otg->host);
203
Peter Chen3c9740a2013-11-05 10:46:02 +0800204 if (on) {
Neil Zhang277164f2011-12-20 13:20:22 +0800205 usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
Peter Chen3c9740a2013-11-05 10:46:02 +0800206 device_wakeup_enable(hcd->self.controller);
207 } else {
Neil Zhang277164f2011-12-20 13:20:22 +0800208 usb_remove_hcd(hcd);
Peter Chen3c9740a2013-11-05 10:46:02 +0800209 }
Geert Uytterhoeven2053c2d2012-01-15 12:36:16 +0100210#endif /* CONFIG_USB */
Neil Zhang277164f2011-12-20 13:20:22 +0800211}
212
213static void mv_otg_start_periphrals(struct mv_otg *mvotg, int on)
214{
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200215 struct usb_otg *otg = mvotg->phy.otg;
Neil Zhang277164f2011-12-20 13:20:22 +0800216
217 if (!otg->gadget)
218 return;
219
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200220 dev_info(mvotg->phy.dev, "gadget %s\n", on ? "on" : "off");
Neil Zhang277164f2011-12-20 13:20:22 +0800221
222 if (on)
223 usb_gadget_vbus_connect(otg->gadget);
224 else
225 usb_gadget_vbus_disconnect(otg->gadget);
226}
227
228static void otg_clock_enable(struct mv_otg *mvotg)
229{
Chao Xiedf18fed2013-03-25 03:06:53 -0400230 clk_prepare_enable(mvotg->clk);
Neil Zhang277164f2011-12-20 13:20:22 +0800231}
232
233static void otg_clock_disable(struct mv_otg *mvotg)
234{
Chao Xiedf18fed2013-03-25 03:06:53 -0400235 clk_disable_unprepare(mvotg->clk);
Neil Zhang277164f2011-12-20 13:20:22 +0800236}
237
238static int mv_otg_enable_internal(struct mv_otg *mvotg)
239{
240 int retval = 0;
241
242 if (mvotg->active)
243 return 0;
244
245 dev_dbg(&mvotg->pdev->dev, "otg enabled\n");
246
247 otg_clock_enable(mvotg);
248 if (mvotg->pdata->phy_init) {
249 retval = mvotg->pdata->phy_init(mvotg->phy_regs);
250 if (retval) {
251 dev_err(&mvotg->pdev->dev,
252 "init phy error %d\n", retval);
253 otg_clock_disable(mvotg);
254 return retval;
255 }
256 }
257 mvotg->active = 1;
258
259 return 0;
260
261}
262
263static int mv_otg_enable(struct mv_otg *mvotg)
264{
265 if (mvotg->clock_gating)
266 return mv_otg_enable_internal(mvotg);
267
268 return 0;
269}
270
271static void mv_otg_disable_internal(struct mv_otg *mvotg)
272{
273 if (mvotg->active) {
274 dev_dbg(&mvotg->pdev->dev, "otg disabled\n");
275 if (mvotg->pdata->phy_deinit)
276 mvotg->pdata->phy_deinit(mvotg->phy_regs);
277 otg_clock_disable(mvotg);
278 mvotg->active = 0;
279 }
280}
281
282static void mv_otg_disable(struct mv_otg *mvotg)
283{
284 if (mvotg->clock_gating)
285 mv_otg_disable_internal(mvotg);
286}
287
288static void mv_otg_update_inputs(struct mv_otg *mvotg)
289{
290 struct mv_otg_ctrl *otg_ctrl = &mvotg->otg_ctrl;
291 u32 otgsc;
292
293 otgsc = readl(&mvotg->op_regs->otgsc);
294
295 if (mvotg->pdata->vbus) {
296 if (mvotg->pdata->vbus->poll() == VBUS_HIGH) {
297 otg_ctrl->b_sess_vld = 1;
298 otg_ctrl->b_sess_end = 0;
299 } else {
300 otg_ctrl->b_sess_vld = 0;
301 otg_ctrl->b_sess_end = 1;
302 }
303 } else {
304 otg_ctrl->b_sess_vld = !!(otgsc & OTGSC_STS_B_SESSION_VALID);
305 otg_ctrl->b_sess_end = !!(otgsc & OTGSC_STS_B_SESSION_END);
306 }
307
308 if (mvotg->pdata->id)
309 otg_ctrl->id = !!mvotg->pdata->id->poll();
310 else
311 otg_ctrl->id = !!(otgsc & OTGSC_STS_USB_ID);
312
313 if (mvotg->pdata->otg_force_a_bus_req && !otg_ctrl->id)
314 otg_ctrl->a_bus_req = 1;
315
316 otg_ctrl->a_sess_vld = !!(otgsc & OTGSC_STS_A_SESSION_VALID);
317 otg_ctrl->a_vbus_vld = !!(otgsc & OTGSC_STS_A_VBUS_VALID);
318
319 dev_dbg(&mvotg->pdev->dev, "%s: ", __func__);
320 dev_dbg(&mvotg->pdev->dev, "id %d\n", otg_ctrl->id);
321 dev_dbg(&mvotg->pdev->dev, "b_sess_vld %d\n", otg_ctrl->b_sess_vld);
322 dev_dbg(&mvotg->pdev->dev, "b_sess_end %d\n", otg_ctrl->b_sess_end);
323 dev_dbg(&mvotg->pdev->dev, "a_vbus_vld %d\n", otg_ctrl->a_vbus_vld);
324 dev_dbg(&mvotg->pdev->dev, "a_sess_vld %d\n", otg_ctrl->a_sess_vld);
325}
326
327static void mv_otg_update_state(struct mv_otg *mvotg)
328{
329 struct mv_otg_ctrl *otg_ctrl = &mvotg->otg_ctrl;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100330 int old_state = mvotg->phy.otg->state;
Neil Zhang277164f2011-12-20 13:20:22 +0800331
332 switch (old_state) {
333 case OTG_STATE_UNDEFINED:
Antoine Tenarte47d9252014-10-30 18:41:13 +0100334 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
Gustavo A. R. Silva4e71e072020-07-07 15:00:40 -0500335 fallthrough;
Neil Zhang277164f2011-12-20 13:20:22 +0800336 case OTG_STATE_B_IDLE:
337 if (otg_ctrl->id == 0)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100338 mvotg->phy.otg->state = OTG_STATE_A_IDLE;
Neil Zhang277164f2011-12-20 13:20:22 +0800339 else if (otg_ctrl->b_sess_vld)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100340 mvotg->phy.otg->state = OTG_STATE_B_PERIPHERAL;
Neil Zhang277164f2011-12-20 13:20:22 +0800341 break;
342 case OTG_STATE_B_PERIPHERAL:
343 if (!otg_ctrl->b_sess_vld || otg_ctrl->id == 0)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100344 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
Neil Zhang277164f2011-12-20 13:20:22 +0800345 break;
346 case OTG_STATE_A_IDLE:
347 if (otg_ctrl->id)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100348 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
Neil Zhang277164f2011-12-20 13:20:22 +0800349 else if (!(otg_ctrl->a_bus_drop) &&
350 (otg_ctrl->a_bus_req || otg_ctrl->a_srp_det))
Antoine Tenarte47d9252014-10-30 18:41:13 +0100351 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VRISE;
Neil Zhang277164f2011-12-20 13:20:22 +0800352 break;
353 case OTG_STATE_A_WAIT_VRISE:
354 if (otg_ctrl->a_vbus_vld)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100355 mvotg->phy.otg->state = OTG_STATE_A_WAIT_BCON;
Neil Zhang277164f2011-12-20 13:20:22 +0800356 break;
357 case OTG_STATE_A_WAIT_BCON:
358 if (otg_ctrl->id || otg_ctrl->a_bus_drop
359 || otg_ctrl->a_wait_bcon_timeout) {
360 mv_otg_cancel_timer(mvotg, A_WAIT_BCON_TIMER);
361 mvotg->otg_ctrl.a_wait_bcon_timeout = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100362 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VFALL;
Neil Zhang277164f2011-12-20 13:20:22 +0800363 otg_ctrl->a_bus_req = 0;
364 } else if (!otg_ctrl->a_vbus_vld) {
365 mv_otg_cancel_timer(mvotg, A_WAIT_BCON_TIMER);
366 mvotg->otg_ctrl.a_wait_bcon_timeout = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100367 mvotg->phy.otg->state = OTG_STATE_A_VBUS_ERR;
Neil Zhang277164f2011-12-20 13:20:22 +0800368 } else if (otg_ctrl->b_conn) {
369 mv_otg_cancel_timer(mvotg, A_WAIT_BCON_TIMER);
370 mvotg->otg_ctrl.a_wait_bcon_timeout = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100371 mvotg->phy.otg->state = OTG_STATE_A_HOST;
Neil Zhang277164f2011-12-20 13:20:22 +0800372 }
373 break;
374 case OTG_STATE_A_HOST:
375 if (otg_ctrl->id || !otg_ctrl->b_conn
376 || otg_ctrl->a_bus_drop)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100377 mvotg->phy.otg->state = OTG_STATE_A_WAIT_BCON;
Neil Zhang277164f2011-12-20 13:20:22 +0800378 else if (!otg_ctrl->a_vbus_vld)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100379 mvotg->phy.otg->state = OTG_STATE_A_VBUS_ERR;
Neil Zhang277164f2011-12-20 13:20:22 +0800380 break;
381 case OTG_STATE_A_WAIT_VFALL:
382 if (otg_ctrl->id
383 || (!otg_ctrl->b_conn && otg_ctrl->a_sess_vld)
384 || otg_ctrl->a_bus_req)
Antoine Tenarte47d9252014-10-30 18:41:13 +0100385 mvotg->phy.otg->state = OTG_STATE_A_IDLE;
Neil Zhang277164f2011-12-20 13:20:22 +0800386 break;
387 case OTG_STATE_A_VBUS_ERR:
388 if (otg_ctrl->id || otg_ctrl->a_clr_err
389 || otg_ctrl->a_bus_drop) {
390 otg_ctrl->a_clr_err = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100391 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VFALL;
Neil Zhang277164f2011-12-20 13:20:22 +0800392 }
393 break;
394 default:
395 break;
396 }
397}
398
399static void mv_otg_work(struct work_struct *work)
400{
401 struct mv_otg *mvotg;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200402 struct usb_otg *otg;
Neil Zhang277164f2011-12-20 13:20:22 +0800403 int old_state;
404
Cesar Eduardo Barros63a13072012-12-04 20:21:12 -0200405 mvotg = container_of(to_delayed_work(work), struct mv_otg, work);
Neil Zhang277164f2011-12-20 13:20:22 +0800406
407run:
408 /* work queue is single thread, or we need spin_lock to protect */
Antoine Tenarte47d9252014-10-30 18:41:13 +0100409 otg = mvotg->phy.otg;
410 old_state = otg->state;
Neil Zhang277164f2011-12-20 13:20:22 +0800411
412 if (!mvotg->active)
413 return;
414
415 mv_otg_update_inputs(mvotg);
416 mv_otg_update_state(mvotg);
417
Antoine Tenarte47d9252014-10-30 18:41:13 +0100418 if (old_state != mvotg->phy.otg->state) {
Neil Zhang277164f2011-12-20 13:20:22 +0800419 dev_info(&mvotg->pdev->dev, "change from state %s to %s\n",
420 state_string[old_state],
Antoine Tenarte47d9252014-10-30 18:41:13 +0100421 state_string[mvotg->phy.otg->state]);
Neil Zhang277164f2011-12-20 13:20:22 +0800422
Antoine Tenarte47d9252014-10-30 18:41:13 +0100423 switch (mvotg->phy.otg->state) {
Neil Zhang277164f2011-12-20 13:20:22 +0800424 case OTG_STATE_B_IDLE:
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200425 otg->default_a = 0;
Neil Zhang277164f2011-12-20 13:20:22 +0800426 if (old_state == OTG_STATE_B_PERIPHERAL)
427 mv_otg_start_periphrals(mvotg, 0);
428 mv_otg_reset(mvotg);
429 mv_otg_disable(mvotg);
Kiran Raparthyb20f3f92014-11-24 22:54:59 +0530430 usb_phy_set_event(&mvotg->phy, USB_EVENT_NONE);
Neil Zhang277164f2011-12-20 13:20:22 +0800431 break;
432 case OTG_STATE_B_PERIPHERAL:
433 mv_otg_enable(mvotg);
434 mv_otg_start_periphrals(mvotg, 1);
Kiran Raparthyb20f3f92014-11-24 22:54:59 +0530435 usb_phy_set_event(&mvotg->phy, USB_EVENT_ENUMERATED);
Neil Zhang277164f2011-12-20 13:20:22 +0800436 break;
437 case OTG_STATE_A_IDLE:
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200438 otg->default_a = 1;
Neil Zhang277164f2011-12-20 13:20:22 +0800439 mv_otg_enable(mvotg);
440 if (old_state == OTG_STATE_A_WAIT_VFALL)
441 mv_otg_start_host(mvotg, 0);
442 mv_otg_reset(mvotg);
443 break;
444 case OTG_STATE_A_WAIT_VRISE:
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200445 mv_otg_set_vbus(otg, 1);
Neil Zhang277164f2011-12-20 13:20:22 +0800446 break;
447 case OTG_STATE_A_WAIT_BCON:
448 if (old_state != OTG_STATE_A_HOST)
449 mv_otg_start_host(mvotg, 1);
450 mv_otg_set_timer(mvotg, A_WAIT_BCON_TIMER,
Kees Cook97187562017-10-16 16:46:06 -0700451 T_A_WAIT_BCON);
Neil Zhang277164f2011-12-20 13:20:22 +0800452 /*
453 * Now, we directly enter A_HOST. So set b_conn = 1
454 * here. In fact, it need host driver to notify us.
455 */
456 mvotg->otg_ctrl.b_conn = 1;
457 break;
458 case OTG_STATE_A_HOST:
459 break;
460 case OTG_STATE_A_WAIT_VFALL:
461 /*
462 * Now, we has exited A_HOST. So set b_conn = 0
463 * here. In fact, it need host driver to notify us.
464 */
465 mvotg->otg_ctrl.b_conn = 0;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200466 mv_otg_set_vbus(otg, 0);
Neil Zhang277164f2011-12-20 13:20:22 +0800467 break;
468 case OTG_STATE_A_VBUS_ERR:
469 break;
470 default:
471 break;
472 }
473 goto run;
474 }
475}
476
477static irqreturn_t mv_otg_irq(int irq, void *dev)
478{
479 struct mv_otg *mvotg = dev;
480 u32 otgsc;
481
482 otgsc = readl(&mvotg->op_regs->otgsc);
483 writel(otgsc, &mvotg->op_regs->otgsc);
484
485 /*
486 * if we have vbus, then the vbus detection for B-device
487 * will be done by mv_otg_inputs_irq().
488 */
489 if (mvotg->pdata->vbus)
490 if ((otgsc & OTGSC_STS_USB_ID) &&
491 !(otgsc & OTGSC_INTSTS_USB_ID))
492 return IRQ_NONE;
493
494 if ((otgsc & mvotg->irq_status) == 0)
495 return IRQ_NONE;
496
497 mv_otg_run_state_machine(mvotg, 0);
498
499 return IRQ_HANDLED;
500}
501
502static irqreturn_t mv_otg_inputs_irq(int irq, void *dev)
503{
504 struct mv_otg *mvotg = dev;
505
506 /* The clock may disabled at this time */
507 if (!mvotg->active) {
508 mv_otg_enable(mvotg);
509 mv_otg_init_irq(mvotg);
510 }
511
512 mv_otg_run_state_machine(mvotg, 0);
513
514 return IRQ_HANDLED;
515}
516
517static ssize_t
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100518a_bus_req_show(struct device *dev, struct device_attribute *attr, char *buf)
Neil Zhang277164f2011-12-20 13:20:22 +0800519{
520 struct mv_otg *mvotg = dev_get_drvdata(dev);
521 return scnprintf(buf, PAGE_SIZE, "%d\n",
522 mvotg->otg_ctrl.a_bus_req);
523}
524
525static ssize_t
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100526a_bus_req_store(struct device *dev, struct device_attribute *attr,
Neil Zhang277164f2011-12-20 13:20:22 +0800527 const char *buf, size_t count)
528{
529 struct mv_otg *mvotg = dev_get_drvdata(dev);
530
531 if (count > 2)
532 return -1;
533
534 /* We will use this interface to change to A device */
Antoine Tenarte47d9252014-10-30 18:41:13 +0100535 if (mvotg->phy.otg->state != OTG_STATE_B_IDLE
536 && mvotg->phy.otg->state != OTG_STATE_A_IDLE)
Neil Zhang277164f2011-12-20 13:20:22 +0800537 return -1;
538
539 /* The clock may disabled and we need to set irq for ID detected */
540 mv_otg_enable(mvotg);
541 mv_otg_init_irq(mvotg);
542
543 if (buf[0] == '1') {
544 mvotg->otg_ctrl.a_bus_req = 1;
545 mvotg->otg_ctrl.a_bus_drop = 0;
546 dev_dbg(&mvotg->pdev->dev,
547 "User request: a_bus_req = 1\n");
548
549 if (spin_trylock(&mvotg->wq_lock)) {
550 mv_otg_run_state_machine(mvotg, 0);
551 spin_unlock(&mvotg->wq_lock);
552 }
553 }
554
555 return count;
556}
557
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100558static DEVICE_ATTR_RW(a_bus_req);
Neil Zhang277164f2011-12-20 13:20:22 +0800559
560static ssize_t
Greg Kroah-Hartmanca359102018-01-23 11:24:07 +0100561a_clr_err_store(struct device *dev, struct device_attribute *attr,
Neil Zhang277164f2011-12-20 13:20:22 +0800562 const char *buf, size_t count)
563{
564 struct mv_otg *mvotg = dev_get_drvdata(dev);
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200565 if (!mvotg->phy.otg->default_a)
Neil Zhang277164f2011-12-20 13:20:22 +0800566 return -1;
567
568 if (count > 2)
569 return -1;
570
571 if (buf[0] == '1') {
572 mvotg->otg_ctrl.a_clr_err = 1;
573 dev_dbg(&mvotg->pdev->dev,
574 "User request: a_clr_err = 1\n");
575 }
576
577 if (spin_trylock(&mvotg->wq_lock)) {
578 mv_otg_run_state_machine(mvotg, 0);
579 spin_unlock(&mvotg->wq_lock);
580 }
581
582 return count;
583}
584
Greg Kroah-Hartmanca359102018-01-23 11:24:07 +0100585static DEVICE_ATTR_WO(a_clr_err);
Neil Zhang277164f2011-12-20 13:20:22 +0800586
587static ssize_t
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100588a_bus_drop_show(struct device *dev, struct device_attribute *attr,
Neil Zhang277164f2011-12-20 13:20:22 +0800589 char *buf)
590{
591 struct mv_otg *mvotg = dev_get_drvdata(dev);
592 return scnprintf(buf, PAGE_SIZE, "%d\n",
593 mvotg->otg_ctrl.a_bus_drop);
594}
595
596static ssize_t
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100597a_bus_drop_store(struct device *dev, struct device_attribute *attr,
Neil Zhang277164f2011-12-20 13:20:22 +0800598 const char *buf, size_t count)
599{
600 struct mv_otg *mvotg = dev_get_drvdata(dev);
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200601 if (!mvotg->phy.otg->default_a)
Neil Zhang277164f2011-12-20 13:20:22 +0800602 return -1;
603
604 if (count > 2)
605 return -1;
606
607 if (buf[0] == '0') {
608 mvotg->otg_ctrl.a_bus_drop = 0;
609 dev_dbg(&mvotg->pdev->dev,
610 "User request: a_bus_drop = 0\n");
611 } else if (buf[0] == '1') {
612 mvotg->otg_ctrl.a_bus_drop = 1;
613 mvotg->otg_ctrl.a_bus_req = 0;
614 dev_dbg(&mvotg->pdev->dev,
615 "User request: a_bus_drop = 1\n");
616 dev_dbg(&mvotg->pdev->dev,
617 "User request: and a_bus_req = 0\n");
618 }
619
620 if (spin_trylock(&mvotg->wq_lock)) {
621 mv_otg_run_state_machine(mvotg, 0);
622 spin_unlock(&mvotg->wq_lock);
623 }
624
625 return count;
626}
627
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +0100628static DEVICE_ATTR_RW(a_bus_drop);
Neil Zhang277164f2011-12-20 13:20:22 +0800629
630static struct attribute *inputs_attrs[] = {
631 &dev_attr_a_bus_req.attr,
632 &dev_attr_a_clr_err.attr,
633 &dev_attr_a_bus_drop.attr,
634 NULL,
635};
636
Arvind Yadav1cefc262017-08-04 17:36:43 +0530637static const struct attribute_group inputs_attr_group = {
Neil Zhang277164f2011-12-20 13:20:22 +0800638 .name = "inputs",
639 .attrs = inputs_attrs,
640};
641
Greg Kroah-Hartman3e2cb862019-08-05 21:36:33 +0200642static const struct attribute_group *mv_otg_groups[] = {
643 &inputs_attr_group,
644 NULL,
645};
646
Jingoo Hand07f4a82013-08-05 14:17:53 +0900647static int mv_otg_remove(struct platform_device *pdev)
Neil Zhang277164f2011-12-20 13:20:22 +0800648{
649 struct mv_otg *mvotg = platform_get_drvdata(pdev);
Neil Zhang277164f2011-12-20 13:20:22 +0800650
Neil Zhang277164f2011-12-20 13:20:22 +0800651 if (mvotg->qwork) {
652 flush_workqueue(mvotg->qwork);
653 destroy_workqueue(mvotg->qwork);
654 }
655
656 mv_otg_disable(mvotg);
657
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530658 usb_remove_phy(&mvotg->phy);
Neil Zhang277164f2011-12-20 13:20:22 +0800659
Neil Zhang277164f2011-12-20 13:20:22 +0800660 return 0;
661}
662
663static int mv_otg_probe(struct platform_device *pdev)
664{
Jingoo Han19f9e182013-07-30 17:02:13 +0900665 struct mv_usb_platform_data *pdata = dev_get_platdata(&pdev->dev);
Neil Zhang277164f2011-12-20 13:20:22 +0800666 struct mv_otg *mvotg;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200667 struct usb_otg *otg;
Neil Zhang277164f2011-12-20 13:20:22 +0800668 struct resource *r;
Chao Xiedf18fed2013-03-25 03:06:53 -0400669 int retval = 0, i;
Neil Zhang277164f2011-12-20 13:20:22 +0800670
671 if (pdata == NULL) {
672 dev_err(&pdev->dev, "failed to get platform data\n");
673 return -ENODEV;
674 }
675
Chao Xiedf18fed2013-03-25 03:06:53 -0400676 mvotg = devm_kzalloc(&pdev->dev, sizeof(*mvotg), GFP_KERNEL);
Peter Chenaa10c7b2014-10-14 15:56:18 +0800677 if (!mvotg)
Neil Zhang277164f2011-12-20 13:20:22 +0800678 return -ENOMEM;
Neil Zhang277164f2011-12-20 13:20:22 +0800679
Chao Xiefb3dfe12013-01-24 01:38:28 -0500680 otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL);
681 if (!otg)
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200682 return -ENOMEM;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200683
Neil Zhang277164f2011-12-20 13:20:22 +0800684 platform_set_drvdata(pdev, mvotg);
685
686 mvotg->pdev = pdev;
687 mvotg->pdata = pdata;
688
Chao Xiedf18fed2013-03-25 03:06:53 -0400689 mvotg->clk = devm_clk_get(&pdev->dev, NULL);
690 if (IS_ERR(mvotg->clk))
691 return PTR_ERR(mvotg->clk);
Neil Zhang277164f2011-12-20 13:20:22 +0800692
693 mvotg->qwork = create_singlethread_workqueue("mv_otg_queue");
694 if (!mvotg->qwork) {
695 dev_dbg(&pdev->dev, "cannot create workqueue for OTG\n");
Chao Xiefb3dfe12013-01-24 01:38:28 -0500696 return -ENOMEM;
Neil Zhang277164f2011-12-20 13:20:22 +0800697 }
698
699 INIT_DELAYED_WORK(&mvotg->work, mv_otg_work);
700
701 /* OTG common part */
702 mvotg->pdev = pdev;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200703 mvotg->phy.dev = &pdev->dev;
704 mvotg->phy.otg = otg;
705 mvotg->phy.label = driver_name;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200706
Antoine Tenarte47d9252014-10-30 18:41:13 +0100707 otg->state = OTG_STATE_UNDEFINED;
Antoine Tenart19c1eac2014-10-30 18:41:14 +0100708 otg->usb_phy = &mvotg->phy;
Heikki Krogerusb1c711d2012-02-13 13:24:17 +0200709 otg->set_host = mv_otg_set_host;
710 otg->set_peripheral = mv_otg_set_peripheral;
711 otg->set_vbus = mv_otg_set_vbus;
Neil Zhang277164f2011-12-20 13:20:22 +0800712
713 for (i = 0; i < OTG_TIMER_NUM; i++)
Kees Cook97187562017-10-16 16:46:06 -0700714 timer_setup(&mvotg->otg_ctrl.timer[i],
715 mv_otg_timer_await_bcon, 0);
Neil Zhang277164f2011-12-20 13:20:22 +0800716
717 r = platform_get_resource_byname(mvotg->pdev,
718 IORESOURCE_MEM, "phyregs");
719 if (r == NULL) {
720 dev_err(&pdev->dev, "no phy I/O memory resource defined\n");
721 retval = -ENODEV;
722 goto err_destroy_workqueue;
723 }
724
Chao Xiefb3dfe12013-01-24 01:38:28 -0500725 mvotg->phy_regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
Neil Zhang277164f2011-12-20 13:20:22 +0800726 if (mvotg->phy_regs == NULL) {
727 dev_err(&pdev->dev, "failed to map phy I/O memory\n");
728 retval = -EFAULT;
729 goto err_destroy_workqueue;
730 }
731
732 r = platform_get_resource_byname(mvotg->pdev,
733 IORESOURCE_MEM, "capregs");
734 if (r == NULL) {
735 dev_err(&pdev->dev, "no I/O memory resource defined\n");
736 retval = -ENODEV;
Chao Xiefb3dfe12013-01-24 01:38:28 -0500737 goto err_destroy_workqueue;
Neil Zhang277164f2011-12-20 13:20:22 +0800738 }
739
Chao Xiefb3dfe12013-01-24 01:38:28 -0500740 mvotg->cap_regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
Neil Zhang277164f2011-12-20 13:20:22 +0800741 if (mvotg->cap_regs == NULL) {
742 dev_err(&pdev->dev, "failed to map I/O memory\n");
743 retval = -EFAULT;
Chao Xiefb3dfe12013-01-24 01:38:28 -0500744 goto err_destroy_workqueue;
Neil Zhang277164f2011-12-20 13:20:22 +0800745 }
746
747 /* we will acces controller register, so enable the udc controller */
748 retval = mv_otg_enable_internal(mvotg);
749 if (retval) {
750 dev_err(&pdev->dev, "mv otg enable error %d\n", retval);
Chao Xiefb3dfe12013-01-24 01:38:28 -0500751 goto err_destroy_workqueue;
Neil Zhang277164f2011-12-20 13:20:22 +0800752 }
753
754 mvotg->op_regs =
755 (struct mv_otg_regs __iomem *) ((unsigned long) mvotg->cap_regs
756 + (readl(mvotg->cap_regs) & CAPLENGTH_MASK));
757
758 if (pdata->id) {
Chao Xiefb3dfe12013-01-24 01:38:28 -0500759 retval = devm_request_threaded_irq(&pdev->dev, pdata->id->irq,
760 NULL, mv_otg_inputs_irq,
761 IRQF_ONESHOT, "id", mvotg);
Neil Zhang277164f2011-12-20 13:20:22 +0800762 if (retval) {
763 dev_info(&pdev->dev,
764 "Failed to request irq for ID\n");
765 pdata->id = NULL;
766 }
767 }
768
769 if (pdata->vbus) {
770 mvotg->clock_gating = 1;
Chao Xiefb3dfe12013-01-24 01:38:28 -0500771 retval = devm_request_threaded_irq(&pdev->dev, pdata->vbus->irq,
772 NULL, mv_otg_inputs_irq,
773 IRQF_ONESHOT, "vbus", mvotg);
Neil Zhang277164f2011-12-20 13:20:22 +0800774 if (retval) {
775 dev_info(&pdev->dev,
776 "Failed to request irq for VBUS, "
777 "disable clock gating\n");
778 mvotg->clock_gating = 0;
779 pdata->vbus = NULL;
780 }
781 }
782
783 if (pdata->disable_otg_clock_gating)
784 mvotg->clock_gating = 0;
785
786 mv_otg_reset(mvotg);
787 mv_otg_init_irq(mvotg);
788
789 r = platform_get_resource(mvotg->pdev, IORESOURCE_IRQ, 0);
790 if (r == NULL) {
791 dev_err(&pdev->dev, "no IRQ resource defined\n");
792 retval = -ENODEV;
793 goto err_disable_clk;
794 }
795
796 mvotg->irq = r->start;
Chao Xiefb3dfe12013-01-24 01:38:28 -0500797 if (devm_request_irq(&pdev->dev, mvotg->irq, mv_otg_irq, IRQF_SHARED,
Neil Zhang277164f2011-12-20 13:20:22 +0800798 driver_name, mvotg)) {
799 dev_err(&pdev->dev, "Request irq %d for OTG failed\n",
800 mvotg->irq);
801 mvotg->irq = 0;
802 retval = -ENODEV;
803 goto err_disable_clk;
804 }
805
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530806 retval = usb_add_phy(&mvotg->phy, USB_PHY_TYPE_USB2);
Neil Zhang277164f2011-12-20 13:20:22 +0800807 if (retval < 0) {
808 dev_err(&pdev->dev, "can't register transceiver, %d\n",
809 retval);
Chao Xiefb3dfe12013-01-24 01:38:28 -0500810 goto err_disable_clk;
Neil Zhang277164f2011-12-20 13:20:22 +0800811 }
812
Neil Zhang277164f2011-12-20 13:20:22 +0800813 spin_lock_init(&mvotg->wq_lock);
814 if (spin_trylock(&mvotg->wq_lock)) {
815 mv_otg_run_state_machine(mvotg, 2 * HZ);
816 spin_unlock(&mvotg->wq_lock);
817 }
818
819 dev_info(&pdev->dev,
820 "successful probe OTG device %s clock gating.\n",
821 mvotg->clock_gating ? "with" : "without");
822
823 return 0;
824
Neil Zhang277164f2011-12-20 13:20:22 +0800825err_disable_clk:
Neil Zhang277164f2011-12-20 13:20:22 +0800826 mv_otg_disable_internal(mvotg);
Neil Zhang277164f2011-12-20 13:20:22 +0800827err_destroy_workqueue:
828 flush_workqueue(mvotg->qwork);
829 destroy_workqueue(mvotg->qwork);
Neil Zhang277164f2011-12-20 13:20:22 +0800830
Neil Zhang277164f2011-12-20 13:20:22 +0800831 return retval;
832}
833
834#ifdef CONFIG_PM
835static int mv_otg_suspend(struct platform_device *pdev, pm_message_t state)
836{
837 struct mv_otg *mvotg = platform_get_drvdata(pdev);
838
Arnd Bergmann90bdf402015-01-13 15:25:11 +0100839 if (mvotg->phy.otg->state != OTG_STATE_B_IDLE) {
Neil Zhang277164f2011-12-20 13:20:22 +0800840 dev_info(&pdev->dev,
841 "OTG state is not B_IDLE, it is %d!\n",
Arnd Bergmann90bdf402015-01-13 15:25:11 +0100842 mvotg->phy.otg->state);
Neil Zhang277164f2011-12-20 13:20:22 +0800843 return -EAGAIN;
844 }
845
846 if (!mvotg->clock_gating)
847 mv_otg_disable_internal(mvotg);
848
849 return 0;
850}
851
852static int mv_otg_resume(struct platform_device *pdev)
853{
854 struct mv_otg *mvotg = platform_get_drvdata(pdev);
855 u32 otgsc;
856
857 if (!mvotg->clock_gating) {
858 mv_otg_enable_internal(mvotg);
859
860 otgsc = readl(&mvotg->op_regs->otgsc);
861 otgsc |= mvotg->irq_en;
862 writel(otgsc, &mvotg->op_regs->otgsc);
863
864 if (spin_trylock(&mvotg->wq_lock)) {
865 mv_otg_run_state_machine(mvotg, 0);
866 spin_unlock(&mvotg->wq_lock);
867 }
868 }
869 return 0;
870}
871#endif
872
873static struct platform_driver mv_otg_driver = {
874 .probe = mv_otg_probe,
Jingoo Hand07f4a82013-08-05 14:17:53 +0900875 .remove = mv_otg_remove,
Neil Zhang277164f2011-12-20 13:20:22 +0800876 .driver = {
Neil Zhang277164f2011-12-20 13:20:22 +0800877 .name = driver_name,
Greg Kroah-Hartman3e2cb862019-08-05 21:36:33 +0200878 .dev_groups = mv_otg_groups,
Neil Zhang277164f2011-12-20 13:20:22 +0800879 },
880#ifdef CONFIG_PM
881 .suspend = mv_otg_suspend,
882 .resume = mv_otg_resume,
883#endif
884};
Srinivas Kandagatlaca21dda2012-10-10 19:37:28 +0100885module_platform_driver(mv_otg_driver);