]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/usb/dwc3/core.c
usb: dwc3: core: Fix gadget for system suspend/resume
[mirror_ubuntu-artful-kernel.git] / drivers / usb / dwc3 / core.c
CommitLineData
72246da4
FB
1/**
2 * core.c - DesignWare USB3 DRD Controller Core file
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
72246da4
FB
5 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
5945f789
FB
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.
72246da4 12 *
5945f789
FB
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.
72246da4 17 *
5945f789
FB
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/>.
72246da4
FB
20 */
21
a72e658b 22#include <linux/module.h>
72246da4
FB
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>
457e84b6 34#include <linux/of.h>
72246da4
FB
35
36#include <linux/usb/ch9.h>
37#include <linux/usb/gadget.h>
f7e846f0 38#include <linux/usb/of.h>
a45c82b8 39#include <linux/usb/otg.h>
72246da4 40
6462cbd5 41#include "platform_data.h"
72246da4
FB
42#include "core.h"
43#include "gadget.h"
44#include "io.h"
45
46#include "debug.h"
47
8300dd23
FB
48/* -------------------------------------------------------------------------- */
49
3140e8cb
SAS
50void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
51{
52 u32 reg;
53
54 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
55 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
56 reg |= DWC3_GCTL_PRTCAPDIR(mode);
57 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
58}
8300dd23 59
72246da4
FB
60/**
61 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
62 * @dwc: pointer to our context structure
63 */
57303488 64static int dwc3_core_soft_reset(struct dwc3 *dwc)
72246da4
FB
65{
66 u32 reg;
57303488 67 int ret;
72246da4
FB
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
51e1e7bc
FB
84 usb_phy_init(dwc->usb2_phy);
85 usb_phy_init(dwc->usb3_phy);
57303488
KVA
86 ret = phy_init(dwc->usb2_generic_phy);
87 if (ret < 0)
88 return ret;
89
90 ret = phy_init(dwc->usb3_generic_phy);
91 if (ret < 0) {
92 phy_exit(dwc->usb2_generic_phy);
93 return ret;
94 }
72246da4
FB
95 mdelay(100);
96
97 /* Clear USB3 PHY reset */
98 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
99 reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST;
100 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
101
102 /* Clear USB2 PHY reset */
103 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
104 reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST;
105 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
106
45627ac6
PA
107 mdelay(100);
108
72246da4
FB
109 /* After PHYs are stable we can take Core out of reset state */
110 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
111 reg &= ~DWC3_GCTL_CORESOFTRESET;
112 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
57303488
KVA
113
114 return 0;
72246da4
FB
115}
116
117/**
118 * dwc3_free_one_event_buffer - Frees one event buffer
119 * @dwc: Pointer to our controller context structure
120 * @evt: Pointer to event buffer to be freed
121 */
122static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
123 struct dwc3_event_buffer *evt)
124{
125 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
72246da4
FB
126}
127
128/**
1d046793 129 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
72246da4
FB
130 * @dwc: Pointer to our controller context structure
131 * @length: size of the event buffer
132 *
1d046793 133 * Returns a pointer to the allocated event buffer structure on success
72246da4
FB
134 * otherwise ERR_PTR(errno).
135 */
67d0b500
FB
136static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
137 unsigned length)
72246da4
FB
138{
139 struct dwc3_event_buffer *evt;
140
380f0d28 141 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
72246da4
FB
142 if (!evt)
143 return ERR_PTR(-ENOMEM);
144
145 evt->dwc = dwc;
146 evt->length = length;
147 evt->buf = dma_alloc_coherent(dwc->dev, length,
148 &evt->dma, GFP_KERNEL);
e32672f0 149 if (!evt->buf)
72246da4 150 return ERR_PTR(-ENOMEM);
72246da4
FB
151
152 return evt;
153}
154
155/**
156 * dwc3_free_event_buffers - frees all allocated event buffers
157 * @dwc: Pointer to our controller context structure
158 */
159static void dwc3_free_event_buffers(struct dwc3 *dwc)
160{
161 struct dwc3_event_buffer *evt;
162 int i;
163
9f622b2a 164 for (i = 0; i < dwc->num_event_buffers; i++) {
72246da4 165 evt = dwc->ev_buffs[i];
64b6c8a7 166 if (evt)
72246da4 167 dwc3_free_one_event_buffer(dwc, evt);
72246da4
FB
168 }
169}
170
171/**
172 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
1d046793 173 * @dwc: pointer to our controller context structure
72246da4
FB
174 * @length: size of event buffer
175 *
1d046793 176 * Returns 0 on success otherwise negative errno. In the error case, dwc
72246da4
FB
177 * may contain some buffers allocated but not all which were requested.
178 */
41ac7b3a 179static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
72246da4 180{
9f622b2a 181 int num;
72246da4
FB
182 int i;
183
9f622b2a
FB
184 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
185 dwc->num_event_buffers = num;
186
380f0d28
FB
187 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
188 GFP_KERNEL);
457d3f21
FB
189 if (!dwc->ev_buffs) {
190 dev_err(dwc->dev, "can't allocate event buffers array\n");
191 return -ENOMEM;
192 }
193
72246da4
FB
194 for (i = 0; i < num; i++) {
195 struct dwc3_event_buffer *evt;
196
197 evt = dwc3_alloc_one_event_buffer(dwc, length);
198 if (IS_ERR(evt)) {
199 dev_err(dwc->dev, "can't allocate event buffer\n");
200 return PTR_ERR(evt);
201 }
202 dwc->ev_buffs[i] = evt;
203 }
204
205 return 0;
206}
207
208/**
209 * dwc3_event_buffers_setup - setup our allocated event buffers
1d046793 210 * @dwc: pointer to our controller context structure
72246da4
FB
211 *
212 * Returns 0 on success otherwise negative errno.
213 */
7acd85e0 214static int dwc3_event_buffers_setup(struct dwc3 *dwc)
72246da4
FB
215{
216 struct dwc3_event_buffer *evt;
217 int n;
218
9f622b2a 219 for (n = 0; n < dwc->num_event_buffers; n++) {
72246da4
FB
220 evt = dwc->ev_buffs[n];
221 dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n",
222 evt->buf, (unsigned long long) evt->dma,
223 evt->length);
224
7acd85e0
PZ
225 evt->lpos = 0;
226
72246da4
FB
227 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n),
228 lower_32_bits(evt->dma));
229 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n),
230 upper_32_bits(evt->dma));
231 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n),
68d6a01b 232 DWC3_GEVNTSIZ_SIZE(evt->length));
72246da4
FB
233 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
234 }
235
236 return 0;
237}
238
239static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
240{
241 struct dwc3_event_buffer *evt;
242 int n;
243
9f622b2a 244 for (n = 0; n < dwc->num_event_buffers; n++) {
72246da4 245 evt = dwc->ev_buffs[n];
7acd85e0
PZ
246
247 evt->lpos = 0;
248
72246da4
FB
249 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
250 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
68d6a01b
FB
251 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
252 | DWC3_GEVNTSIZ_SIZE(0));
72246da4
FB
253 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
254 }
255}
256
0ffcaf37
FB
257static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
258{
259 if (!dwc->has_hibernation)
260 return 0;
261
262 if (!dwc->nr_scratch)
263 return 0;
264
265 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
266 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
267 if (!dwc->scratchbuf)
268 return -ENOMEM;
269
270 return 0;
271}
272
273static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
274{
275 dma_addr_t scratch_addr;
276 u32 param;
277 int ret;
278
279 if (!dwc->has_hibernation)
280 return 0;
281
282 if (!dwc->nr_scratch)
283 return 0;
284
285 /* should never fall here */
286 if (!WARN_ON(dwc->scratchbuf))
287 return 0;
288
289 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
290 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
291 DMA_BIDIRECTIONAL);
292 if (dma_mapping_error(dwc->dev, scratch_addr)) {
293 dev_err(dwc->dev, "failed to map scratch buffer\n");
294 ret = -EFAULT;
295 goto err0;
296 }
297
298 dwc->scratch_addr = scratch_addr;
299
300 param = lower_32_bits(scratch_addr);
301
302 ret = dwc3_send_gadget_generic_command(dwc,
303 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
304 if (ret < 0)
305 goto err1;
306
307 param = upper_32_bits(scratch_addr);
308
309 ret = dwc3_send_gadget_generic_command(dwc,
310 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
311 if (ret < 0)
312 goto err1;
313
314 return 0;
315
316err1:
317 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
318 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
319
320err0:
321 return ret;
322}
323
324static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
325{
326 if (!dwc->has_hibernation)
327 return;
328
329 if (!dwc->nr_scratch)
330 return;
331
332 /* should never fall here */
333 if (!WARN_ON(dwc->scratchbuf))
334 return;
335
336 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
337 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
338 kfree(dwc->scratchbuf);
339}
340
789451f6
FB
341static void dwc3_core_num_eps(struct dwc3 *dwc)
342{
343 struct dwc3_hwparams *parms = &dwc->hwparams;
344
345 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
346 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
347
348 dev_vdbg(dwc->dev, "found %d IN and %d OUT endpoints\n",
349 dwc->num_in_eps, dwc->num_out_eps);
350}
351
41ac7b3a 352static void dwc3_cache_hwparams(struct dwc3 *dwc)
26ceca97
FB
353{
354 struct dwc3_hwparams *parms = &dwc->hwparams;
355
356 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
357 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
358 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
359 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
360 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
361 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
362 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
363 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
364 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
365}
366
72246da4
FB
367/**
368 * dwc3_core_init - Low-level initialization of DWC3 Core
369 * @dwc: Pointer to our controller context structure
370 *
371 * Returns 0 on success otherwise negative errno.
372 */
41ac7b3a 373static int dwc3_core_init(struct dwc3 *dwc)
72246da4
FB
374{
375 unsigned long timeout;
0ffcaf37 376 u32 hwparams4 = dwc->hwparams.hwparams4;
72246da4
FB
377 u32 reg;
378 int ret;
379
7650bd74
SAS
380 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
381 /* This should read as U3 followed by revision number */
382 if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) {
383 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
384 ret = -ENODEV;
385 goto err0;
386 }
248b122b 387 dwc->revision = reg;
7650bd74 388
72246da4
FB
389 /* issue device SoftReset too */
390 timeout = jiffies + msecs_to_jiffies(500);
391 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
392 do {
393 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
394 if (!(reg & DWC3_DCTL_CSFTRST))
395 break;
396
397 if (time_after(jiffies, timeout)) {
398 dev_err(dwc->dev, "Reset Timed Out\n");
399 ret = -ETIMEDOUT;
400 goto err0;
401 }
402
403 cpu_relax();
404 } while (true);
405
57303488
KVA
406 ret = dwc3_core_soft_reset(dwc);
407 if (ret)
408 goto err0;
58a0f23f 409
4878a028 410 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
3e87c42a 411 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
4878a028
SAS
412 reg &= ~DWC3_GCTL_DISSCRAMBLE;
413
164d7731 414 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
4878a028 415 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
32a4a135
FB
416 /**
417 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
418 * issue which would cause xHCI compliance tests to fail.
419 *
420 * Because of that we cannot enable clock gating on such
421 * configurations.
422 *
423 * Refers to:
424 *
425 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
426 * SOF/ITP Mode Used
427 */
428 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
429 dwc->dr_mode == USB_DR_MODE_OTG) &&
430 (dwc->revision >= DWC3_REVISION_210A &&
431 dwc->revision <= DWC3_REVISION_250A))
432 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
433 else
434 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
4878a028 435 break;
0ffcaf37
FB
436 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
437 /* enable hibernation here */
438 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
439 break;
4878a028
SAS
440 default:
441 dev_dbg(dwc->dev, "No power optimization available\n");
442 }
443
444 /*
445 * WORKAROUND: DWC3 revisions <1.90a have a bug
1d046793 446 * where the device can fail to connect at SuperSpeed
4878a028 447 * and falls back to high-speed mode which causes
1d046793 448 * the device to enter a Connect/Disconnect loop
4878a028
SAS
449 */
450 if (dwc->revision < DWC3_REVISION_190A)
451 reg |= DWC3_GCTL_U2RSTECN;
452
789451f6
FB
453 dwc3_core_num_eps(dwc);
454
4878a028
SAS
455 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
456
0ffcaf37
FB
457 ret = dwc3_alloc_scratch_buffers(dwc);
458 if (ret)
459 goto err1;
460
461 ret = dwc3_setup_scratch_buffers(dwc);
462 if (ret)
463 goto err2;
464
72246da4
FB
465 return 0;
466
0ffcaf37
FB
467err2:
468 dwc3_free_scratch_buffers(dwc);
469
470err1:
471 usb_phy_shutdown(dwc->usb2_phy);
472 usb_phy_shutdown(dwc->usb3_phy);
57303488
KVA
473 phy_exit(dwc->usb2_generic_phy);
474 phy_exit(dwc->usb3_generic_phy);
0ffcaf37 475
72246da4
FB
476err0:
477 return ret;
478}
479
480static void dwc3_core_exit(struct dwc3 *dwc)
481{
0ffcaf37 482 dwc3_free_scratch_buffers(dwc);
01b8daf7
VG
483 usb_phy_shutdown(dwc->usb2_phy);
484 usb_phy_shutdown(dwc->usb3_phy);
57303488
KVA
485 phy_exit(dwc->usb2_generic_phy);
486 phy_exit(dwc->usb3_generic_phy);
72246da4
FB
487}
488
489#define DWC3_ALIGN_MASK (16 - 1)
490
41ac7b3a 491static int dwc3_probe(struct platform_device *pdev)
72246da4 492{
941ea361
FB
493 struct device *dev = &pdev->dev;
494 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
495 struct device_node *node = dev->of_node;
72246da4
FB
496 struct resource *res;
497 struct dwc3 *dwc;
0949e99b 498
72246da4 499 int ret = -ENOMEM;
0949e99b
FB
500
501 void __iomem *regs;
72246da4
FB
502 void *mem;
503
802ca850 504 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
72246da4 505 if (!mem) {
802ca850
CP
506 dev_err(dev, "not enough memory\n");
507 return -ENOMEM;
72246da4
FB
508 }
509 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
510 dwc->mem = mem;
511
51249dca 512 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
72246da4 513 if (!res) {
51249dca 514 dev_err(dev, "missing IRQ\n");
802ca850 515 return -ENODEV;
72246da4 516 }
066618bc
KVA
517 dwc->xhci_resources[1].start = res->start;
518 dwc->xhci_resources[1].end = res->end;
519 dwc->xhci_resources[1].flags = res->flags;
520 dwc->xhci_resources[1].name = res->name;
72246da4 521
51249dca
IS
522 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
523 if (!res) {
524 dev_err(dev, "missing memory resource\n");
525 return -ENODEV;
526 }
72246da4 527
5088b6f5 528 if (node) {
f7e846f0
FB
529 dwc->maximum_speed = of_usb_get_maximum_speed(node);
530
5088b6f5
KVA
531 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
532 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
6462cbd5
FB
533
534 dwc->needs_fifo_resize = of_property_read_bool(node, "tx-fifo-resize");
a45c82b8 535 dwc->dr_mode = of_usb_get_dr_mode(node);
bb674907 536 } else if (pdata) {
f7e846f0
FB
537 dwc->maximum_speed = pdata->maximum_speed;
538
5088b6f5
KVA
539 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
540 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
6462cbd5
FB
541
542 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
a45c82b8 543 dwc->dr_mode = pdata->dr_mode;
bb674907
FB
544 } else {
545 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
546 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
5088b6f5
KVA
547 }
548
f7e846f0
FB
549 /* default to superspeed if no maximum_speed passed */
550 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
551 dwc->maximum_speed = USB_SPEED_SUPER;
552
d105e7f8
FB
553 if (IS_ERR(dwc->usb2_phy)) {
554 ret = PTR_ERR(dwc->usb2_phy);
122f06e6
KVA
555 if (ret == -ENXIO || ret == -ENODEV) {
556 dwc->usb2_phy = NULL;
557 } else if (ret == -EPROBE_DEFER) {
d105e7f8 558 return ret;
122f06e6
KVA
559 } else {
560 dev_err(dev, "no usb2 phy configured\n");
561 return ret;
562 }
51e1e7bc
FB
563 }
564
d105e7f8 565 if (IS_ERR(dwc->usb3_phy)) {
315955d7 566 ret = PTR_ERR(dwc->usb3_phy);
122f06e6
KVA
567 if (ret == -ENXIO || ret == -ENODEV) {
568 dwc->usb3_phy = NULL;
569 } else if (ret == -EPROBE_DEFER) {
d105e7f8 570 return ret;
122f06e6
KVA
571 } else {
572 dev_err(dev, "no usb3 phy configured\n");
573 return ret;
574 }
51e1e7bc
FB
575 }
576
57303488
KVA
577 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
578 if (IS_ERR(dwc->usb2_generic_phy)) {
579 ret = PTR_ERR(dwc->usb2_generic_phy);
580 if (ret == -ENOSYS || ret == -ENODEV) {
581 dwc->usb2_generic_phy = NULL;
582 } else if (ret == -EPROBE_DEFER) {
583 return ret;
584 } else {
585 dev_err(dev, "no usb2 phy configured\n");
586 return ret;
587 }
588 }
589
590 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
591 if (IS_ERR(dwc->usb3_generic_phy)) {
592 ret = PTR_ERR(dwc->usb3_generic_phy);
593 if (ret == -ENOSYS || ret == -ENODEV) {
594 dwc->usb3_generic_phy = NULL;
595 } else if (ret == -EPROBE_DEFER) {
596 return ret;
597 } else {
598 dev_err(dev, "no usb3 phy configured\n");
599 return ret;
600 }
601 }
602
2e112345
II
603 dwc->xhci_resources[0].start = res->start;
604 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
605 DWC3_XHCI_REGS_END;
606 dwc->xhci_resources[0].flags = res->flags;
607 dwc->xhci_resources[0].name = res->name;
608
609 res->start += DWC3_GLOBALS_REGS_START;
610
611 /*
612 * Request memory region but exclude xHCI regs,
613 * since it will be requested by the xhci-plat driver.
614 */
615 regs = devm_ioremap_resource(dev, res);
616 if (IS_ERR(regs))
617 return PTR_ERR(regs);
618
72246da4
FB
619 spin_lock_init(&dwc->lock);
620 platform_set_drvdata(pdev, dwc);
621
622 dwc->regs = regs;
623 dwc->regs_size = resource_size(res);
802ca850 624 dwc->dev = dev;
72246da4 625
ddff14f1
KVA
626 dev->dma_mask = dev->parent->dma_mask;
627 dev->dma_parms = dev->parent->dma_parms;
628 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
629
802ca850
CP
630 pm_runtime_enable(dev);
631 pm_runtime_get_sync(dev);
632 pm_runtime_forbid(dev);
72246da4 633
4fd24483
KVA
634 dwc3_cache_hwparams(dwc);
635
3921426b
FB
636 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
637 if (ret) {
638 dev_err(dwc->dev, "failed to allocate event buffers\n");
639 ret = -ENOMEM;
640 goto err0;
641 }
642
32a4a135
FB
643 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
644 dwc->dr_mode = USB_DR_MODE_HOST;
645 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
646 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
647
648 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
649 dwc->dr_mode = USB_DR_MODE_OTG;
650
72246da4
FB
651 ret = dwc3_core_init(dwc);
652 if (ret) {
802ca850 653 dev_err(dev, "failed to initialize core\n");
3921426b 654 goto err0;
72246da4
FB
655 }
656
3088f108
KVA
657 usb_phy_set_suspend(dwc->usb2_phy, 0);
658 usb_phy_set_suspend(dwc->usb3_phy, 0);
57303488
KVA
659 ret = phy_power_on(dwc->usb2_generic_phy);
660 if (ret < 0)
661 goto err1;
662
663 ret = phy_power_on(dwc->usb3_generic_phy);
664 if (ret < 0)
665 goto err_usb2phy_power;
3088f108 666
f122d33e
FB
667 ret = dwc3_event_buffers_setup(dwc);
668 if (ret) {
669 dev_err(dwc->dev, "failed to setup event buffers\n");
57303488 670 goto err_usb3phy_power;
f122d33e
FB
671 }
672
a45c82b8
RK
673 switch (dwc->dr_mode) {
674 case USB_DR_MODE_PERIPHERAL:
3140e8cb 675 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
72246da4
FB
676 ret = dwc3_gadget_init(dwc);
677 if (ret) {
802ca850 678 dev_err(dev, "failed to initialize gadget\n");
f122d33e 679 goto err2;
72246da4 680 }
d07e8819 681 break;
a45c82b8 682 case USB_DR_MODE_HOST:
3140e8cb 683 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
d07e8819
FB
684 ret = dwc3_host_init(dwc);
685 if (ret) {
802ca850 686 dev_err(dev, "failed to initialize host\n");
f122d33e 687 goto err2;
d07e8819
FB
688 }
689 break;
a45c82b8 690 case USB_DR_MODE_OTG:
3140e8cb 691 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
d07e8819
FB
692 ret = dwc3_host_init(dwc);
693 if (ret) {
802ca850 694 dev_err(dev, "failed to initialize host\n");
f122d33e 695 goto err2;
d07e8819
FB
696 }
697
72246da4
FB
698 ret = dwc3_gadget_init(dwc);
699 if (ret) {
802ca850 700 dev_err(dev, "failed to initialize gadget\n");
f122d33e 701 goto err2;
72246da4 702 }
0949e99b
FB
703 break;
704 default:
a45c82b8 705 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
f122d33e 706 goto err2;
72246da4
FB
707 }
708
709 ret = dwc3_debugfs_init(dwc);
710 if (ret) {
802ca850 711 dev_err(dev, "failed to initialize debugfs\n");
f122d33e 712 goto err3;
72246da4
FB
713 }
714
802ca850 715 pm_runtime_allow(dev);
72246da4
FB
716
717 return 0;
718
f122d33e 719err3:
a45c82b8
RK
720 switch (dwc->dr_mode) {
721 case USB_DR_MODE_PERIPHERAL:
72246da4 722 dwc3_gadget_exit(dwc);
0949e99b 723 break;
a45c82b8 724 case USB_DR_MODE_HOST:
d07e8819
FB
725 dwc3_host_exit(dwc);
726 break;
a45c82b8 727 case USB_DR_MODE_OTG:
d07e8819 728 dwc3_host_exit(dwc);
72246da4 729 dwc3_gadget_exit(dwc);
d07e8819 730 break;
0949e99b
FB
731 default:
732 /* do nothing */
733 break;
734 }
72246da4 735
f122d33e
FB
736err2:
737 dwc3_event_buffers_cleanup(dwc);
738
57303488
KVA
739err_usb3phy_power:
740 phy_power_off(dwc->usb3_generic_phy);
741
742err_usb2phy_power:
743 phy_power_off(dwc->usb2_generic_phy);
744
72246da4 745err1:
501fae51
KVA
746 usb_phy_set_suspend(dwc->usb2_phy, 1);
747 usb_phy_set_suspend(dwc->usb3_phy, 1);
802ca850 748 dwc3_core_exit(dwc);
72246da4 749
3921426b
FB
750err0:
751 dwc3_free_event_buffers(dwc);
752
72246da4
FB
753 return ret;
754}
755
fb4e98ab 756static int dwc3_remove(struct platform_device *pdev)
72246da4 757{
72246da4 758 struct dwc3 *dwc = platform_get_drvdata(pdev);
72246da4 759
8ba007a9
KVA
760 usb_phy_set_suspend(dwc->usb2_phy, 1);
761 usb_phy_set_suspend(dwc->usb3_phy, 1);
57303488
KVA
762 phy_power_off(dwc->usb2_generic_phy);
763 phy_power_off(dwc->usb3_generic_phy);
8ba007a9 764
16b972a5 765 pm_runtime_put_sync(&pdev->dev);
72246da4
FB
766 pm_runtime_disable(&pdev->dev);
767
768 dwc3_debugfs_exit(dwc);
769
a45c82b8
RK
770 switch (dwc->dr_mode) {
771 case USB_DR_MODE_PERIPHERAL:
72246da4 772 dwc3_gadget_exit(dwc);
0949e99b 773 break;
a45c82b8 774 case USB_DR_MODE_HOST:
d07e8819
FB
775 dwc3_host_exit(dwc);
776 break;
a45c82b8 777 case USB_DR_MODE_OTG:
d07e8819 778 dwc3_host_exit(dwc);
72246da4 779 dwc3_gadget_exit(dwc);
d07e8819 780 break;
0949e99b
FB
781 default:
782 /* do nothing */
783 break;
784 }
72246da4 785
f122d33e 786 dwc3_event_buffers_cleanup(dwc);
d9b4330a 787 dwc3_free_event_buffers(dwc);
72246da4 788 dwc3_core_exit(dwc);
72246da4
FB
789
790 return 0;
791}
792
19fda7cd 793#ifdef CONFIG_PM_SLEEP
7415f17c
FB
794static int dwc3_prepare(struct device *dev)
795{
796 struct dwc3 *dwc = dev_get_drvdata(dev);
797 unsigned long flags;
798
799 spin_lock_irqsave(&dwc->lock, flags);
800
a45c82b8
RK
801 switch (dwc->dr_mode) {
802 case USB_DR_MODE_PERIPHERAL:
803 case USB_DR_MODE_OTG:
7415f17c
FB
804 dwc3_gadget_prepare(dwc);
805 /* FALLTHROUGH */
a45c82b8 806 case USB_DR_MODE_HOST:
7415f17c
FB
807 default:
808 dwc3_event_buffers_cleanup(dwc);
809 break;
810 }
811
812 spin_unlock_irqrestore(&dwc->lock, flags);
813
814 return 0;
815}
816
817static void dwc3_complete(struct device *dev)
818{
819 struct dwc3 *dwc = dev_get_drvdata(dev);
820 unsigned long flags;
821
822 spin_lock_irqsave(&dwc->lock, flags);
823
f45e5f00 824 dwc3_event_buffers_setup(dwc);
a45c82b8
RK
825 switch (dwc->dr_mode) {
826 case USB_DR_MODE_PERIPHERAL:
827 case USB_DR_MODE_OTG:
7415f17c
FB
828 dwc3_gadget_complete(dwc);
829 /* FALLTHROUGH */
a45c82b8 830 case USB_DR_MODE_HOST:
7415f17c 831 default:
7415f17c
FB
832 break;
833 }
834
835 spin_unlock_irqrestore(&dwc->lock, flags);
836}
837
838static int dwc3_suspend(struct device *dev)
839{
840 struct dwc3 *dwc = dev_get_drvdata(dev);
841 unsigned long flags;
842
843 spin_lock_irqsave(&dwc->lock, flags);
844
a45c82b8
RK
845 switch (dwc->dr_mode) {
846 case USB_DR_MODE_PERIPHERAL:
847 case USB_DR_MODE_OTG:
7415f17c
FB
848 dwc3_gadget_suspend(dwc);
849 /* FALLTHROUGH */
a45c82b8 850 case USB_DR_MODE_HOST:
7415f17c
FB
851 default:
852 /* do nothing */
853 break;
854 }
855
856 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
857 spin_unlock_irqrestore(&dwc->lock, flags);
858
859 usb_phy_shutdown(dwc->usb3_phy);
860 usb_phy_shutdown(dwc->usb2_phy);
57303488
KVA
861 phy_exit(dwc->usb2_generic_phy);
862 phy_exit(dwc->usb3_generic_phy);
7415f17c
FB
863
864 return 0;
865}
866
867static int dwc3_resume(struct device *dev)
868{
869 struct dwc3 *dwc = dev_get_drvdata(dev);
870 unsigned long flags;
57303488 871 int ret;
7415f17c
FB
872
873 usb_phy_init(dwc->usb3_phy);
874 usb_phy_init(dwc->usb2_phy);
57303488
KVA
875 ret = phy_init(dwc->usb2_generic_phy);
876 if (ret < 0)
877 return ret;
878
879 ret = phy_init(dwc->usb3_generic_phy);
880 if (ret < 0)
881 goto err_usb2phy_init;
7415f17c
FB
882
883 spin_lock_irqsave(&dwc->lock, flags);
884
885 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
886
a45c82b8
RK
887 switch (dwc->dr_mode) {
888 case USB_DR_MODE_PERIPHERAL:
889 case USB_DR_MODE_OTG:
7415f17c
FB
890 dwc3_gadget_resume(dwc);
891 /* FALLTHROUGH */
a45c82b8 892 case USB_DR_MODE_HOST:
7415f17c
FB
893 default:
894 /* do nothing */
895 break;
896 }
897
898 spin_unlock_irqrestore(&dwc->lock, flags);
899
900 pm_runtime_disable(dev);
901 pm_runtime_set_active(dev);
902 pm_runtime_enable(dev);
903
904 return 0;
57303488
KVA
905
906err_usb2phy_init:
907 phy_exit(dwc->usb2_generic_phy);
908
909 return ret;
7415f17c
FB
910}
911
912static const struct dev_pm_ops dwc3_dev_pm_ops = {
913 .prepare = dwc3_prepare,
914 .complete = dwc3_complete,
915
916 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
917};
918
919#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
920#else
921#define DWC3_PM_OPS NULL
922#endif
923
5088b6f5
KVA
924#ifdef CONFIG_OF
925static const struct of_device_id of_dwc3_match[] = {
22a5aa17
FB
926 {
927 .compatible = "snps,dwc3"
928 },
5088b6f5
KVA
929 {
930 .compatible = "synopsys,dwc3"
931 },
932 { },
933};
934MODULE_DEVICE_TABLE(of, of_dwc3_match);
935#endif
936
72246da4
FB
937static struct platform_driver dwc3_driver = {
938 .probe = dwc3_probe,
7690417d 939 .remove = dwc3_remove,
72246da4
FB
940 .driver = {
941 .name = "dwc3",
5088b6f5 942 .of_match_table = of_match_ptr(of_dwc3_match),
7415f17c 943 .pm = DWC3_PM_OPS,
72246da4 944 },
72246da4
FB
945};
946
b1116dcc
TK
947module_platform_driver(dwc3_driver);
948
7ae4fc4d 949MODULE_ALIAS("platform:dwc3");
72246da4 950MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
5945f789 951MODULE_LICENSE("GPL v2");
72246da4 952MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");