]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/usb/dwc3/core.c
usb: dwc3: dwc3-omap: get rid of ->prepare()/->complete()
[mirror_ubuntu-hirsute-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
fa0ea13e 22#include <linux/version.h>
a72e658b 23#include <linux/module.h>
72246da4
FB
24#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
27#include <linux/platform_device.h>
28#include <linux/pm_runtime.h>
29#include <linux/interrupt.h>
30#include <linux/ioport.h>
31#include <linux/io.h>
32#include <linux/list.h>
33#include <linux/delay.h>
34#include <linux/dma-mapping.h>
457e84b6 35#include <linux/of.h>
404905a6 36#include <linux/acpi.h>
72246da4
FB
37
38#include <linux/usb/ch9.h>
39#include <linux/usb/gadget.h>
f7e846f0 40#include <linux/usb/of.h>
a45c82b8 41#include <linux/usb/otg.h>
72246da4 42
6462cbd5 43#include "platform_data.h"
72246da4
FB
44#include "core.h"
45#include "gadget.h"
46#include "io.h"
47
48#include "debug.h"
49
8300dd23
FB
50/* -------------------------------------------------------------------------- */
51
3140e8cb
SAS
52void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
53{
54 u32 reg;
55
56 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
57 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
58 reg |= DWC3_GCTL_PRTCAPDIR(mode);
59 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
60}
8300dd23 61
72246da4
FB
62/**
63 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
64 * @dwc: pointer to our context structure
65 */
57303488 66static int dwc3_core_soft_reset(struct dwc3 *dwc)
72246da4
FB
67{
68 u32 reg;
57303488 69 int ret;
72246da4
FB
70
71 /* Before Resetting PHY, put Core in Reset */
72 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
73 reg |= DWC3_GCTL_CORESOFTRESET;
74 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
75
76 /* Assert USB3 PHY reset */
77 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
78 reg |= DWC3_GUSB3PIPECTL_PHYSOFTRST;
79 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
80
81 /* Assert USB2 PHY reset */
82 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
83 reg |= DWC3_GUSB2PHYCFG_PHYSOFTRST;
84 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
85
51e1e7bc
FB
86 usb_phy_init(dwc->usb2_phy);
87 usb_phy_init(dwc->usb3_phy);
57303488
KVA
88 ret = phy_init(dwc->usb2_generic_phy);
89 if (ret < 0)
90 return ret;
91
92 ret = phy_init(dwc->usb3_generic_phy);
93 if (ret < 0) {
94 phy_exit(dwc->usb2_generic_phy);
95 return ret;
96 }
72246da4
FB
97 mdelay(100);
98
99 /* Clear USB3 PHY reset */
100 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
101 reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST;
102 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
103
104 /* Clear USB2 PHY reset */
105 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
106 reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST;
107 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
108
45627ac6
PA
109 mdelay(100);
110
72246da4
FB
111 /* After PHYs are stable we can take Core out of reset state */
112 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
113 reg &= ~DWC3_GCTL_CORESOFTRESET;
114 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
57303488
KVA
115
116 return 0;
72246da4
FB
117}
118
119/**
120 * dwc3_free_one_event_buffer - Frees one event buffer
121 * @dwc: Pointer to our controller context structure
122 * @evt: Pointer to event buffer to be freed
123 */
124static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
125 struct dwc3_event_buffer *evt)
126{
127 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
72246da4
FB
128}
129
130/**
1d046793 131 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
72246da4
FB
132 * @dwc: Pointer to our controller context structure
133 * @length: size of the event buffer
134 *
1d046793 135 * Returns a pointer to the allocated event buffer structure on success
72246da4
FB
136 * otherwise ERR_PTR(errno).
137 */
67d0b500
FB
138static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
139 unsigned length)
72246da4
FB
140{
141 struct dwc3_event_buffer *evt;
142
380f0d28 143 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
72246da4
FB
144 if (!evt)
145 return ERR_PTR(-ENOMEM);
146
147 evt->dwc = dwc;
148 evt->length = length;
149 evt->buf = dma_alloc_coherent(dwc->dev, length,
150 &evt->dma, GFP_KERNEL);
e32672f0 151 if (!evt->buf)
72246da4 152 return ERR_PTR(-ENOMEM);
72246da4
FB
153
154 return evt;
155}
156
157/**
158 * dwc3_free_event_buffers - frees all allocated event buffers
159 * @dwc: Pointer to our controller context structure
160 */
161static void dwc3_free_event_buffers(struct dwc3 *dwc)
162{
163 struct dwc3_event_buffer *evt;
164 int i;
165
9f622b2a 166 for (i = 0; i < dwc->num_event_buffers; i++) {
72246da4 167 evt = dwc->ev_buffs[i];
64b6c8a7 168 if (evt)
72246da4 169 dwc3_free_one_event_buffer(dwc, evt);
72246da4
FB
170 }
171}
172
173/**
174 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
1d046793 175 * @dwc: pointer to our controller context structure
72246da4
FB
176 * @length: size of event buffer
177 *
1d046793 178 * Returns 0 on success otherwise negative errno. In the error case, dwc
72246da4
FB
179 * may contain some buffers allocated but not all which were requested.
180 */
41ac7b3a 181static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
72246da4 182{
9f622b2a 183 int num;
72246da4
FB
184 int i;
185
9f622b2a
FB
186 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
187 dwc->num_event_buffers = num;
188
380f0d28
FB
189 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
190 GFP_KERNEL);
734d5a53 191 if (!dwc->ev_buffs)
457d3f21 192 return -ENOMEM;
457d3f21 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
fa0ea13e
FB
389 /*
390 * Write Linux Version Code to our GUID register so it's easy to figure
391 * out which kernel version a bug was found.
392 */
393 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
394
0e1e5c47
PZ
395 /* Handle USB2.0-only core configuration */
396 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
397 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
398 if (dwc->maximum_speed == USB_SPEED_SUPER)
399 dwc->maximum_speed = USB_SPEED_HIGH;
400 }
401
72246da4
FB
402 /* issue device SoftReset too */
403 timeout = jiffies + msecs_to_jiffies(500);
404 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
405 do {
406 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
407 if (!(reg & DWC3_DCTL_CSFTRST))
408 break;
409
410 if (time_after(jiffies, timeout)) {
411 dev_err(dwc->dev, "Reset Timed Out\n");
412 ret = -ETIMEDOUT;
413 goto err0;
414 }
415
416 cpu_relax();
417 } while (true);
418
57303488
KVA
419 ret = dwc3_core_soft_reset(dwc);
420 if (ret)
421 goto err0;
58a0f23f 422
4878a028 423 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
3e87c42a 424 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
4878a028
SAS
425 reg &= ~DWC3_GCTL_DISSCRAMBLE;
426
164d7731 427 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
4878a028 428 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
32a4a135
FB
429 /**
430 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
431 * issue which would cause xHCI compliance tests to fail.
432 *
433 * Because of that we cannot enable clock gating on such
434 * configurations.
435 *
436 * Refers to:
437 *
438 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
439 * SOF/ITP Mode Used
440 */
441 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
442 dwc->dr_mode == USB_DR_MODE_OTG) &&
443 (dwc->revision >= DWC3_REVISION_210A &&
444 dwc->revision <= DWC3_REVISION_250A))
445 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
446 else
447 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
4878a028 448 break;
0ffcaf37
FB
449 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
450 /* enable hibernation here */
451 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
452 break;
4878a028
SAS
453 default:
454 dev_dbg(dwc->dev, "No power optimization available\n");
455 }
456
457 /*
458 * WORKAROUND: DWC3 revisions <1.90a have a bug
1d046793 459 * where the device can fail to connect at SuperSpeed
4878a028 460 * and falls back to high-speed mode which causes
1d046793 461 * the device to enter a Connect/Disconnect loop
4878a028
SAS
462 */
463 if (dwc->revision < DWC3_REVISION_190A)
464 reg |= DWC3_GCTL_U2RSTECN;
465
789451f6
FB
466 dwc3_core_num_eps(dwc);
467
4878a028
SAS
468 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
469
0ffcaf37
FB
470 ret = dwc3_alloc_scratch_buffers(dwc);
471 if (ret)
472 goto err1;
473
474 ret = dwc3_setup_scratch_buffers(dwc);
475 if (ret)
476 goto err2;
477
72246da4
FB
478 return 0;
479
0ffcaf37
FB
480err2:
481 dwc3_free_scratch_buffers(dwc);
482
483err1:
484 usb_phy_shutdown(dwc->usb2_phy);
485 usb_phy_shutdown(dwc->usb3_phy);
57303488
KVA
486 phy_exit(dwc->usb2_generic_phy);
487 phy_exit(dwc->usb3_generic_phy);
0ffcaf37 488
72246da4
FB
489err0:
490 return ret;
491}
492
493static void dwc3_core_exit(struct dwc3 *dwc)
494{
0ffcaf37 495 dwc3_free_scratch_buffers(dwc);
01b8daf7
VG
496 usb_phy_shutdown(dwc->usb2_phy);
497 usb_phy_shutdown(dwc->usb3_phy);
57303488
KVA
498 phy_exit(dwc->usb2_generic_phy);
499 phy_exit(dwc->usb3_generic_phy);
72246da4
FB
500}
501
3c9f94ac 502static int dwc3_core_get_phy(struct dwc3 *dwc)
72246da4 503{
3c9f94ac 504 struct device *dev = dwc->dev;
941ea361 505 struct device_node *node = dev->of_node;
3c9f94ac 506 int ret;
72246da4 507
5088b6f5
KVA
508 if (node) {
509 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
510 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
bb674907
FB
511 } else {
512 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
513 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
5088b6f5
KVA
514 }
515
d105e7f8
FB
516 if (IS_ERR(dwc->usb2_phy)) {
517 ret = PTR_ERR(dwc->usb2_phy);
122f06e6
KVA
518 if (ret == -ENXIO || ret == -ENODEV) {
519 dwc->usb2_phy = NULL;
520 } else if (ret == -EPROBE_DEFER) {
d105e7f8 521 return ret;
122f06e6
KVA
522 } else {
523 dev_err(dev, "no usb2 phy configured\n");
524 return ret;
525 }
51e1e7bc
FB
526 }
527
d105e7f8 528 if (IS_ERR(dwc->usb3_phy)) {
315955d7 529 ret = PTR_ERR(dwc->usb3_phy);
122f06e6
KVA
530 if (ret == -ENXIO || ret == -ENODEV) {
531 dwc->usb3_phy = NULL;
532 } else if (ret == -EPROBE_DEFER) {
d105e7f8 533 return ret;
122f06e6
KVA
534 } else {
535 dev_err(dev, "no usb3 phy configured\n");
536 return ret;
537 }
51e1e7bc
FB
538 }
539
57303488
KVA
540 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
541 if (IS_ERR(dwc->usb2_generic_phy)) {
542 ret = PTR_ERR(dwc->usb2_generic_phy);
543 if (ret == -ENOSYS || ret == -ENODEV) {
544 dwc->usb2_generic_phy = NULL;
545 } else if (ret == -EPROBE_DEFER) {
546 return ret;
547 } else {
548 dev_err(dev, "no usb2 phy configured\n");
549 return ret;
550 }
551 }
552
553 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
554 if (IS_ERR(dwc->usb3_generic_phy)) {
555 ret = PTR_ERR(dwc->usb3_generic_phy);
556 if (ret == -ENOSYS || ret == -ENODEV) {
557 dwc->usb3_generic_phy = NULL;
558 } else if (ret == -EPROBE_DEFER) {
559 return ret;
560 } else {
561 dev_err(dev, "no usb3 phy configured\n");
562 return ret;
563 }
564 }
565
3c9f94ac
FB
566 return 0;
567}
568
5f94adfe
FB
569static int dwc3_core_init_mode(struct dwc3 *dwc)
570{
571 struct device *dev = dwc->dev;
572 int ret;
573
574 switch (dwc->dr_mode) {
575 case USB_DR_MODE_PERIPHERAL:
576 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
577 ret = dwc3_gadget_init(dwc);
578 if (ret) {
579 dev_err(dev, "failed to initialize gadget\n");
580 return ret;
581 }
582 break;
583 case USB_DR_MODE_HOST:
584 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
585 ret = dwc3_host_init(dwc);
586 if (ret) {
587 dev_err(dev, "failed to initialize host\n");
588 return ret;
589 }
590 break;
591 case USB_DR_MODE_OTG:
592 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
593 ret = dwc3_host_init(dwc);
594 if (ret) {
595 dev_err(dev, "failed to initialize host\n");
596 return ret;
597 }
598
599 ret = dwc3_gadget_init(dwc);
600 if (ret) {
601 dev_err(dev, "failed to initialize gadget\n");
602 return ret;
603 }
604 break;
605 default:
606 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
607 return -EINVAL;
608 }
609
610 return 0;
611}
612
613static void dwc3_core_exit_mode(struct dwc3 *dwc)
614{
615 switch (dwc->dr_mode) {
616 case USB_DR_MODE_PERIPHERAL:
617 dwc3_gadget_exit(dwc);
618 break;
619 case USB_DR_MODE_HOST:
620 dwc3_host_exit(dwc);
621 break;
622 case USB_DR_MODE_OTG:
623 dwc3_host_exit(dwc);
624 dwc3_gadget_exit(dwc);
625 break;
626 default:
627 /* do nothing */
628 break;
629 }
630}
631
3c9f94ac
FB
632#define DWC3_ALIGN_MASK (16 - 1)
633
634static int dwc3_probe(struct platform_device *pdev)
635{
636 struct device *dev = &pdev->dev;
637 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
638 struct device_node *node = dev->of_node;
639 struct resource *res;
640 struct dwc3 *dwc;
641
b09e99ee 642 int ret;
3c9f94ac
FB
643
644 void __iomem *regs;
645 void *mem;
646
647 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
734d5a53 648 if (!mem)
3c9f94ac 649 return -ENOMEM;
734d5a53 650
3c9f94ac
FB
651 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
652 dwc->mem = mem;
653 dwc->dev = dev;
654
655 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
656 if (!res) {
657 dev_err(dev, "missing IRQ\n");
658 return -ENODEV;
659 }
660 dwc->xhci_resources[1].start = res->start;
661 dwc->xhci_resources[1].end = res->end;
662 dwc->xhci_resources[1].flags = res->flags;
663 dwc->xhci_resources[1].name = res->name;
664
665 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
666 if (!res) {
667 dev_err(dev, "missing memory resource\n");
668 return -ENODEV;
669 }
670
f32a5e23
VG
671 dwc->xhci_resources[0].start = res->start;
672 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
673 DWC3_XHCI_REGS_END;
674 dwc->xhci_resources[0].flags = res->flags;
675 dwc->xhci_resources[0].name = res->name;
676
677 res->start += DWC3_GLOBALS_REGS_START;
678
679 /*
680 * Request memory region but exclude xHCI regs,
681 * since it will be requested by the xhci-plat driver.
682 */
683 regs = devm_ioremap_resource(dev, res);
684 if (IS_ERR(regs))
685 return PTR_ERR(regs);
686
687 dwc->regs = regs;
688 dwc->regs_size = resource_size(res);
689 /*
690 * restore res->start back to its original value so that,
691 * in case the probe is deferred, we don't end up getting error in
692 * request the memory region the next time probe is called.
693 */
694 res->start -= DWC3_GLOBALS_REGS_START;
695
3c9f94ac
FB
696 if (node) {
697 dwc->maximum_speed = of_usb_get_maximum_speed(node);
698
699 dwc->needs_fifo_resize = of_property_read_bool(node, "tx-fifo-resize");
700 dwc->dr_mode = of_usb_get_dr_mode(node);
701 } else if (pdata) {
702 dwc->maximum_speed = pdata->maximum_speed;
703
704 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
705 dwc->dr_mode = pdata->dr_mode;
706 }
707
708 /* default to superspeed if no maximum_speed passed */
709 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
710 dwc->maximum_speed = USB_SPEED_SUPER;
711
712 ret = dwc3_core_get_phy(dwc);
713 if (ret)
714 return ret;
715
72246da4
FB
716 spin_lock_init(&dwc->lock);
717 platform_set_drvdata(pdev, dwc);
718
19bacdc9
HK
719 if (!dev->dma_mask) {
720 dev->dma_mask = dev->parent->dma_mask;
721 dev->dma_parms = dev->parent->dma_parms;
722 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
723 }
ddff14f1 724
802ca850
CP
725 pm_runtime_enable(dev);
726 pm_runtime_get_sync(dev);
727 pm_runtime_forbid(dev);
72246da4 728
4fd24483
KVA
729 dwc3_cache_hwparams(dwc);
730
3921426b
FB
731 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
732 if (ret) {
733 dev_err(dwc->dev, "failed to allocate event buffers\n");
734 ret = -ENOMEM;
735 goto err0;
736 }
737
32a4a135
FB
738 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
739 dwc->dr_mode = USB_DR_MODE_HOST;
740 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
741 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
742
743 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
744 dwc->dr_mode = USB_DR_MODE_OTG;
745
72246da4
FB
746 ret = dwc3_core_init(dwc);
747 if (ret) {
802ca850 748 dev_err(dev, "failed to initialize core\n");
3921426b 749 goto err0;
72246da4
FB
750 }
751
3088f108
KVA
752 usb_phy_set_suspend(dwc->usb2_phy, 0);
753 usb_phy_set_suspend(dwc->usb3_phy, 0);
57303488
KVA
754 ret = phy_power_on(dwc->usb2_generic_phy);
755 if (ret < 0)
756 goto err1;
757
758 ret = phy_power_on(dwc->usb3_generic_phy);
759 if (ret < 0)
760 goto err_usb2phy_power;
3088f108 761
f122d33e
FB
762 ret = dwc3_event_buffers_setup(dwc);
763 if (ret) {
764 dev_err(dwc->dev, "failed to setup event buffers\n");
57303488 765 goto err_usb3phy_power;
f122d33e
FB
766 }
767
5f94adfe
FB
768 ret = dwc3_core_init_mode(dwc);
769 if (ret)
f122d33e 770 goto err2;
72246da4
FB
771
772 ret = dwc3_debugfs_init(dwc);
773 if (ret) {
802ca850 774 dev_err(dev, "failed to initialize debugfs\n");
f122d33e 775 goto err3;
72246da4
FB
776 }
777
802ca850 778 pm_runtime_allow(dev);
72246da4
FB
779
780 return 0;
781
f122d33e 782err3:
5f94adfe 783 dwc3_core_exit_mode(dwc);
72246da4 784
f122d33e
FB
785err2:
786 dwc3_event_buffers_cleanup(dwc);
787
57303488
KVA
788err_usb3phy_power:
789 phy_power_off(dwc->usb3_generic_phy);
790
791err_usb2phy_power:
792 phy_power_off(dwc->usb2_generic_phy);
793
72246da4 794err1:
501fae51
KVA
795 usb_phy_set_suspend(dwc->usb2_phy, 1);
796 usb_phy_set_suspend(dwc->usb3_phy, 1);
802ca850 797 dwc3_core_exit(dwc);
72246da4 798
3921426b
FB
799err0:
800 dwc3_free_event_buffers(dwc);
801
72246da4
FB
802 return ret;
803}
804
fb4e98ab 805static int dwc3_remove(struct platform_device *pdev)
72246da4 806{
72246da4 807 struct dwc3 *dwc = platform_get_drvdata(pdev);
72246da4 808
dc99f16f
FB
809 dwc3_debugfs_exit(dwc);
810 dwc3_core_exit_mode(dwc);
811 dwc3_event_buffers_cleanup(dwc);
812 dwc3_free_event_buffers(dwc);
813
8ba007a9
KVA
814 usb_phy_set_suspend(dwc->usb2_phy, 1);
815 usb_phy_set_suspend(dwc->usb3_phy, 1);
57303488
KVA
816 phy_power_off(dwc->usb2_generic_phy);
817 phy_power_off(dwc->usb3_generic_phy);
8ba007a9 818
72246da4 819 dwc3_core_exit(dwc);
72246da4 820
16b972a5 821 pm_runtime_put_sync(&pdev->dev);
72246da4
FB
822 pm_runtime_disable(&pdev->dev);
823
72246da4
FB
824 return 0;
825}
826
19fda7cd 827#ifdef CONFIG_PM_SLEEP
7415f17c
FB
828static int dwc3_prepare(struct device *dev)
829{
830 struct dwc3 *dwc = dev_get_drvdata(dev);
831 unsigned long flags;
832
833 spin_lock_irqsave(&dwc->lock, flags);
834
a45c82b8
RK
835 switch (dwc->dr_mode) {
836 case USB_DR_MODE_PERIPHERAL:
837 case USB_DR_MODE_OTG:
7415f17c
FB
838 dwc3_gadget_prepare(dwc);
839 /* FALLTHROUGH */
a45c82b8 840 case USB_DR_MODE_HOST:
7415f17c
FB
841 default:
842 dwc3_event_buffers_cleanup(dwc);
843 break;
844 }
845
846 spin_unlock_irqrestore(&dwc->lock, flags);
847
848 return 0;
849}
850
851static void dwc3_complete(struct device *dev)
852{
853 struct dwc3 *dwc = dev_get_drvdata(dev);
854 unsigned long flags;
855
856 spin_lock_irqsave(&dwc->lock, flags);
857
f45e5f00 858 dwc3_event_buffers_setup(dwc);
a45c82b8
RK
859 switch (dwc->dr_mode) {
860 case USB_DR_MODE_PERIPHERAL:
861 case USB_DR_MODE_OTG:
7415f17c
FB
862 dwc3_gadget_complete(dwc);
863 /* FALLTHROUGH */
a45c82b8 864 case USB_DR_MODE_HOST:
7415f17c 865 default:
7415f17c
FB
866 break;
867 }
868
869 spin_unlock_irqrestore(&dwc->lock, flags);
870}
871
872static int dwc3_suspend(struct device *dev)
873{
874 struct dwc3 *dwc = dev_get_drvdata(dev);
875 unsigned long flags;
876
877 spin_lock_irqsave(&dwc->lock, flags);
878
a45c82b8
RK
879 switch (dwc->dr_mode) {
880 case USB_DR_MODE_PERIPHERAL:
881 case USB_DR_MODE_OTG:
7415f17c
FB
882 dwc3_gadget_suspend(dwc);
883 /* FALLTHROUGH */
a45c82b8 884 case USB_DR_MODE_HOST:
7415f17c
FB
885 default:
886 /* do nothing */
887 break;
888 }
889
890 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
891 spin_unlock_irqrestore(&dwc->lock, flags);
892
893 usb_phy_shutdown(dwc->usb3_phy);
894 usb_phy_shutdown(dwc->usb2_phy);
57303488
KVA
895 phy_exit(dwc->usb2_generic_phy);
896 phy_exit(dwc->usb3_generic_phy);
7415f17c
FB
897
898 return 0;
899}
900
901static int dwc3_resume(struct device *dev)
902{
903 struct dwc3 *dwc = dev_get_drvdata(dev);
904 unsigned long flags;
57303488 905 int ret;
7415f17c
FB
906
907 usb_phy_init(dwc->usb3_phy);
908 usb_phy_init(dwc->usb2_phy);
57303488
KVA
909 ret = phy_init(dwc->usb2_generic_phy);
910 if (ret < 0)
911 return ret;
912
913 ret = phy_init(dwc->usb3_generic_phy);
914 if (ret < 0)
915 goto err_usb2phy_init;
7415f17c
FB
916
917 spin_lock_irqsave(&dwc->lock, flags);
918
919 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
920
a45c82b8
RK
921 switch (dwc->dr_mode) {
922 case USB_DR_MODE_PERIPHERAL:
923 case USB_DR_MODE_OTG:
7415f17c
FB
924 dwc3_gadget_resume(dwc);
925 /* FALLTHROUGH */
a45c82b8 926 case USB_DR_MODE_HOST:
7415f17c
FB
927 default:
928 /* do nothing */
929 break;
930 }
931
932 spin_unlock_irqrestore(&dwc->lock, flags);
933
934 pm_runtime_disable(dev);
935 pm_runtime_set_active(dev);
936 pm_runtime_enable(dev);
937
938 return 0;
57303488
KVA
939
940err_usb2phy_init:
941 phy_exit(dwc->usb2_generic_phy);
942
943 return ret;
7415f17c
FB
944}
945
946static const struct dev_pm_ops dwc3_dev_pm_ops = {
947 .prepare = dwc3_prepare,
948 .complete = dwc3_complete,
949
950 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
951};
952
953#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
954#else
955#define DWC3_PM_OPS NULL
956#endif
957
5088b6f5
KVA
958#ifdef CONFIG_OF
959static const struct of_device_id of_dwc3_match[] = {
22a5aa17
FB
960 {
961 .compatible = "snps,dwc3"
962 },
5088b6f5
KVA
963 {
964 .compatible = "synopsys,dwc3"
965 },
966 { },
967};
968MODULE_DEVICE_TABLE(of, of_dwc3_match);
969#endif
970
404905a6
HK
971#ifdef CONFIG_ACPI
972
973#define ACPI_ID_INTEL_BSW "808622B7"
974
975static const struct acpi_device_id dwc3_acpi_match[] = {
976 { ACPI_ID_INTEL_BSW, 0 },
977 { },
978};
979MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
980#endif
981
72246da4
FB
982static struct platform_driver dwc3_driver = {
983 .probe = dwc3_probe,
7690417d 984 .remove = dwc3_remove,
72246da4
FB
985 .driver = {
986 .name = "dwc3",
5088b6f5 987 .of_match_table = of_match_ptr(of_dwc3_match),
404905a6 988 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
7415f17c 989 .pm = DWC3_PM_OPS,
72246da4 990 },
72246da4
FB
991};
992
b1116dcc
TK
993module_platform_driver(dwc3_driver);
994
7ae4fc4d 995MODULE_ALIAS("platform:dwc3");
72246da4 996MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
5945f789 997MODULE_LICENSE("GPL v2");
72246da4 998MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");