1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
4 * Author: Chao Xie <chao.xie@marvell.com>
5 * Neil Zhang <zhangwm@marvell.com>
8 #include <linux/module.h>
9 #include <linux/kernel.h>
11 #include <linux/uaccess.h>
12 #include <linux/device.h>
13 #include <linux/proc_fs.h>
14 #include <linux/clk.h>
15 #include <linux/workqueue.h>
16 #include <linux/platform_device.h>
18 #include <linux/usb.h>
19 #include <linux/usb/ch9.h>
20 #include <linux/usb/otg.h>
21 #include <linux/usb/gadget.h>
22 #include <linux/usb/hcd.h>
23 #include <linux/platform_data/mv_usb.h>
25 #include "phy-mv-usb.h"
27 #define DRIVER_DESC "Marvell USB OTG transceiver driver"
29 MODULE_DESCRIPTION(DRIVER_DESC
);
30 MODULE_LICENSE("GPL");
32 static const char driver_name
[] = "mv-otg";
34 static char *state_string
[] = {
51 static int mv_otg_set_vbus(struct usb_otg
*otg
, bool on
)
53 struct mv_otg
*mvotg
= container_of(otg
->usb_phy
, struct mv_otg
, phy
);
54 if (mvotg
->pdata
->set_vbus
== NULL
)
57 return mvotg
->pdata
->set_vbus(on
);
60 static int mv_otg_set_host(struct usb_otg
*otg
,
68 static int mv_otg_set_peripheral(struct usb_otg
*otg
,
69 struct usb_gadget
*gadget
)
76 static void mv_otg_run_state_machine(struct mv_otg
*mvotg
,
79 dev_dbg(&mvotg
->pdev
->dev
, "transceiver is updated\n");
83 queue_delayed_work(mvotg
->qwork
, &mvotg
->work
, delay
);
86 static void mv_otg_timer_await_bcon(struct timer_list
*t
)
88 struct mv_otg
*mvotg
= from_timer(mvotg
, t
,
89 otg_ctrl
.timer
[A_WAIT_BCON_TIMER
]);
91 mvotg
->otg_ctrl
.a_wait_bcon_timeout
= 1;
93 dev_info(&mvotg
->pdev
->dev
, "B Device No Response!\n");
95 if (spin_trylock(&mvotg
->wq_lock
)) {
96 mv_otg_run_state_machine(mvotg
, 0);
97 spin_unlock(&mvotg
->wq_lock
);
101 static int mv_otg_cancel_timer(struct mv_otg
*mvotg
, unsigned int id
)
103 struct timer_list
*timer
;
105 if (id
>= OTG_TIMER_NUM
)
108 timer
= &mvotg
->otg_ctrl
.timer
[id
];
110 if (timer_pending(timer
))
116 static int mv_otg_set_timer(struct mv_otg
*mvotg
, unsigned int id
,
117 unsigned long interval
)
119 struct timer_list
*timer
;
121 if (id
>= OTG_TIMER_NUM
)
124 timer
= &mvotg
->otg_ctrl
.timer
[id
];
125 if (timer_pending(timer
)) {
126 dev_err(&mvotg
->pdev
->dev
, "Timer%d is already running\n", id
);
130 timer
->expires
= jiffies
+ interval
;
136 static int mv_otg_reset(struct mv_otg
*mvotg
)
141 /* Stop the controller */
142 tmp
= readl(&mvotg
->op_regs
->usbcmd
);
143 tmp
&= ~USBCMD_RUN_STOP
;
144 writel(tmp
, &mvotg
->op_regs
->usbcmd
);
146 /* Reset the controller to get default values */
147 writel(USBCMD_CTRL_RESET
, &mvotg
->op_regs
->usbcmd
);
150 while (readl(&mvotg
->op_regs
->usbcmd
) & USBCMD_CTRL_RESET
) {
152 dev_err(&mvotg
->pdev
->dev
,
153 "Wait for RESET completed TIMEOUT\n");
160 writel(0x0, &mvotg
->op_regs
->usbintr
);
161 tmp
= readl(&mvotg
->op_regs
->usbsts
);
162 writel(tmp
, &mvotg
->op_regs
->usbsts
);
167 static void mv_otg_init_irq(struct mv_otg
*mvotg
)
171 mvotg
->irq_en
= OTGSC_INTR_A_SESSION_VALID
172 | OTGSC_INTR_A_VBUS_VALID
;
173 mvotg
->irq_status
= OTGSC_INTSTS_A_SESSION_VALID
174 | OTGSC_INTSTS_A_VBUS_VALID
;
176 if (mvotg
->pdata
->vbus
== NULL
) {
177 mvotg
->irq_en
|= OTGSC_INTR_B_SESSION_VALID
178 | OTGSC_INTR_B_SESSION_END
;
179 mvotg
->irq_status
|= OTGSC_INTSTS_B_SESSION_VALID
180 | OTGSC_INTSTS_B_SESSION_END
;
183 if (mvotg
->pdata
->id
== NULL
) {
184 mvotg
->irq_en
|= OTGSC_INTR_USB_ID
;
185 mvotg
->irq_status
|= OTGSC_INTSTS_USB_ID
;
188 otgsc
= readl(&mvotg
->op_regs
->otgsc
);
189 otgsc
|= mvotg
->irq_en
;
190 writel(otgsc
, &mvotg
->op_regs
->otgsc
);
193 static void mv_otg_start_host(struct mv_otg
*mvotg
, int on
)
196 struct usb_otg
*otg
= mvotg
->phy
.otg
;
202 dev_info(&mvotg
->pdev
->dev
, "%s host\n", on
? "start" : "stop");
204 hcd
= bus_to_hcd(otg
->host
);
207 usb_add_hcd(hcd
, hcd
->irq
, IRQF_SHARED
);
208 device_wakeup_enable(hcd
->self
.controller
);
212 #endif /* CONFIG_USB */
215 static void mv_otg_start_periphrals(struct mv_otg
*mvotg
, int on
)
217 struct usb_otg
*otg
= mvotg
->phy
.otg
;
222 dev_info(mvotg
->phy
.dev
, "gadget %s\n", on
? "on" : "off");
225 usb_gadget_vbus_connect(otg
->gadget
);
227 usb_gadget_vbus_disconnect(otg
->gadget
);
230 static void otg_clock_enable(struct mv_otg
*mvotg
)
232 clk_prepare_enable(mvotg
->clk
);
235 static void otg_clock_disable(struct mv_otg
*mvotg
)
237 clk_disable_unprepare(mvotg
->clk
);
240 static int mv_otg_enable_internal(struct mv_otg
*mvotg
)
247 dev_dbg(&mvotg
->pdev
->dev
, "otg enabled\n");
249 otg_clock_enable(mvotg
);
250 if (mvotg
->pdata
->phy_init
) {
251 retval
= mvotg
->pdata
->phy_init(mvotg
->phy_regs
);
253 dev_err(&mvotg
->pdev
->dev
,
254 "init phy error %d\n", retval
);
255 otg_clock_disable(mvotg
);
265 static int mv_otg_enable(struct mv_otg
*mvotg
)
267 if (mvotg
->clock_gating
)
268 return mv_otg_enable_internal(mvotg
);
273 static void mv_otg_disable_internal(struct mv_otg
*mvotg
)
276 dev_dbg(&mvotg
->pdev
->dev
, "otg disabled\n");
277 if (mvotg
->pdata
->phy_deinit
)
278 mvotg
->pdata
->phy_deinit(mvotg
->phy_regs
);
279 otg_clock_disable(mvotg
);
284 static void mv_otg_disable(struct mv_otg
*mvotg
)
286 if (mvotg
->clock_gating
)
287 mv_otg_disable_internal(mvotg
);
290 static void mv_otg_update_inputs(struct mv_otg
*mvotg
)
292 struct mv_otg_ctrl
*otg_ctrl
= &mvotg
->otg_ctrl
;
295 otgsc
= readl(&mvotg
->op_regs
->otgsc
);
297 if (mvotg
->pdata
->vbus
) {
298 if (mvotg
->pdata
->vbus
->poll() == VBUS_HIGH
) {
299 otg_ctrl
->b_sess_vld
= 1;
300 otg_ctrl
->b_sess_end
= 0;
302 otg_ctrl
->b_sess_vld
= 0;
303 otg_ctrl
->b_sess_end
= 1;
306 otg_ctrl
->b_sess_vld
= !!(otgsc
& OTGSC_STS_B_SESSION_VALID
);
307 otg_ctrl
->b_sess_end
= !!(otgsc
& OTGSC_STS_B_SESSION_END
);
310 if (mvotg
->pdata
->id
)
311 otg_ctrl
->id
= !!mvotg
->pdata
->id
->poll();
313 otg_ctrl
->id
= !!(otgsc
& OTGSC_STS_USB_ID
);
315 if (mvotg
->pdata
->otg_force_a_bus_req
&& !otg_ctrl
->id
)
316 otg_ctrl
->a_bus_req
= 1;
318 otg_ctrl
->a_sess_vld
= !!(otgsc
& OTGSC_STS_A_SESSION_VALID
);
319 otg_ctrl
->a_vbus_vld
= !!(otgsc
& OTGSC_STS_A_VBUS_VALID
);
321 dev_dbg(&mvotg
->pdev
->dev
, "%s: ", __func__
);
322 dev_dbg(&mvotg
->pdev
->dev
, "id %d\n", otg_ctrl
->id
);
323 dev_dbg(&mvotg
->pdev
->dev
, "b_sess_vld %d\n", otg_ctrl
->b_sess_vld
);
324 dev_dbg(&mvotg
->pdev
->dev
, "b_sess_end %d\n", otg_ctrl
->b_sess_end
);
325 dev_dbg(&mvotg
->pdev
->dev
, "a_vbus_vld %d\n", otg_ctrl
->a_vbus_vld
);
326 dev_dbg(&mvotg
->pdev
->dev
, "a_sess_vld %d\n", otg_ctrl
->a_sess_vld
);
329 static void mv_otg_update_state(struct mv_otg
*mvotg
)
331 struct mv_otg_ctrl
*otg_ctrl
= &mvotg
->otg_ctrl
;
332 int old_state
= mvotg
->phy
.otg
->state
;
335 case OTG_STATE_UNDEFINED
:
336 mvotg
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
338 case OTG_STATE_B_IDLE
:
339 if (otg_ctrl
->id
== 0)
340 mvotg
->phy
.otg
->state
= OTG_STATE_A_IDLE
;
341 else if (otg_ctrl
->b_sess_vld
)
342 mvotg
->phy
.otg
->state
= OTG_STATE_B_PERIPHERAL
;
344 case OTG_STATE_B_PERIPHERAL
:
345 if (!otg_ctrl
->b_sess_vld
|| otg_ctrl
->id
== 0)
346 mvotg
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
348 case OTG_STATE_A_IDLE
:
350 mvotg
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
351 else if (!(otg_ctrl
->a_bus_drop
) &&
352 (otg_ctrl
->a_bus_req
|| otg_ctrl
->a_srp_det
))
353 mvotg
->phy
.otg
->state
= OTG_STATE_A_WAIT_VRISE
;
355 case OTG_STATE_A_WAIT_VRISE
:
356 if (otg_ctrl
->a_vbus_vld
)
357 mvotg
->phy
.otg
->state
= OTG_STATE_A_WAIT_BCON
;
359 case OTG_STATE_A_WAIT_BCON
:
360 if (otg_ctrl
->id
|| otg_ctrl
->a_bus_drop
361 || otg_ctrl
->a_wait_bcon_timeout
) {
362 mv_otg_cancel_timer(mvotg
, A_WAIT_BCON_TIMER
);
363 mvotg
->otg_ctrl
.a_wait_bcon_timeout
= 0;
364 mvotg
->phy
.otg
->state
= OTG_STATE_A_WAIT_VFALL
;
365 otg_ctrl
->a_bus_req
= 0;
366 } else if (!otg_ctrl
->a_vbus_vld
) {
367 mv_otg_cancel_timer(mvotg
, A_WAIT_BCON_TIMER
);
368 mvotg
->otg_ctrl
.a_wait_bcon_timeout
= 0;
369 mvotg
->phy
.otg
->state
= OTG_STATE_A_VBUS_ERR
;
370 } else if (otg_ctrl
->b_conn
) {
371 mv_otg_cancel_timer(mvotg
, A_WAIT_BCON_TIMER
);
372 mvotg
->otg_ctrl
.a_wait_bcon_timeout
= 0;
373 mvotg
->phy
.otg
->state
= OTG_STATE_A_HOST
;
376 case OTG_STATE_A_HOST
:
377 if (otg_ctrl
->id
|| !otg_ctrl
->b_conn
378 || otg_ctrl
->a_bus_drop
)
379 mvotg
->phy
.otg
->state
= OTG_STATE_A_WAIT_BCON
;
380 else if (!otg_ctrl
->a_vbus_vld
)
381 mvotg
->phy
.otg
->state
= OTG_STATE_A_VBUS_ERR
;
383 case OTG_STATE_A_WAIT_VFALL
:
385 || (!otg_ctrl
->b_conn
&& otg_ctrl
->a_sess_vld
)
386 || otg_ctrl
->a_bus_req
)
387 mvotg
->phy
.otg
->state
= OTG_STATE_A_IDLE
;
389 case OTG_STATE_A_VBUS_ERR
:
390 if (otg_ctrl
->id
|| otg_ctrl
->a_clr_err
391 || otg_ctrl
->a_bus_drop
) {
392 otg_ctrl
->a_clr_err
= 0;
393 mvotg
->phy
.otg
->state
= OTG_STATE_A_WAIT_VFALL
;
401 static void mv_otg_work(struct work_struct
*work
)
403 struct mv_otg
*mvotg
;
408 mvotg
= container_of(to_delayed_work(work
), struct mv_otg
, work
);
411 /* work queue is single thread, or we need spin_lock to protect */
413 otg
= mvotg
->phy
.otg
;
414 old_state
= otg
->state
;
419 mv_otg_update_inputs(mvotg
);
420 mv_otg_update_state(mvotg
);
422 if (old_state
!= mvotg
->phy
.otg
->state
) {
423 dev_info(&mvotg
->pdev
->dev
, "change from state %s to %s\n",
424 state_string
[old_state
],
425 state_string
[mvotg
->phy
.otg
->state
]);
427 switch (mvotg
->phy
.otg
->state
) {
428 case OTG_STATE_B_IDLE
:
430 if (old_state
== OTG_STATE_B_PERIPHERAL
)
431 mv_otg_start_periphrals(mvotg
, 0);
433 mv_otg_disable(mvotg
);
434 usb_phy_set_event(&mvotg
->phy
, USB_EVENT_NONE
);
436 case OTG_STATE_B_PERIPHERAL
:
437 mv_otg_enable(mvotg
);
438 mv_otg_start_periphrals(mvotg
, 1);
439 usb_phy_set_event(&mvotg
->phy
, USB_EVENT_ENUMERATED
);
441 case OTG_STATE_A_IDLE
:
443 mv_otg_enable(mvotg
);
444 if (old_state
== OTG_STATE_A_WAIT_VFALL
)
445 mv_otg_start_host(mvotg
, 0);
448 case OTG_STATE_A_WAIT_VRISE
:
449 mv_otg_set_vbus(otg
, 1);
451 case OTG_STATE_A_WAIT_BCON
:
452 if (old_state
!= OTG_STATE_A_HOST
)
453 mv_otg_start_host(mvotg
, 1);
454 mv_otg_set_timer(mvotg
, A_WAIT_BCON_TIMER
,
457 * Now, we directly enter A_HOST. So set b_conn = 1
458 * here. In fact, it need host driver to notify us.
460 mvotg
->otg_ctrl
.b_conn
= 1;
462 case OTG_STATE_A_HOST
:
464 case OTG_STATE_A_WAIT_VFALL
:
466 * Now, we has exited A_HOST. So set b_conn = 0
467 * here. In fact, it need host driver to notify us.
469 mvotg
->otg_ctrl
.b_conn
= 0;
470 mv_otg_set_vbus(otg
, 0);
472 case OTG_STATE_A_VBUS_ERR
:
481 static irqreturn_t
mv_otg_irq(int irq
, void *dev
)
483 struct mv_otg
*mvotg
= dev
;
486 otgsc
= readl(&mvotg
->op_regs
->otgsc
);
487 writel(otgsc
, &mvotg
->op_regs
->otgsc
);
490 * if we have vbus, then the vbus detection for B-device
491 * will be done by mv_otg_inputs_irq().
493 if (mvotg
->pdata
->vbus
)
494 if ((otgsc
& OTGSC_STS_USB_ID
) &&
495 !(otgsc
& OTGSC_INTSTS_USB_ID
))
498 if ((otgsc
& mvotg
->irq_status
) == 0)
501 mv_otg_run_state_machine(mvotg
, 0);
506 static irqreturn_t
mv_otg_inputs_irq(int irq
, void *dev
)
508 struct mv_otg
*mvotg
= dev
;
510 /* The clock may disabled at this time */
511 if (!mvotg
->active
) {
512 mv_otg_enable(mvotg
);
513 mv_otg_init_irq(mvotg
);
516 mv_otg_run_state_machine(mvotg
, 0);
522 a_bus_req_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
524 struct mv_otg
*mvotg
= dev_get_drvdata(dev
);
525 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
526 mvotg
->otg_ctrl
.a_bus_req
);
530 a_bus_req_store(struct device
*dev
, struct device_attribute
*attr
,
531 const char *buf
, size_t count
)
533 struct mv_otg
*mvotg
= dev_get_drvdata(dev
);
538 /* We will use this interface to change to A device */
539 if (mvotg
->phy
.otg
->state
!= OTG_STATE_B_IDLE
540 && mvotg
->phy
.otg
->state
!= OTG_STATE_A_IDLE
)
543 /* The clock may disabled and we need to set irq for ID detected */
544 mv_otg_enable(mvotg
);
545 mv_otg_init_irq(mvotg
);
548 mvotg
->otg_ctrl
.a_bus_req
= 1;
549 mvotg
->otg_ctrl
.a_bus_drop
= 0;
550 dev_dbg(&mvotg
->pdev
->dev
,
551 "User request: a_bus_req = 1\n");
553 if (spin_trylock(&mvotg
->wq_lock
)) {
554 mv_otg_run_state_machine(mvotg
, 0);
555 spin_unlock(&mvotg
->wq_lock
);
562 static DEVICE_ATTR_RW(a_bus_req
);
565 a_clr_err_store(struct device
*dev
, struct device_attribute
*attr
,
566 const char *buf
, size_t count
)
568 struct mv_otg
*mvotg
= dev_get_drvdata(dev
);
569 if (!mvotg
->phy
.otg
->default_a
)
576 mvotg
->otg_ctrl
.a_clr_err
= 1;
577 dev_dbg(&mvotg
->pdev
->dev
,
578 "User request: a_clr_err = 1\n");
581 if (spin_trylock(&mvotg
->wq_lock
)) {
582 mv_otg_run_state_machine(mvotg
, 0);
583 spin_unlock(&mvotg
->wq_lock
);
589 static DEVICE_ATTR_WO(a_clr_err
);
592 a_bus_drop_show(struct device
*dev
, struct device_attribute
*attr
,
595 struct mv_otg
*mvotg
= dev_get_drvdata(dev
);
596 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
597 mvotg
->otg_ctrl
.a_bus_drop
);
601 a_bus_drop_store(struct device
*dev
, struct device_attribute
*attr
,
602 const char *buf
, size_t count
)
604 struct mv_otg
*mvotg
= dev_get_drvdata(dev
);
605 if (!mvotg
->phy
.otg
->default_a
)
612 mvotg
->otg_ctrl
.a_bus_drop
= 0;
613 dev_dbg(&mvotg
->pdev
->dev
,
614 "User request: a_bus_drop = 0\n");
615 } else if (buf
[0] == '1') {
616 mvotg
->otg_ctrl
.a_bus_drop
= 1;
617 mvotg
->otg_ctrl
.a_bus_req
= 0;
618 dev_dbg(&mvotg
->pdev
->dev
,
619 "User request: a_bus_drop = 1\n");
620 dev_dbg(&mvotg
->pdev
->dev
,
621 "User request: and a_bus_req = 0\n");
624 if (spin_trylock(&mvotg
->wq_lock
)) {
625 mv_otg_run_state_machine(mvotg
, 0);
626 spin_unlock(&mvotg
->wq_lock
);
632 static DEVICE_ATTR_RW(a_bus_drop
);
634 static struct attribute
*inputs_attrs
[] = {
635 &dev_attr_a_bus_req
.attr
,
636 &dev_attr_a_clr_err
.attr
,
637 &dev_attr_a_bus_drop
.attr
,
641 static const struct attribute_group inputs_attr_group
= {
643 .attrs
= inputs_attrs
,
646 static int mv_otg_remove(struct platform_device
*pdev
)
648 struct mv_otg
*mvotg
= platform_get_drvdata(pdev
);
650 sysfs_remove_group(&mvotg
->pdev
->dev
.kobj
, &inputs_attr_group
);
653 flush_workqueue(mvotg
->qwork
);
654 destroy_workqueue(mvotg
->qwork
);
657 mv_otg_disable(mvotg
);
659 usb_remove_phy(&mvotg
->phy
);
664 static int mv_otg_probe(struct platform_device
*pdev
)
666 struct mv_usb_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
667 struct mv_otg
*mvotg
;
673 dev_err(&pdev
->dev
, "failed to get platform data\n");
677 mvotg
= devm_kzalloc(&pdev
->dev
, sizeof(*mvotg
), GFP_KERNEL
);
681 otg
= devm_kzalloc(&pdev
->dev
, sizeof(*otg
), GFP_KERNEL
);
685 platform_set_drvdata(pdev
, mvotg
);
688 mvotg
->pdata
= pdata
;
690 mvotg
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
691 if (IS_ERR(mvotg
->clk
))
692 return PTR_ERR(mvotg
->clk
);
694 mvotg
->qwork
= create_singlethread_workqueue("mv_otg_queue");
696 dev_dbg(&pdev
->dev
, "cannot create workqueue for OTG\n");
700 INIT_DELAYED_WORK(&mvotg
->work
, mv_otg_work
);
702 /* OTG common part */
704 mvotg
->phy
.dev
= &pdev
->dev
;
705 mvotg
->phy
.otg
= otg
;
706 mvotg
->phy
.label
= driver_name
;
708 otg
->state
= OTG_STATE_UNDEFINED
;
709 otg
->usb_phy
= &mvotg
->phy
;
710 otg
->set_host
= mv_otg_set_host
;
711 otg
->set_peripheral
= mv_otg_set_peripheral
;
712 otg
->set_vbus
= mv_otg_set_vbus
;
714 for (i
= 0; i
< OTG_TIMER_NUM
; i
++)
715 timer_setup(&mvotg
->otg_ctrl
.timer
[i
],
716 mv_otg_timer_await_bcon
, 0);
718 r
= platform_get_resource_byname(mvotg
->pdev
,
719 IORESOURCE_MEM
, "phyregs");
721 dev_err(&pdev
->dev
, "no phy I/O memory resource defined\n");
723 goto err_destroy_workqueue
;
726 mvotg
->phy_regs
= devm_ioremap(&pdev
->dev
, r
->start
, resource_size(r
));
727 if (mvotg
->phy_regs
== NULL
) {
728 dev_err(&pdev
->dev
, "failed to map phy I/O memory\n");
730 goto err_destroy_workqueue
;
733 r
= platform_get_resource_byname(mvotg
->pdev
,
734 IORESOURCE_MEM
, "capregs");
736 dev_err(&pdev
->dev
, "no I/O memory resource defined\n");
738 goto err_destroy_workqueue
;
741 mvotg
->cap_regs
= devm_ioremap(&pdev
->dev
, r
->start
, resource_size(r
));
742 if (mvotg
->cap_regs
== NULL
) {
743 dev_err(&pdev
->dev
, "failed to map I/O memory\n");
745 goto err_destroy_workqueue
;
748 /* we will acces controller register, so enable the udc controller */
749 retval
= mv_otg_enable_internal(mvotg
);
751 dev_err(&pdev
->dev
, "mv otg enable error %d\n", retval
);
752 goto err_destroy_workqueue
;
756 (struct mv_otg_regs __iomem
*) ((unsigned long) mvotg
->cap_regs
757 + (readl(mvotg
->cap_regs
) & CAPLENGTH_MASK
));
760 retval
= devm_request_threaded_irq(&pdev
->dev
, pdata
->id
->irq
,
761 NULL
, mv_otg_inputs_irq
,
762 IRQF_ONESHOT
, "id", mvotg
);
765 "Failed to request irq for ID\n");
771 mvotg
->clock_gating
= 1;
772 retval
= devm_request_threaded_irq(&pdev
->dev
, pdata
->vbus
->irq
,
773 NULL
, mv_otg_inputs_irq
,
774 IRQF_ONESHOT
, "vbus", mvotg
);
777 "Failed to request irq for VBUS, "
778 "disable clock gating\n");
779 mvotg
->clock_gating
= 0;
784 if (pdata
->disable_otg_clock_gating
)
785 mvotg
->clock_gating
= 0;
788 mv_otg_init_irq(mvotg
);
790 r
= platform_get_resource(mvotg
->pdev
, IORESOURCE_IRQ
, 0);
792 dev_err(&pdev
->dev
, "no IRQ resource defined\n");
794 goto err_disable_clk
;
797 mvotg
->irq
= r
->start
;
798 if (devm_request_irq(&pdev
->dev
, mvotg
->irq
, mv_otg_irq
, IRQF_SHARED
,
799 driver_name
, mvotg
)) {
800 dev_err(&pdev
->dev
, "Request irq %d for OTG failed\n",
804 goto err_disable_clk
;
807 retval
= usb_add_phy(&mvotg
->phy
, USB_PHY_TYPE_USB2
);
809 dev_err(&pdev
->dev
, "can't register transceiver, %d\n",
811 goto err_disable_clk
;
814 retval
= sysfs_create_group(&pdev
->dev
.kobj
, &inputs_attr_group
);
817 "Can't register sysfs attr group: %d\n", retval
);
821 spin_lock_init(&mvotg
->wq_lock
);
822 if (spin_trylock(&mvotg
->wq_lock
)) {
823 mv_otg_run_state_machine(mvotg
, 2 * HZ
);
824 spin_unlock(&mvotg
->wq_lock
);
828 "successful probe OTG device %s clock gating.\n",
829 mvotg
->clock_gating
? "with" : "without");
834 usb_remove_phy(&mvotg
->phy
);
836 mv_otg_disable_internal(mvotg
);
837 err_destroy_workqueue
:
838 flush_workqueue(mvotg
->qwork
);
839 destroy_workqueue(mvotg
->qwork
);
845 static int mv_otg_suspend(struct platform_device
*pdev
, pm_message_t state
)
847 struct mv_otg
*mvotg
= platform_get_drvdata(pdev
);
849 if (mvotg
->phy
.otg
->state
!= OTG_STATE_B_IDLE
) {
851 "OTG state is not B_IDLE, it is %d!\n",
852 mvotg
->phy
.otg
->state
);
856 if (!mvotg
->clock_gating
)
857 mv_otg_disable_internal(mvotg
);
862 static int mv_otg_resume(struct platform_device
*pdev
)
864 struct mv_otg
*mvotg
= platform_get_drvdata(pdev
);
867 if (!mvotg
->clock_gating
) {
868 mv_otg_enable_internal(mvotg
);
870 otgsc
= readl(&mvotg
->op_regs
->otgsc
);
871 otgsc
|= mvotg
->irq_en
;
872 writel(otgsc
, &mvotg
->op_regs
->otgsc
);
874 if (spin_trylock(&mvotg
->wq_lock
)) {
875 mv_otg_run_state_machine(mvotg
, 0);
876 spin_unlock(&mvotg
->wq_lock
);
883 static struct platform_driver mv_otg_driver
= {
884 .probe
= mv_otg_probe
,
885 .remove
= mv_otg_remove
,
890 .suspend
= mv_otg_suspend
,
891 .resume
= mv_otg_resume
,
894 module_platform_driver(mv_otg_driver
);