1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
8 #include <linux/module.h>
9 #include <linux/kernel.h>
11 #include <linux/iopoll.h>
12 #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>
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>
26 #include "phy-mv-usb.h"
28 #define DRIVER_DESC "Marvell USB OTG transceiver driver"
30 MODULE_DESCRIPTION(DRIVER_DESC);
31 MODULE_LICENSE("GPL");
33 static const char driver_name[] = "mv-otg";
35 static char *state_string[] = {
52 static int mv_otg_set_vbus(struct usb_otg *otg, bool on)
54 struct mv_otg *mvotg = container_of(otg->usb_phy, struct mv_otg, phy);
55 if (mvotg->pdata->set_vbus == NULL)
58 return mvotg->pdata->set_vbus(on);
61 static int mv_otg_set_host(struct usb_otg *otg,
69 static int mv_otg_set_peripheral(struct usb_otg *otg,
70 struct usb_gadget *gadget)
77 static void mv_otg_run_state_machine(struct mv_otg *mvotg,
80 dev_dbg(&mvotg->pdev->dev, "transceiver is updated\n");
84 queue_delayed_work(mvotg->qwork, &mvotg->work, delay);
87 static void mv_otg_timer_await_bcon(struct timer_list *t)
89 struct mv_otg *mvotg = from_timer(mvotg, t,
90 otg_ctrl.timer[A_WAIT_BCON_TIMER]);
92 mvotg->otg_ctrl.a_wait_bcon_timeout = 1;
94 dev_info(&mvotg->pdev->dev, "B Device No Response!\n");
96 if (spin_trylock(&mvotg->wq_lock)) {
97 mv_otg_run_state_machine(mvotg, 0);
98 spin_unlock(&mvotg->wq_lock);
102 static int mv_otg_cancel_timer(struct mv_otg *mvotg, unsigned int id)
104 struct timer_list *timer;
106 if (id >= OTG_TIMER_NUM)
109 timer = &mvotg->otg_ctrl.timer[id];
111 if (timer_pending(timer))
117 static int mv_otg_set_timer(struct mv_otg *mvotg, unsigned int id,
118 unsigned long interval)
120 struct timer_list *timer;
122 if (id >= OTG_TIMER_NUM)
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);
131 timer->expires = jiffies + interval;
137 static int mv_otg_reset(struct mv_otg *mvotg)
142 /* Stop the controller */
143 tmp = readl(&mvotg->op_regs->usbcmd);
144 tmp &= ~USBCMD_RUN_STOP;
145 writel(tmp, &mvotg->op_regs->usbcmd);
147 /* Reset the controller to get default values */
148 writel(USBCMD_CTRL_RESET, &mvotg->op_regs->usbcmd);
150 ret = readl_poll_timeout_atomic(&mvotg->op_regs->usbcmd, tmp,
151 (tmp & USBCMD_CTRL_RESET), 10, 10000);
153 dev_err(&mvotg->pdev->dev,
154 "Wait for RESET completed TIMEOUT\n");
158 writel(0x0, &mvotg->op_regs->usbintr);
159 tmp = readl(&mvotg->op_regs->usbsts);
160 writel(tmp, &mvotg->op_regs->usbsts);
165 static void mv_otg_init_irq(struct mv_otg *mvotg)
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;
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;
181 if (mvotg->pdata->id == NULL) {
182 mvotg->irq_en |= OTGSC_INTR_USB_ID;
183 mvotg->irq_status |= OTGSC_INTSTS_USB_ID;
186 otgsc = readl(&mvotg->op_regs->otgsc);
187 otgsc |= mvotg->irq_en;
188 writel(otgsc, &mvotg->op_regs->otgsc);
191 static void mv_otg_start_host(struct mv_otg *mvotg, int on)
194 struct usb_otg *otg = mvotg->phy.otg;
200 dev_info(&mvotg->pdev->dev, "%s host\n", on ? "start" : "stop");
202 hcd = bus_to_hcd(otg->host);
205 usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
206 device_wakeup_enable(hcd->self.controller);
210 #endif /* CONFIG_USB */
213 static void mv_otg_start_periphrals(struct mv_otg *mvotg, int on)
215 struct usb_otg *otg = mvotg->phy.otg;
220 dev_info(mvotg->phy.dev, "gadget %s\n", on ? "on" : "off");
223 usb_gadget_vbus_connect(otg->gadget);
225 usb_gadget_vbus_disconnect(otg->gadget);
228 static void otg_clock_enable(struct mv_otg *mvotg)
230 clk_prepare_enable(mvotg->clk);
233 static void otg_clock_disable(struct mv_otg *mvotg)
235 clk_disable_unprepare(mvotg->clk);
238 static int mv_otg_enable_internal(struct mv_otg *mvotg)
245 dev_dbg(&mvotg->pdev->dev, "otg enabled\n");
247 otg_clock_enable(mvotg);
248 if (mvotg->pdata->phy_init) {
249 retval = mvotg->pdata->phy_init(mvotg->phy_regs);
251 dev_err(&mvotg->pdev->dev,
252 "init phy error %d\n", retval);
253 otg_clock_disable(mvotg);
263 static int mv_otg_enable(struct mv_otg *mvotg)
265 if (mvotg->clock_gating)
266 return mv_otg_enable_internal(mvotg);
271 static void mv_otg_disable_internal(struct mv_otg *mvotg)
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);
282 static void mv_otg_disable(struct mv_otg *mvotg)
284 if (mvotg->clock_gating)
285 mv_otg_disable_internal(mvotg);
288 static void mv_otg_update_inputs(struct mv_otg *mvotg)
290 struct mv_otg_ctrl *otg_ctrl = &mvotg->otg_ctrl;
293 otgsc = readl(&mvotg->op_regs->otgsc);
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;
300 otg_ctrl->b_sess_vld = 0;
301 otg_ctrl->b_sess_end = 1;
304 otg_ctrl->b_sess_vld = !!(otgsc & OTGSC_STS_B_SESSION_VALID);
305 otg_ctrl->b_sess_end = !!(otgsc & OTGSC_STS_B_SESSION_END);
308 if (mvotg->pdata->id)
309 otg_ctrl->id = !!mvotg->pdata->id->poll();
311 otg_ctrl->id = !!(otgsc & OTGSC_STS_USB_ID);
313 if (mvotg->pdata->otg_force_a_bus_req && !otg_ctrl->id)
314 otg_ctrl->a_bus_req = 1;
316 otg_ctrl->a_sess_vld = !!(otgsc & OTGSC_STS_A_SESSION_VALID);
317 otg_ctrl->a_vbus_vld = !!(otgsc & OTGSC_STS_A_VBUS_VALID);
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);
327 static void mv_otg_update_state(struct mv_otg *mvotg)
329 struct mv_otg_ctrl *otg_ctrl = &mvotg->otg_ctrl;
330 int old_state = mvotg->phy.otg->state;
333 case OTG_STATE_UNDEFINED:
334 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
336 case OTG_STATE_B_IDLE:
337 if (otg_ctrl->id == 0)
338 mvotg->phy.otg->state = OTG_STATE_A_IDLE;
339 else if (otg_ctrl->b_sess_vld)
340 mvotg->phy.otg->state = OTG_STATE_B_PERIPHERAL;
342 case OTG_STATE_B_PERIPHERAL:
343 if (!otg_ctrl->b_sess_vld || otg_ctrl->id == 0)
344 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
346 case OTG_STATE_A_IDLE:
348 mvotg->phy.otg->state = OTG_STATE_B_IDLE;
349 else if (!(otg_ctrl->a_bus_drop) &&
350 (otg_ctrl->a_bus_req || otg_ctrl->a_srp_det))
351 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VRISE;
353 case OTG_STATE_A_WAIT_VRISE:
354 if (otg_ctrl->a_vbus_vld)
355 mvotg->phy.otg->state = OTG_STATE_A_WAIT_BCON;
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;
362 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VFALL;
363 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;
367 mvotg->phy.otg->state = OTG_STATE_A_VBUS_ERR;
368 } 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;
371 mvotg->phy.otg->state = OTG_STATE_A_HOST;
374 case OTG_STATE_A_HOST:
375 if (otg_ctrl->id || !otg_ctrl->b_conn
376 || otg_ctrl->a_bus_drop)
377 mvotg->phy.otg->state = OTG_STATE_A_WAIT_BCON;
378 else if (!otg_ctrl->a_vbus_vld)
379 mvotg->phy.otg->state = OTG_STATE_A_VBUS_ERR;
381 case OTG_STATE_A_WAIT_VFALL:
383 || (!otg_ctrl->b_conn && otg_ctrl->a_sess_vld)
384 || otg_ctrl->a_bus_req)
385 mvotg->phy.otg->state = OTG_STATE_A_IDLE;
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;
391 mvotg->phy.otg->state = OTG_STATE_A_WAIT_VFALL;
399 static void mv_otg_work(struct work_struct *work)
401 struct mv_otg *mvotg;
405 mvotg = container_of(to_delayed_work(work), struct mv_otg, work);
408 /* work queue is single thread, or we need spin_lock to protect */
409 otg = mvotg->phy.otg;
410 old_state = otg->state;
415 mv_otg_update_inputs(mvotg);
416 mv_otg_update_state(mvotg);
418 if (old_state != mvotg->phy.otg->state) {
419 dev_info(&mvotg->pdev->dev, "change from state %s to %s\n",
420 state_string[old_state],
421 state_string[mvotg->phy.otg->state]);
423 switch (mvotg->phy.otg->state) {
424 case OTG_STATE_B_IDLE:
426 if (old_state == OTG_STATE_B_PERIPHERAL)
427 mv_otg_start_periphrals(mvotg, 0);
429 mv_otg_disable(mvotg);
430 usb_phy_set_event(&mvotg->phy, USB_EVENT_NONE);
432 case OTG_STATE_B_PERIPHERAL:
433 mv_otg_enable(mvotg);
434 mv_otg_start_periphrals(mvotg, 1);
435 usb_phy_set_event(&mvotg->phy, USB_EVENT_ENUMERATED);
437 case OTG_STATE_A_IDLE:
439 mv_otg_enable(mvotg);
440 if (old_state == OTG_STATE_A_WAIT_VFALL)
441 mv_otg_start_host(mvotg, 0);
444 case OTG_STATE_A_WAIT_VRISE:
445 mv_otg_set_vbus(otg, 1);
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,
453 * Now, we directly enter A_HOST. So set b_conn = 1
454 * here. In fact, it need host driver to notify us.
456 mvotg->otg_ctrl.b_conn = 1;
458 case OTG_STATE_A_HOST:
460 case OTG_STATE_A_WAIT_VFALL:
462 * Now, we has exited A_HOST. So set b_conn = 0
463 * here. In fact, it need host driver to notify us.
465 mvotg->otg_ctrl.b_conn = 0;
466 mv_otg_set_vbus(otg, 0);
468 case OTG_STATE_A_VBUS_ERR:
477 static irqreturn_t mv_otg_irq(int irq, void *dev)
479 struct mv_otg *mvotg = dev;
482 otgsc = readl(&mvotg->op_regs->otgsc);
483 writel(otgsc, &mvotg->op_regs->otgsc);
486 * if we have vbus, then the vbus detection for B-device
487 * will be done by mv_otg_inputs_irq().
489 if (mvotg->pdata->vbus)
490 if ((otgsc & OTGSC_STS_USB_ID) &&
491 !(otgsc & OTGSC_INTSTS_USB_ID))
494 if ((otgsc & mvotg->irq_status) == 0)
497 mv_otg_run_state_machine(mvotg, 0);
502 static irqreturn_t mv_otg_inputs_irq(int irq, void *dev)
504 struct mv_otg *mvotg = dev;
506 /* The clock may disabled at this time */
507 if (!mvotg->active) {
508 mv_otg_enable(mvotg);
509 mv_otg_init_irq(mvotg);
512 mv_otg_run_state_machine(mvotg, 0);
518 a_bus_req_show(struct device *dev, struct device_attribute *attr, char *buf)
520 struct mv_otg *mvotg = dev_get_drvdata(dev);
521 return scnprintf(buf, PAGE_SIZE, "%d\n",
522 mvotg->otg_ctrl.a_bus_req);
526 a_bus_req_store(struct device *dev, struct device_attribute *attr,
527 const char *buf, size_t count)
529 struct mv_otg *mvotg = dev_get_drvdata(dev);
534 /* We will use this interface to change to A device */
535 if (mvotg->phy.otg->state != OTG_STATE_B_IDLE
536 && mvotg->phy.otg->state != OTG_STATE_A_IDLE)
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);
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");
549 if (spin_trylock(&mvotg->wq_lock)) {
550 mv_otg_run_state_machine(mvotg, 0);
551 spin_unlock(&mvotg->wq_lock);
558 static DEVICE_ATTR_RW(a_bus_req);
561 a_clr_err_store(struct device *dev, struct device_attribute *attr,
562 const char *buf, size_t count)
564 struct mv_otg *mvotg = dev_get_drvdata(dev);
565 if (!mvotg->phy.otg->default_a)
572 mvotg->otg_ctrl.a_clr_err = 1;
573 dev_dbg(&mvotg->pdev->dev,
574 "User request: a_clr_err = 1\n");
577 if (spin_trylock(&mvotg->wq_lock)) {
578 mv_otg_run_state_machine(mvotg, 0);
579 spin_unlock(&mvotg->wq_lock);
585 static DEVICE_ATTR_WO(a_clr_err);
588 a_bus_drop_show(struct device *dev, struct device_attribute *attr,
591 struct mv_otg *mvotg = dev_get_drvdata(dev);
592 return scnprintf(buf, PAGE_SIZE, "%d\n",
593 mvotg->otg_ctrl.a_bus_drop);
597 a_bus_drop_store(struct device *dev, struct device_attribute *attr,
598 const char *buf, size_t count)
600 struct mv_otg *mvotg = dev_get_drvdata(dev);
601 if (!mvotg->phy.otg->default_a)
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");
620 if (spin_trylock(&mvotg->wq_lock)) {
621 mv_otg_run_state_machine(mvotg, 0);
622 spin_unlock(&mvotg->wq_lock);
628 static DEVICE_ATTR_RW(a_bus_drop);
630 static 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,
637 static const struct attribute_group inputs_attr_group = {
639 .attrs = inputs_attrs,
642 static const struct attribute_group *mv_otg_groups[] = {
647 static int mv_otg_remove(struct platform_device *pdev)
649 struct mv_otg *mvotg = platform_get_drvdata(pdev);
652 destroy_workqueue(mvotg->qwork);
654 mv_otg_disable(mvotg);
656 usb_remove_phy(&mvotg->phy);
661 static int mv_otg_probe(struct platform_device *pdev)
663 struct mv_usb_platform_data *pdata = dev_get_platdata(&pdev->dev);
664 struct mv_otg *mvotg;
670 dev_err(&pdev->dev, "failed to get platform data\n");
674 mvotg = devm_kzalloc(&pdev->dev, sizeof(*mvotg), GFP_KERNEL);
678 otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL);
682 platform_set_drvdata(pdev, mvotg);
685 mvotg->pdata = pdata;
687 mvotg->clk = devm_clk_get(&pdev->dev, NULL);
688 if (IS_ERR(mvotg->clk))
689 return PTR_ERR(mvotg->clk);
691 mvotg->qwork = create_singlethread_workqueue("mv_otg_queue");
693 dev_dbg(&pdev->dev, "cannot create workqueue for OTG\n");
697 INIT_DELAYED_WORK(&mvotg->work, mv_otg_work);
699 /* OTG common part */
701 mvotg->phy.dev = &pdev->dev;
702 mvotg->phy.otg = otg;
703 mvotg->phy.label = driver_name;
705 otg->state = OTG_STATE_UNDEFINED;
706 otg->usb_phy = &mvotg->phy;
707 otg->set_host = mv_otg_set_host;
708 otg->set_peripheral = mv_otg_set_peripheral;
709 otg->set_vbus = mv_otg_set_vbus;
711 for (i = 0; i < OTG_TIMER_NUM; i++)
712 timer_setup(&mvotg->otg_ctrl.timer[i],
713 mv_otg_timer_await_bcon, 0);
715 r = platform_get_resource_byname(mvotg->pdev,
716 IORESOURCE_MEM, "phyregs");
718 dev_err(&pdev->dev, "no phy I/O memory resource defined\n");
720 goto err_destroy_workqueue;
723 mvotg->phy_regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
724 if (mvotg->phy_regs == NULL) {
725 dev_err(&pdev->dev, "failed to map phy I/O memory\n");
727 goto err_destroy_workqueue;
730 r = platform_get_resource_byname(mvotg->pdev,
731 IORESOURCE_MEM, "capregs");
733 dev_err(&pdev->dev, "no I/O memory resource defined\n");
735 goto err_destroy_workqueue;
738 mvotg->cap_regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
739 if (mvotg->cap_regs == NULL) {
740 dev_err(&pdev->dev, "failed to map I/O memory\n");
742 goto err_destroy_workqueue;
745 /* we will acces controller register, so enable the udc controller */
746 retval = mv_otg_enable_internal(mvotg);
748 dev_err(&pdev->dev, "mv otg enable error %d\n", retval);
749 goto err_destroy_workqueue;
753 (struct mv_otg_regs __iomem *) ((unsigned long) mvotg->cap_regs
754 + (readl(mvotg->cap_regs) & CAPLENGTH_MASK));
757 retval = devm_request_threaded_irq(&pdev->dev, pdata->id->irq,
758 NULL, mv_otg_inputs_irq,
759 IRQF_ONESHOT, "id", mvotg);
762 "Failed to request irq for ID\n");
768 mvotg->clock_gating = 1;
769 retval = devm_request_threaded_irq(&pdev->dev, pdata->vbus->irq,
770 NULL, mv_otg_inputs_irq,
771 IRQF_ONESHOT, "vbus", mvotg);
774 "Failed to request irq for VBUS, "
775 "disable clock gating\n");
776 mvotg->clock_gating = 0;
781 if (pdata->disable_otg_clock_gating)
782 mvotg->clock_gating = 0;
785 mv_otg_init_irq(mvotg);
787 r = platform_get_resource(mvotg->pdev, IORESOURCE_IRQ, 0);
789 dev_err(&pdev->dev, "no IRQ resource defined\n");
791 goto err_disable_clk;
794 mvotg->irq = r->start;
795 if (devm_request_irq(&pdev->dev, mvotg->irq, mv_otg_irq, IRQF_SHARED,
796 driver_name, mvotg)) {
797 dev_err(&pdev->dev, "Request irq %d for OTG failed\n",
801 goto err_disable_clk;
804 retval = usb_add_phy(&mvotg->phy, USB_PHY_TYPE_USB2);
806 dev_err(&pdev->dev, "can't register transceiver, %d\n",
808 goto err_disable_clk;
811 spin_lock_init(&mvotg->wq_lock);
812 if (spin_trylock(&mvotg->wq_lock)) {
813 mv_otg_run_state_machine(mvotg, 2 * HZ);
814 spin_unlock(&mvotg->wq_lock);
818 "successful probe OTG device %s clock gating.\n",
819 mvotg->clock_gating ? "with" : "without");
824 mv_otg_disable_internal(mvotg);
825 err_destroy_workqueue:
826 destroy_workqueue(mvotg->qwork);
832 static int mv_otg_suspend(struct platform_device *pdev, pm_message_t state)
834 struct mv_otg *mvotg = platform_get_drvdata(pdev);
836 if (mvotg->phy.otg->state != OTG_STATE_B_IDLE) {
838 "OTG state is not B_IDLE, it is %d!\n",
839 mvotg->phy.otg->state);
843 if (!mvotg->clock_gating)
844 mv_otg_disable_internal(mvotg);
849 static int mv_otg_resume(struct platform_device *pdev)
851 struct mv_otg *mvotg = platform_get_drvdata(pdev);
854 if (!mvotg->clock_gating) {
855 mv_otg_enable_internal(mvotg);
857 otgsc = readl(&mvotg->op_regs->otgsc);
858 otgsc |= mvotg->irq_en;
859 writel(otgsc, &mvotg->op_regs->otgsc);
861 if (spin_trylock(&mvotg->wq_lock)) {
862 mv_otg_run_state_machine(mvotg, 0);
863 spin_unlock(&mvotg->wq_lock);
870 static struct platform_driver mv_otg_driver = {
871 .probe = mv_otg_probe,
872 .remove = mv_otg_remove,
875 .dev_groups = mv_otg_groups,
878 .suspend = mv_otg_suspend,
879 .resume = mv_otg_resume,
882 module_platform_driver(mv_otg_driver);