usb: dwc3: core: modify IO memory resource after deferred probe completes
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / usb / dwc3 / core.c
1 /**
2  * core.c - DesignWare USB3 DRD Controller Core file
3  *
4  * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
5  *
6  * Authors: Felipe Balbi <balbi@ti.com>,
7  *          Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2  of
11  * the License as published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
26 #include <linux/platform_device.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/interrupt.h>
29 #include <linux/ioport.h>
30 #include <linux/io.h>
31 #include <linux/list.h>
32 #include <linux/delay.h>
33 #include <linux/dma-mapping.h>
34 #include <linux/of.h>
35
36 #include <linux/usb/otg.h>
37 #include <linux/usb/ch9.h>
38 #include <linux/usb/gadget.h>
39 #include <linux/usb/of.h>
40 #include <linux/usb/otg.h>
41
42 #include "platform_data.h"
43 #include "core.h"
44 #include "gadget.h"
45 #include "io.h"
46
47 #include "debug.h"
48
49 /* -------------------------------------------------------------------------- */
50
51 void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
52 {
53         u32 reg;
54
55         reg = dwc3_readl(dwc->regs, DWC3_GCTL);
56         reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
57         reg |= DWC3_GCTL_PRTCAPDIR(mode);
58         dwc3_writel(dwc->regs, DWC3_GCTL, reg);
59 }
60
61 /**
62  * dwc3_core_soft_reset - Issues core soft reset and PHY reset
63  * @dwc: pointer to our context structure
64  */
65 static void dwc3_core_soft_reset(struct dwc3 *dwc)
66 {
67         u32             reg;
68
69         /* Before Resetting PHY, put Core in Reset */
70         reg = dwc3_readl(dwc->regs, DWC3_GCTL);
71         reg |= DWC3_GCTL_CORESOFTRESET;
72         dwc3_writel(dwc->regs, DWC3_GCTL, reg);
73
74         /* Assert USB3 PHY reset */
75         reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
76         reg |= DWC3_GUSB3PIPECTL_PHYSOFTRST;
77         dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
78
79         /* Assert USB2 PHY reset */
80         reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
81         reg |= DWC3_GUSB2PHYCFG_PHYSOFTRST;
82         dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
83
84         usb_phy_init(dwc->usb2_phy);
85         usb_phy_init(dwc->usb3_phy);
86         mdelay(100);
87
88         /* Clear USB3 PHY reset */
89         reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
90         reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST;
91         dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
92
93         /* Clear USB2 PHY reset */
94         reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
95         reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST;
96         dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
97
98         mdelay(100);
99
100         /* After PHYs are stable we can take Core out of reset state */
101         reg = dwc3_readl(dwc->regs, DWC3_GCTL);
102         reg &= ~DWC3_GCTL_CORESOFTRESET;
103         dwc3_writel(dwc->regs, DWC3_GCTL, reg);
104 }
105
106 /**
107  * dwc3_free_one_event_buffer - Frees one event buffer
108  * @dwc: Pointer to our controller context structure
109  * @evt: Pointer to event buffer to be freed
110  */
111 static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
112                 struct dwc3_event_buffer *evt)
113 {
114         dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
115 }
116
117 /**
118  * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
119  * @dwc: Pointer to our controller context structure
120  * @length: size of the event buffer
121  *
122  * Returns a pointer to the allocated event buffer structure on success
123  * otherwise ERR_PTR(errno).
124  */
125 static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
126                 unsigned length)
127 {
128         struct dwc3_event_buffer        *evt;
129
130         evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
131         if (!evt)
132                 return ERR_PTR(-ENOMEM);
133
134         evt->dwc        = dwc;
135         evt->length     = length;
136         evt->buf        = dma_alloc_coherent(dwc->dev, length,
137                         &evt->dma, GFP_KERNEL);
138         if (!evt->buf)
139                 return ERR_PTR(-ENOMEM);
140
141         return evt;
142 }
143
144 /**
145  * dwc3_free_event_buffers - frees all allocated event buffers
146  * @dwc: Pointer to our controller context structure
147  */
148 static void dwc3_free_event_buffers(struct dwc3 *dwc)
149 {
150         struct dwc3_event_buffer        *evt;
151         int i;
152
153         for (i = 0; i < dwc->num_event_buffers; i++) {
154                 evt = dwc->ev_buffs[i];
155                 if (evt)
156                         dwc3_free_one_event_buffer(dwc, evt);
157         }
158 }
159
160 /**
161  * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
162  * @dwc: pointer to our controller context structure
163  * @length: size of event buffer
164  *
165  * Returns 0 on success otherwise negative errno. In the error case, dwc
166  * may contain some buffers allocated but not all which were requested.
167  */
168 static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
169 {
170         int                     num;
171         int                     i;
172
173         num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
174         dwc->num_event_buffers = num;
175
176         dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
177                         GFP_KERNEL);
178         if (!dwc->ev_buffs) {
179                 dev_err(dwc->dev, "can't allocate event buffers array\n");
180                 return -ENOMEM;
181         }
182
183         for (i = 0; i < num; i++) {
184                 struct dwc3_event_buffer        *evt;
185
186                 evt = dwc3_alloc_one_event_buffer(dwc, length);
187                 if (IS_ERR(evt)) {
188                         dev_err(dwc->dev, "can't allocate event buffer\n");
189                         return PTR_ERR(evt);
190                 }
191                 dwc->ev_buffs[i] = evt;
192         }
193
194         return 0;
195 }
196
197 /**
198  * dwc3_event_buffers_setup - setup our allocated event buffers
199  * @dwc: pointer to our controller context structure
200  *
201  * Returns 0 on success otherwise negative errno.
202  */
203 static int dwc3_event_buffers_setup(struct dwc3 *dwc)
204 {
205         struct dwc3_event_buffer        *evt;
206         int                             n;
207
208         for (n = 0; n < dwc->num_event_buffers; n++) {
209                 evt = dwc->ev_buffs[n];
210                 dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n",
211                                 evt->buf, (unsigned long long) evt->dma,
212                                 evt->length);
213
214                 evt->lpos = 0;
215
216                 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n),
217                                 lower_32_bits(evt->dma));
218                 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n),
219                                 upper_32_bits(evt->dma));
220                 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n),
221                                 DWC3_GEVNTSIZ_SIZE(evt->length));
222                 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
223         }
224
225         return 0;
226 }
227
228 static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
229 {
230         struct dwc3_event_buffer        *evt;
231         int                             n;
232
233         for (n = 0; n < dwc->num_event_buffers; n++) {
234                 evt = dwc->ev_buffs[n];
235
236                 evt->lpos = 0;
237
238                 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
239                 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
240                 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
241                                 | DWC3_GEVNTSIZ_SIZE(0));
242                 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
243         }
244 }
245
246 static void dwc3_core_num_eps(struct dwc3 *dwc)
247 {
248         struct dwc3_hwparams    *parms = &dwc->hwparams;
249
250         dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
251         dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
252
253         dev_vdbg(dwc->dev, "found %d IN and %d OUT endpoints\n",
254                         dwc->num_in_eps, dwc->num_out_eps);
255 }
256
257 static void dwc3_cache_hwparams(struct dwc3 *dwc)
258 {
259         struct dwc3_hwparams    *parms = &dwc->hwparams;
260
261         parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
262         parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
263         parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
264         parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
265         parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
266         parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
267         parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
268         parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
269         parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
270 }
271
272 /**
273  * dwc3_core_init - Low-level initialization of DWC3 Core
274  * @dwc: Pointer to our controller context structure
275  *
276  * Returns 0 on success otherwise negative errno.
277  */
278 static int dwc3_core_init(struct dwc3 *dwc)
279 {
280         unsigned long           timeout;
281         u32                     reg;
282         int                     ret;
283
284         reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
285         /* This should read as U3 followed by revision number */
286         if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) {
287                 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
288                 ret = -ENODEV;
289                 goto err0;
290         }
291         dwc->revision = reg;
292
293         /* issue device SoftReset too */
294         timeout = jiffies + msecs_to_jiffies(500);
295         dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
296         do {
297                 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
298                 if (!(reg & DWC3_DCTL_CSFTRST))
299                         break;
300
301                 if (time_after(jiffies, timeout)) {
302                         dev_err(dwc->dev, "Reset Timed Out\n");
303                         ret = -ETIMEDOUT;
304                         goto err0;
305                 }
306
307                 cpu_relax();
308         } while (true);
309
310         dwc3_core_soft_reset(dwc);
311
312         reg = dwc3_readl(dwc->regs, DWC3_GCTL);
313         reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
314         reg &= ~DWC3_GCTL_DISSCRAMBLE;
315
316         switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
317         case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
318                 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
319                 break;
320         default:
321                 dev_dbg(dwc->dev, "No power optimization available\n");
322         }
323
324         /*
325          * WORKAROUND: DWC3 revisions <1.90a have a bug
326          * where the device can fail to connect at SuperSpeed
327          * and falls back to high-speed mode which causes
328          * the device to enter a Connect/Disconnect loop
329          */
330         if (dwc->revision < DWC3_REVISION_190A)
331                 reg |= DWC3_GCTL_U2RSTECN;
332
333         dwc3_core_num_eps(dwc);
334
335         dwc3_writel(dwc->regs, DWC3_GCTL, reg);
336
337         return 0;
338
339 err0:
340         return ret;
341 }
342
343 static void dwc3_core_exit(struct dwc3 *dwc)
344 {
345         usb_phy_shutdown(dwc->usb2_phy);
346         usb_phy_shutdown(dwc->usb3_phy);
347 }
348
349 #define DWC3_ALIGN_MASK         (16 - 1)
350
351 static int dwc3_probe(struct platform_device *pdev)
352 {
353         struct dwc3_platform_data *pdata = pdev->dev.platform_data;
354         struct device_node      *node = pdev->dev.of_node;
355         struct resource         *res;
356         struct dwc3             *dwc;
357         struct device           *dev = &pdev->dev;
358
359         int                     ret = -ENOMEM;
360
361         void __iomem            *regs;
362         void                    *mem;
363
364         mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
365         if (!mem) {
366                 dev_err(dev, "not enough memory\n");
367                 return -ENOMEM;
368         }
369         dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
370         dwc->mem = mem;
371
372         res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
373         if (!res) {
374                 dev_err(dev, "missing IRQ\n");
375                 return -ENODEV;
376         }
377         dwc->xhci_resources[1].start = res->start;
378         dwc->xhci_resources[1].end = res->end;
379         dwc->xhci_resources[1].flags = res->flags;
380         dwc->xhci_resources[1].name = res->name;
381
382         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
383         if (!res) {
384                 dev_err(dev, "missing memory resource\n");
385                 return -ENODEV;
386         }
387
388         if (node) {
389                 dwc->maximum_speed = of_usb_get_maximum_speed(node);
390
391                 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
392                 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
393
394                 dwc->needs_fifo_resize = of_property_read_bool(node, "tx-fifo-resize");
395                 dwc->dr_mode = of_usb_get_dr_mode(node);
396         } else {
397                 dwc->maximum_speed = pdata->maximum_speed;
398
399                 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
400                 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
401
402                 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
403                 dwc->dr_mode = pdata->dr_mode;
404         }
405
406         /* default to superspeed if no maximum_speed passed */
407         if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
408                 dwc->maximum_speed = USB_SPEED_SUPER;
409
410         if (IS_ERR(dwc->usb2_phy)) {
411                 ret = PTR_ERR(dwc->usb2_phy);
412
413                 /*
414                  * if -ENXIO is returned, it means PHY layer wasn't
415                  * enabled, so it makes no sense to return -EPROBE_DEFER
416                  * in that case, since no PHY driver will ever probe.
417                  */
418                 if (ret == -ENXIO)
419                         return ret;
420
421                 dev_err(dev, "no usb2 phy configured\n");
422                 return -EPROBE_DEFER;
423         }
424
425         if (IS_ERR(dwc->usb3_phy)) {
426                 ret = PTR_ERR(dwc->usb3_phy);
427
428                 /*
429                  * if -ENXIO is returned, it means PHY layer wasn't
430                  * enabled, so it makes no sense to return -EPROBE_DEFER
431                  * in that case, since no PHY driver will ever probe.
432                  */
433                 if (ret == -ENXIO)
434                         return ret;
435
436                 dev_err(dev, "no usb3 phy configured\n");
437                 return -EPROBE_DEFER;
438         }
439
440         dwc->xhci_resources[0].start = res->start;
441         dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
442                                         DWC3_XHCI_REGS_END;
443         dwc->xhci_resources[0].flags = res->flags;
444         dwc->xhci_resources[0].name = res->name;
445
446         res->start += DWC3_GLOBALS_REGS_START;
447
448         /*
449          * Request memory region but exclude xHCI regs,
450          * since it will be requested by the xhci-plat driver.
451          */
452         regs = devm_ioremap_resource(dev, res);
453         if (IS_ERR(regs))
454                 return PTR_ERR(regs);
455
456         usb_phy_set_suspend(dwc->usb2_phy, 0);
457         usb_phy_set_suspend(dwc->usb3_phy, 0);
458
459         spin_lock_init(&dwc->lock);
460         platform_set_drvdata(pdev, dwc);
461
462         dwc->regs       = regs;
463         dwc->regs_size  = resource_size(res);
464         dwc->dev        = dev;
465
466         dev->dma_mask   = dev->parent->dma_mask;
467         dev->dma_parms  = dev->parent->dma_parms;
468         dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
469
470         pm_runtime_enable(dev);
471         pm_runtime_get_sync(dev);
472         pm_runtime_forbid(dev);
473
474         dwc3_cache_hwparams(dwc);
475
476         ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
477         if (ret) {
478                 dev_err(dwc->dev, "failed to allocate event buffers\n");
479                 ret = -ENOMEM;
480                 goto err0;
481         }
482
483         ret = dwc3_core_init(dwc);
484         if (ret) {
485                 dev_err(dev, "failed to initialize core\n");
486                 goto err0;
487         }
488
489         ret = dwc3_event_buffers_setup(dwc);
490         if (ret) {
491                 dev_err(dwc->dev, "failed to setup event buffers\n");
492                 goto err1;
493         }
494
495         if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
496                 dwc->dr_mode = USB_DR_MODE_HOST;
497         else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
498                 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
499
500         if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
501                 dwc->dr_mode = USB_DR_MODE_OTG;
502
503         switch (dwc->dr_mode) {
504         case USB_DR_MODE_PERIPHERAL:
505                 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
506                 ret = dwc3_gadget_init(dwc);
507                 if (ret) {
508                         dev_err(dev, "failed to initialize gadget\n");
509                         goto err2;
510                 }
511                 break;
512         case USB_DR_MODE_HOST:
513                 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
514                 ret = dwc3_host_init(dwc);
515                 if (ret) {
516                         dev_err(dev, "failed to initialize host\n");
517                         goto err2;
518                 }
519                 break;
520         case USB_DR_MODE_OTG:
521                 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
522                 ret = dwc3_host_init(dwc);
523                 if (ret) {
524                         dev_err(dev, "failed to initialize host\n");
525                         goto err2;
526                 }
527
528                 ret = dwc3_gadget_init(dwc);
529                 if (ret) {
530                         dev_err(dev, "failed to initialize gadget\n");
531                         goto err2;
532                 }
533                 break;
534         default:
535                 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
536                 goto err2;
537         }
538
539         ret = dwc3_debugfs_init(dwc);
540         if (ret) {
541                 dev_err(dev, "failed to initialize debugfs\n");
542                 goto err3;
543         }
544
545         pm_runtime_allow(dev);
546
547         return 0;
548
549 err3:
550         switch (dwc->dr_mode) {
551         case USB_DR_MODE_PERIPHERAL:
552                 dwc3_gadget_exit(dwc);
553                 break;
554         case USB_DR_MODE_HOST:
555                 dwc3_host_exit(dwc);
556                 break;
557         case USB_DR_MODE_OTG:
558                 dwc3_host_exit(dwc);
559                 dwc3_gadget_exit(dwc);
560                 break;
561         default:
562                 /* do nothing */
563                 break;
564         }
565
566 err2:
567         dwc3_event_buffers_cleanup(dwc);
568
569 err1:
570         dwc3_core_exit(dwc);
571
572 err0:
573         dwc3_free_event_buffers(dwc);
574
575         return ret;
576 }
577
578 static int dwc3_remove(struct platform_device *pdev)
579 {
580         struct dwc3     *dwc = platform_get_drvdata(pdev);
581
582         usb_phy_set_suspend(dwc->usb2_phy, 1);
583         usb_phy_set_suspend(dwc->usb3_phy, 1);
584
585         pm_runtime_put(&pdev->dev);
586         pm_runtime_disable(&pdev->dev);
587
588         dwc3_debugfs_exit(dwc);
589
590         switch (dwc->dr_mode) {
591         case USB_DR_MODE_PERIPHERAL:
592                 dwc3_gadget_exit(dwc);
593                 break;
594         case USB_DR_MODE_HOST:
595                 dwc3_host_exit(dwc);
596                 break;
597         case USB_DR_MODE_OTG:
598                 dwc3_host_exit(dwc);
599                 dwc3_gadget_exit(dwc);
600                 break;
601         default:
602                 /* do nothing */
603                 break;
604         }
605
606         dwc3_event_buffers_cleanup(dwc);
607         dwc3_free_event_buffers(dwc);
608         dwc3_core_exit(dwc);
609
610         return 0;
611 }
612
613 #ifdef CONFIG_PM_SLEEP
614 static int dwc3_prepare(struct device *dev)
615 {
616         struct dwc3     *dwc = dev_get_drvdata(dev);
617         unsigned long   flags;
618
619         spin_lock_irqsave(&dwc->lock, flags);
620
621         switch (dwc->dr_mode) {
622         case USB_DR_MODE_PERIPHERAL:
623         case USB_DR_MODE_OTG:
624                 dwc3_gadget_prepare(dwc);
625                 /* FALLTHROUGH */
626         case USB_DR_MODE_HOST:
627         default:
628                 dwc3_event_buffers_cleanup(dwc);
629                 break;
630         }
631
632         spin_unlock_irqrestore(&dwc->lock, flags);
633
634         return 0;
635 }
636
637 static void dwc3_complete(struct device *dev)
638 {
639         struct dwc3     *dwc = dev_get_drvdata(dev);
640         unsigned long   flags;
641
642         spin_lock_irqsave(&dwc->lock, flags);
643
644         switch (dwc->dr_mode) {
645         case USB_DR_MODE_PERIPHERAL:
646         case USB_DR_MODE_OTG:
647                 dwc3_gadget_complete(dwc);
648                 /* FALLTHROUGH */
649         case USB_DR_MODE_HOST:
650         default:
651                 dwc3_event_buffers_setup(dwc);
652                 break;
653         }
654
655         spin_unlock_irqrestore(&dwc->lock, flags);
656 }
657
658 static int dwc3_suspend(struct device *dev)
659 {
660         struct dwc3     *dwc = dev_get_drvdata(dev);
661         unsigned long   flags;
662
663         spin_lock_irqsave(&dwc->lock, flags);
664
665         switch (dwc->dr_mode) {
666         case USB_DR_MODE_PERIPHERAL:
667         case USB_DR_MODE_OTG:
668                 dwc3_gadget_suspend(dwc);
669                 /* FALLTHROUGH */
670         case USB_DR_MODE_HOST:
671         default:
672                 /* do nothing */
673                 break;
674         }
675
676         dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
677         spin_unlock_irqrestore(&dwc->lock, flags);
678
679         usb_phy_shutdown(dwc->usb3_phy);
680         usb_phy_shutdown(dwc->usb2_phy);
681
682         return 0;
683 }
684
685 static int dwc3_resume(struct device *dev)
686 {
687         struct dwc3     *dwc = dev_get_drvdata(dev);
688         unsigned long   flags;
689
690         usb_phy_init(dwc->usb3_phy);
691         usb_phy_init(dwc->usb2_phy);
692         msleep(100);
693
694         spin_lock_irqsave(&dwc->lock, flags);
695
696         dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
697
698         switch (dwc->dr_mode) {
699         case USB_DR_MODE_PERIPHERAL:
700         case USB_DR_MODE_OTG:
701                 dwc3_gadget_resume(dwc);
702                 /* FALLTHROUGH */
703         case USB_DR_MODE_HOST:
704         default:
705                 /* do nothing */
706                 break;
707         }
708
709         spin_unlock_irqrestore(&dwc->lock, flags);
710
711         pm_runtime_disable(dev);
712         pm_runtime_set_active(dev);
713         pm_runtime_enable(dev);
714
715         return 0;
716 }
717
718 static const struct dev_pm_ops dwc3_dev_pm_ops = {
719         .prepare        = dwc3_prepare,
720         .complete       = dwc3_complete,
721
722         SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
723 };
724
725 #define DWC3_PM_OPS     &(dwc3_dev_pm_ops)
726 #else
727 #define DWC3_PM_OPS     NULL
728 #endif
729
730 #ifdef CONFIG_OF
731 static const struct of_device_id of_dwc3_match[] = {
732         {
733                 .compatible = "snps,dwc3"
734         },
735         {
736                 .compatible = "synopsys,dwc3"
737         },
738         { },
739 };
740 MODULE_DEVICE_TABLE(of, of_dwc3_match);
741 #endif
742
743 static struct platform_driver dwc3_driver = {
744         .probe          = dwc3_probe,
745         .remove         = dwc3_remove,
746         .driver         = {
747                 .name   = "dwc3",
748                 .of_match_table = of_match_ptr(of_dwc3_match),
749                 .pm     = DWC3_PM_OPS,
750         },
751 };
752
753 module_platform_driver(dwc3_driver);
754
755 MODULE_ALIAS("platform:dwc3");
756 MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
757 MODULE_LICENSE("GPL v2");
758 MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");