2 * core.c - DesignWare USB3 DRD Controller Core file
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The names of the above-listed copyright holders may not be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
22 * ALTERNATIVELY, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2, as published by the Free
24 * Software Foundation.
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
27 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
28 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/slab.h>
42 #include <linux/spinlock.h>
43 #include <linux/platform_device.h>
44 #include <linux/pm_runtime.h>
45 #include <linux/interrupt.h>
46 #include <linux/ioport.h>
48 #include <linux/list.h>
49 #include <linux/delay.h>
50 #include <linux/dma-mapping.h>
53 #include <linux/usb/ch9.h>
54 #include <linux/usb/gadget.h>
62 static char *maximum_speed
= "super";
63 module_param(maximum_speed
, charp
, 0);
64 MODULE_PARM_DESC(maximum_speed
, "Maximum supported speed.");
66 /* -------------------------------------------------------------------------- */
68 #define DWC3_DEVS_POSSIBLE 32
70 static DECLARE_BITMAP(dwc3_devs
, DWC3_DEVS_POSSIBLE
);
72 int dwc3_get_device_id(void)
77 id
= find_first_zero_bit(dwc3_devs
, DWC3_DEVS_POSSIBLE
);
78 if (id
< DWC3_DEVS_POSSIBLE
) {
81 old
= test_and_set_bit(id
, dwc3_devs
);
85 pr_err("dwc3: no space for new device\n");
91 EXPORT_SYMBOL_GPL(dwc3_get_device_id
);
93 void dwc3_put_device_id(int id
)
100 ret
= test_bit(id
, dwc3_devs
);
101 WARN(!ret
, "dwc3: ID %d not in use\n", id
);
102 clear_bit(id
, dwc3_devs
);
104 EXPORT_SYMBOL_GPL(dwc3_put_device_id
);
106 void dwc3_set_mode(struct dwc3
*dwc
, u32 mode
)
110 reg
= dwc3_readl(dwc
->regs
, DWC3_GCTL
);
111 reg
&= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG
));
112 reg
|= DWC3_GCTL_PRTCAPDIR(mode
);
113 dwc3_writel(dwc
->regs
, DWC3_GCTL
, reg
);
117 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
118 * @dwc: pointer to our context structure
120 static void dwc3_core_soft_reset(struct dwc3
*dwc
)
124 /* Before Resetting PHY, put Core in Reset */
125 reg
= dwc3_readl(dwc
->regs
, DWC3_GCTL
);
126 reg
|= DWC3_GCTL_CORESOFTRESET
;
127 dwc3_writel(dwc
->regs
, DWC3_GCTL
, reg
);
129 /* Assert USB3 PHY reset */
130 reg
= dwc3_readl(dwc
->regs
, DWC3_GUSB3PIPECTL(0));
131 reg
|= DWC3_GUSB3PIPECTL_PHYSOFTRST
;
132 dwc3_writel(dwc
->regs
, DWC3_GUSB3PIPECTL(0), reg
);
134 /* Assert USB2 PHY reset */
135 reg
= dwc3_readl(dwc
->regs
, DWC3_GUSB2PHYCFG(0));
136 reg
|= DWC3_GUSB2PHYCFG_PHYSOFTRST
;
137 dwc3_writel(dwc
->regs
, DWC3_GUSB2PHYCFG(0), reg
);
141 /* Clear USB3 PHY reset */
142 reg
= dwc3_readl(dwc
->regs
, DWC3_GUSB3PIPECTL(0));
143 reg
&= ~DWC3_GUSB3PIPECTL_PHYSOFTRST
;
144 dwc3_writel(dwc
->regs
, DWC3_GUSB3PIPECTL(0), reg
);
146 /* Clear USB2 PHY reset */
147 reg
= dwc3_readl(dwc
->regs
, DWC3_GUSB2PHYCFG(0));
148 reg
&= ~DWC3_GUSB2PHYCFG_PHYSOFTRST
;
149 dwc3_writel(dwc
->regs
, DWC3_GUSB2PHYCFG(0), reg
);
153 /* After PHYs are stable we can take Core out of reset state */
154 reg
= dwc3_readl(dwc
->regs
, DWC3_GCTL
);
155 reg
&= ~DWC3_GCTL_CORESOFTRESET
;
156 dwc3_writel(dwc
->regs
, DWC3_GCTL
, reg
);
160 * dwc3_free_one_event_buffer - Frees one event buffer
161 * @dwc: Pointer to our controller context structure
162 * @evt: Pointer to event buffer to be freed
164 static void dwc3_free_one_event_buffer(struct dwc3
*dwc
,
165 struct dwc3_event_buffer
*evt
)
167 dma_free_coherent(dwc
->dev
, evt
->length
, evt
->buf
, evt
->dma
);
172 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
173 * @dwc: Pointer to our controller context structure
174 * @length: size of the event buffer
176 * Returns a pointer to the allocated event buffer structure on success
177 * otherwise ERR_PTR(errno).
179 static struct dwc3_event_buffer
*__devinit
180 dwc3_alloc_one_event_buffer(struct dwc3
*dwc
, unsigned length
)
182 struct dwc3_event_buffer
*evt
;
184 evt
= kzalloc(sizeof(*evt
), GFP_KERNEL
);
186 return ERR_PTR(-ENOMEM
);
189 evt
->length
= length
;
190 evt
->buf
= dma_alloc_coherent(dwc
->dev
, length
,
191 &evt
->dma
, GFP_KERNEL
);
194 return ERR_PTR(-ENOMEM
);
201 * dwc3_free_event_buffers - frees all allocated event buffers
202 * @dwc: Pointer to our controller context structure
204 static void dwc3_free_event_buffers(struct dwc3
*dwc
)
206 struct dwc3_event_buffer
*evt
;
209 for (i
= 0; i
< dwc
->num_event_buffers
; i
++) {
210 evt
= dwc
->ev_buffs
[i
];
212 dwc3_free_one_event_buffer(dwc
, evt
);
215 kfree(dwc
->ev_buffs
);
219 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
220 * @dwc: pointer to our controller context structure
221 * @length: size of event buffer
223 * Returns 0 on success otherwise negative errno. In the error case, dwc
224 * may contain some buffers allocated but not all which were requested.
226 static int __devinit
dwc3_alloc_event_buffers(struct dwc3
*dwc
, unsigned length
)
231 num
= DWC3_NUM_INT(dwc
->hwparams
.hwparams1
);
232 dwc
->num_event_buffers
= num
;
234 dwc
->ev_buffs
= kzalloc(sizeof(*dwc
->ev_buffs
) * num
, GFP_KERNEL
);
235 if (!dwc
->ev_buffs
) {
236 dev_err(dwc
->dev
, "can't allocate event buffers array\n");
240 for (i
= 0; i
< num
; i
++) {
241 struct dwc3_event_buffer
*evt
;
243 evt
= dwc3_alloc_one_event_buffer(dwc
, length
);
245 dev_err(dwc
->dev
, "can't allocate event buffer\n");
248 dwc
->ev_buffs
[i
] = evt
;
255 * dwc3_event_buffers_setup - setup our allocated event buffers
256 * @dwc: pointer to our controller context structure
258 * Returns 0 on success otherwise negative errno.
260 static int dwc3_event_buffers_setup(struct dwc3
*dwc
)
262 struct dwc3_event_buffer
*evt
;
265 for (n
= 0; n
< dwc
->num_event_buffers
; n
++) {
266 evt
= dwc
->ev_buffs
[n
];
267 dev_dbg(dwc
->dev
, "Event buf %p dma %08llx length %d\n",
268 evt
->buf
, (unsigned long long) evt
->dma
,
273 dwc3_writel(dwc
->regs
, DWC3_GEVNTADRLO(n
),
274 lower_32_bits(evt
->dma
));
275 dwc3_writel(dwc
->regs
, DWC3_GEVNTADRHI(n
),
276 upper_32_bits(evt
->dma
));
277 dwc3_writel(dwc
->regs
, DWC3_GEVNTSIZ(n
),
278 evt
->length
& 0xffff);
279 dwc3_writel(dwc
->regs
, DWC3_GEVNTCOUNT(n
), 0);
285 static void dwc3_event_buffers_cleanup(struct dwc3
*dwc
)
287 struct dwc3_event_buffer
*evt
;
290 for (n
= 0; n
< dwc
->num_event_buffers
; n
++) {
291 evt
= dwc
->ev_buffs
[n
];
295 dwc3_writel(dwc
->regs
, DWC3_GEVNTADRLO(n
), 0);
296 dwc3_writel(dwc
->regs
, DWC3_GEVNTADRHI(n
), 0);
297 dwc3_writel(dwc
->regs
, DWC3_GEVNTSIZ(n
), 0);
298 dwc3_writel(dwc
->regs
, DWC3_GEVNTCOUNT(n
), 0);
302 static void __devinit
dwc3_cache_hwparams(struct dwc3
*dwc
)
304 struct dwc3_hwparams
*parms
= &dwc
->hwparams
;
306 parms
->hwparams0
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS0
);
307 parms
->hwparams1
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS1
);
308 parms
->hwparams2
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS2
);
309 parms
->hwparams3
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS3
);
310 parms
->hwparams4
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS4
);
311 parms
->hwparams5
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS5
);
312 parms
->hwparams6
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS6
);
313 parms
->hwparams7
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS7
);
314 parms
->hwparams8
= dwc3_readl(dwc
->regs
, DWC3_GHWPARAMS8
);
318 * dwc3_core_init - Low-level initialization of DWC3 Core
319 * @dwc: Pointer to our controller context structure
321 * Returns 0 on success otherwise negative errno.
323 static int __devinit
dwc3_core_init(struct dwc3
*dwc
)
325 unsigned long timeout
;
329 reg
= dwc3_readl(dwc
->regs
, DWC3_GSNPSID
);
330 /* This should read as U3 followed by revision number */
331 if ((reg
& DWC3_GSNPSID_MASK
) != 0x55330000) {
332 dev_err(dwc
->dev
, "this is not a DesignWare USB3 DRD Core\n");
338 /* issue device SoftReset too */
339 timeout
= jiffies
+ msecs_to_jiffies(500);
340 dwc3_writel(dwc
->regs
, DWC3_DCTL
, DWC3_DCTL_CSFTRST
);
342 reg
= dwc3_readl(dwc
->regs
, DWC3_DCTL
);
343 if (!(reg
& DWC3_DCTL_CSFTRST
))
346 if (time_after(jiffies
, timeout
)) {
347 dev_err(dwc
->dev
, "Reset Timed Out\n");
355 dwc3_core_soft_reset(dwc
);
357 dwc3_cache_hwparams(dwc
);
359 reg
= dwc3_readl(dwc
->regs
, DWC3_GCTL
);
360 reg
&= ~DWC3_GCTL_SCALEDOWN_MASK
;
361 reg
&= ~DWC3_GCTL_DISSCRAMBLE
;
363 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc
->hwparams
.hwparams1
)) {
364 case DWC3_GHWPARAMS1_EN_PWROPT_CLK
:
365 reg
&= ~DWC3_GCTL_DSBLCLKGTNG
;
368 dev_dbg(dwc
->dev
, "No power optimization available\n");
372 * WORKAROUND: DWC3 revisions <1.90a have a bug
373 * where the device can fail to connect at SuperSpeed
374 * and falls back to high-speed mode which causes
375 * the device to enter a Connect/Disconnect loop
377 if (dwc
->revision
< DWC3_REVISION_190A
)
378 reg
|= DWC3_GCTL_U2RSTECN
;
380 dwc3_writel(dwc
->regs
, DWC3_GCTL
, reg
);
382 ret
= dwc3_alloc_event_buffers(dwc
, DWC3_EVENT_BUFFERS_SIZE
);
384 dev_err(dwc
->dev
, "failed to allocate event buffers\n");
389 ret
= dwc3_event_buffers_setup(dwc
);
391 dev_err(dwc
->dev
, "failed to setup event buffers\n");
398 dwc3_free_event_buffers(dwc
);
404 static void dwc3_core_exit(struct dwc3
*dwc
)
406 dwc3_event_buffers_cleanup(dwc
);
407 dwc3_free_event_buffers(dwc
);
410 #define DWC3_ALIGN_MASK (16 - 1)
412 static int __devinit
dwc3_probe(struct platform_device
*pdev
)
414 struct device_node
*node
= pdev
->dev
.of_node
;
415 struct resource
*res
;
417 struct device
*dev
= &pdev
->dev
;
426 mem
= devm_kzalloc(dev
, sizeof(*dwc
) + DWC3_ALIGN_MASK
, GFP_KERNEL
);
428 dev_err(dev
, "not enough memory\n");
431 dwc
= PTR_ALIGN(mem
, DWC3_ALIGN_MASK
+ 1);
434 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
436 dev_err(dev
, "missing IRQ\n");
439 dwc
->xhci_resources
[1].start
= res
->start
;
440 dwc
->xhci_resources
[1].end
= res
->end
;
441 dwc
->xhci_resources
[1].flags
= res
->flags
;
442 dwc
->xhci_resources
[1].name
= res
->name
;
444 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
446 dev_err(dev
, "missing memory resource\n");
449 dwc
->xhci_resources
[0].start
= res
->start
;
450 dwc
->xhci_resources
[0].end
= dwc
->xhci_resources
[0].start
+
452 dwc
->xhci_resources
[0].flags
= res
->flags
;
453 dwc
->xhci_resources
[0].name
= res
->name
;
456 * Request memory region but exclude xHCI regs,
457 * since it will be requested by the xhci-plat driver.
459 res
= devm_request_mem_region(dev
, res
->start
+ DWC3_GLOBALS_REGS_START
,
460 resource_size(res
) - DWC3_GLOBALS_REGS_START
,
463 dev_err(dev
, "can't request mem region\n");
467 regs
= devm_ioremap(dev
, res
->start
, resource_size(res
));
469 dev_err(dev
, "ioremap failed\n");
473 spin_lock_init(&dwc
->lock
);
474 platform_set_drvdata(pdev
, dwc
);
477 dwc
->regs_size
= resource_size(res
);
480 if (!strncmp("super", maximum_speed
, 5))
481 dwc
->maximum_speed
= DWC3_DCFG_SUPERSPEED
;
482 else if (!strncmp("high", maximum_speed
, 4))
483 dwc
->maximum_speed
= DWC3_DCFG_HIGHSPEED
;
484 else if (!strncmp("full", maximum_speed
, 4))
485 dwc
->maximum_speed
= DWC3_DCFG_FULLSPEED1
;
486 else if (!strncmp("low", maximum_speed
, 3))
487 dwc
->maximum_speed
= DWC3_DCFG_LOWSPEED
;
489 dwc
->maximum_speed
= DWC3_DCFG_SUPERSPEED
;
491 if (of_get_property(node
, "tx-fifo-resize", NULL
))
492 dwc
->needs_fifo_resize
= true;
494 pm_runtime_enable(dev
);
495 pm_runtime_get_sync(dev
);
496 pm_runtime_forbid(dev
);
498 ret
= dwc3_core_init(dwc
);
500 dev_err(dev
, "failed to initialize core\n");
504 mode
= DWC3_MODE(dwc
->hwparams
.hwparams0
);
507 case DWC3_MODE_DEVICE
:
508 dwc3_set_mode(dwc
, DWC3_GCTL_PRTCAP_DEVICE
);
509 ret
= dwc3_gadget_init(dwc
);
511 dev_err(dev
, "failed to initialize gadget\n");
516 dwc3_set_mode(dwc
, DWC3_GCTL_PRTCAP_HOST
);
517 ret
= dwc3_host_init(dwc
);
519 dev_err(dev
, "failed to initialize host\n");
524 dwc3_set_mode(dwc
, DWC3_GCTL_PRTCAP_OTG
);
525 ret
= dwc3_host_init(dwc
);
527 dev_err(dev
, "failed to initialize host\n");
531 ret
= dwc3_gadget_init(dwc
);
533 dev_err(dev
, "failed to initialize gadget\n");
538 dev_err(dev
, "Unsupported mode of operation %d\n", mode
);
543 ret
= dwc3_debugfs_init(dwc
);
545 dev_err(dev
, "failed to initialize debugfs\n");
549 pm_runtime_allow(dev
);
555 case DWC3_MODE_DEVICE
:
556 dwc3_gadget_exit(dwc
);
563 dwc3_gadget_exit(dwc
);
576 static int __devexit
dwc3_remove(struct platform_device
*pdev
)
578 struct dwc3
*dwc
= platform_get_drvdata(pdev
);
579 struct resource
*res
;
581 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
583 pm_runtime_put(&pdev
->dev
);
584 pm_runtime_disable(&pdev
->dev
);
586 dwc3_debugfs_exit(dwc
);
589 case DWC3_MODE_DEVICE
:
590 dwc3_gadget_exit(dwc
);
597 dwc3_gadget_exit(dwc
);
609 static struct platform_driver dwc3_driver
= {
611 .remove
= __devexit_p(dwc3_remove
),
617 module_platform_driver(dwc3_driver
);
619 MODULE_ALIAS("platform:dwc3");
620 MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
621 MODULE_LICENSE("Dual BSD/GPL");
622 MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");