blob: d001417e8e370cd7f3e7fa2d9b9c2678271987dc [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * core.c - DesignWare USB3 DRD Controller Core file
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * 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.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * 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.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 *
Felipe Balbi5945f782013-06-30 14:15:11 +030018 * 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/>.
Felipe Balbi72246da2011-08-19 18:10:58 +030020 */
21
Felipe Balbia72e6582011-09-05 13:37:28 +030022#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030023#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>
Felipe Balbi457e84b2012-01-18 18:04:09 +020034#include <linux/of.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030035
36#include <linux/usb/ch9.h>
37#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030038#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050039#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030040
Felipe Balbi6462cbd2013-06-30 14:19:33 +030041#include "platform_data.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030042#include "core.h"
43#include "gadget.h"
44#include "io.h"
45
46#include "debug.h"
47
Felipe Balbi8300dd22011-10-18 13:54:01 +030048/* -------------------------------------------------------------------------- */
49
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +010050void 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}
Felipe Balbi8300dd22011-10-18 13:54:01 +030059
Felipe Balbi72246da2011-08-19 18:10:58 +030060/**
61 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
62 * @dwc: pointer to our context structure
63 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053064static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +030065{
66 u32 reg;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053067 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +030068
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
Felipe Balbi51e1e7b2012-07-19 14:09:48 +030084 usb_phy_init(dwc->usb2_phy);
85 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053086 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 }
Felipe Balbi72246da2011-08-19 18:10:58 +030095 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
Pratyush Anand45627ac2012-06-21 17:44:28 +0530107 mdelay(100);
108
Felipe Balbi72246da2011-08-19 18:10:58 +0300109 /* 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);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530113
114 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300115}
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);
Felipe Balbi72246da2011-08-19 18:10:58 +0300126}
127
128/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800129 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300130 * @dwc: Pointer to our controller context structure
131 * @length: size of the event buffer
132 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800133 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300134 * otherwise ERR_PTR(errno).
135 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200136static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
137 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300138{
139 struct dwc3_event_buffer *evt;
140
Felipe Balbi380f0d22012-10-11 13:48:36 +0300141 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300142 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);
Felipe Balbie32672f2012-11-08 15:26:41 +0200149 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300150 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300151
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
Felipe Balbi9f622b22011-10-12 10:31:04 +0300164 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300165 evt = dwc->ev_buffs[i];
Anton Tikhomirov64b6c8a2012-03-06 17:05:15 +0900166 if (evt)
Felipe Balbi72246da2011-08-19 18:10:58 +0300167 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300168 }
169}
170
171/**
172 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800173 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300174 * @length: size of event buffer
175 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800176 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300177 * may contain some buffers allocated but not all which were requested.
178 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500179static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300180{
Felipe Balbi9f622b22011-10-12 10:31:04 +0300181 int num;
Felipe Balbi72246da2011-08-19 18:10:58 +0300182 int i;
183
Felipe Balbi9f622b22011-10-12 10:31:04 +0300184 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
185 dwc->num_event_buffers = num;
186
Felipe Balbi380f0d22012-10-11 13:48:36 +0300187 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
188 GFP_KERNEL);
Felipe Balbi457d3f22011-10-24 12:03:13 +0300189 if (!dwc->ev_buffs) {
190 dev_err(dwc->dev, "can't allocate event buffers array\n");
191 return -ENOMEM;
192 }
193
Felipe Balbi72246da2011-08-19 18:10:58 +0300194 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
Paul Zimmerman1d046792012-02-15 18:56:56 -0800210 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300211 *
212 * Returns 0 on success otherwise negative errno.
213 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300214static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300215{
216 struct dwc3_event_buffer *evt;
217 int n;
218
Felipe Balbi9f622b22011-10-12 10:31:04 +0300219 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300220 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
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300225 evt->lpos = 0;
226
Felipe Balbi72246da2011-08-19 18:10:58 +0300227 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),
Felipe Balbi68d6a012013-06-12 21:09:26 +0300232 DWC3_GEVNTSIZ_SIZE(evt->length));
Felipe Balbi72246da2011-08-19 18:10:58 +0300233 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
Felipe Balbi9f622b22011-10-12 10:31:04 +0300244 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300245 evt = dwc->ev_buffs[n];
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300246
247 evt->lpos = 0;
248
Felipe Balbi72246da2011-08-19 18:10:58 +0300249 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
250 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
Felipe Balbi68d6a012013-06-12 21:09:26 +0300251 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
252 | DWC3_GEVNTSIZ_SIZE(0));
Felipe Balbi72246da2011-08-19 18:10:58 +0300253 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
254 }
255}
256
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600257static 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
Felipe Balbi789451f62011-05-05 15:53:10 +0300341static 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
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500352static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300353{
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
Felipe Balbi72246da2011-08-19 18:10:58 +0300367/**
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 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500373static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300374{
375 unsigned long timeout;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600376 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300377 u32 reg;
378 int ret;
379
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200380 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 }
Felipe Balbi248b1222011-12-14 21:59:30 +0200387 dwc->revision = reg;
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200388
Felipe Balbi72246da2011-08-19 18:10:58 +0300389 /* 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
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530406 ret = dwc3_core_soft_reset(dwc);
407 if (ret)
408 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530409
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100410 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800411 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100412 reg &= ~DWC3_GCTL_DISSCRAMBLE;
413
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100414 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100415 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600416 /**
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;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100435 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600436 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
437 /* enable hibernation here */
438 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
439 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100440 default:
441 dev_dbg(dwc->dev, "No power optimization available\n");
442 }
443
444 /*
445 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800446 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100447 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800448 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100449 */
450 if (dwc->revision < DWC3_REVISION_190A)
451 reg |= DWC3_GCTL_U2RSTECN;
452
Felipe Balbi789451f62011-05-05 15:53:10 +0300453 dwc3_core_num_eps(dwc);
454
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100455 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
456
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600457 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
Felipe Balbi72246da2011-08-19 18:10:58 +0300465 return 0;
466
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600467err2:
468 dwc3_free_scratch_buffers(dwc);
469
470err1:
471 usb_phy_shutdown(dwc->usb2_phy);
472 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530473 phy_exit(dwc->usb2_generic_phy);
474 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600475
Felipe Balbi72246da2011-08-19 18:10:58 +0300476err0:
477 return ret;
478}
479
480static void dwc3_core_exit(struct dwc3 *dwc)
481{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600482 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530483 usb_phy_shutdown(dwc->usb2_phy);
484 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530485 phy_exit(dwc->usb2_generic_phy);
486 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300487}
488
489#define DWC3_ALIGN_MASK (16 - 1)
490
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500491static int dwc3_probe(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +0300492{
Felipe Balbi941ea362013-07-31 09:21:25 +0300493 struct device *dev = &pdev->dev;
494 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
495 struct device_node *node = dev->of_node;
Felipe Balbi72246da2011-08-19 18:10:58 +0300496 struct resource *res;
497 struct dwc3 *dwc;
Felipe Balbi0949e992011-10-12 10:44:56 +0300498
Felipe Balbi72246da2011-08-19 18:10:58 +0300499 int ret = -ENOMEM;
Felipe Balbi0949e992011-10-12 10:44:56 +0300500
501 void __iomem *regs;
Felipe Balbi72246da2011-08-19 18:10:58 +0300502 void *mem;
503
Chanho Park802ca852012-02-15 18:27:55 +0900504 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300505 if (!mem) {
Chanho Park802ca852012-02-15 18:27:55 +0900506 dev_err(dev, "not enough memory\n");
507 return -ENOMEM;
Felipe Balbi72246da2011-08-19 18:10:58 +0300508 }
509 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
510 dwc->mem = mem;
511
Ido Shayevitz51249dc2012-04-24 14:18:39 +0300512 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300513 if (!res) {
Ido Shayevitz51249dc2012-04-24 14:18:39 +0300514 dev_err(dev, "missing IRQ\n");
Chanho Park802ca852012-02-15 18:27:55 +0900515 return -ENODEV;
Felipe Balbi72246da2011-08-19 18:10:58 +0300516 }
Kishon Vijay Abraham I066618b2012-08-21 14:56:16 +0530517 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;
Felipe Balbi72246da2011-08-19 18:10:58 +0300521
Ido Shayevitz51249dc2012-04-24 14:18:39 +0300522 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
523 if (!res) {
524 dev_err(dev, "missing memory resource\n");
525 return -ENODEV;
526 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300527
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530528 if (node) {
Felipe Balbif7e846f2013-06-30 14:29:51 +0300529 dwc->maximum_speed = of_usb_get_maximum_speed(node);
530
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530531 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);
Felipe Balbi6462cbd2013-06-30 14:19:33 +0300533
534 dwc->needs_fifo_resize = of_property_read_bool(node, "tx-fifo-resize");
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500535 dwc->dr_mode = of_usb_get_dr_mode(node);
Felipe Balbibb674902013-08-14 13:21:23 -0500536 } else if (pdata) {
Felipe Balbif7e846f2013-06-30 14:29:51 +0300537 dwc->maximum_speed = pdata->maximum_speed;
538
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530539 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);
Felipe Balbi6462cbd2013-06-30 14:19:33 +0300541
542 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500543 dwc->dr_mode = pdata->dr_mode;
Felipe Balbibb674902013-08-14 13:21:23 -0500544 } 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);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530547 }
548
Felipe Balbif7e846f2013-06-30 14:29:51 +0300549 /* default to superspeed if no maximum_speed passed */
550 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
551 dwc->maximum_speed = USB_SPEED_SUPER;
552
Felipe Balbid105e7f2013-03-15 10:52:08 +0200553 if (IS_ERR(dwc->usb2_phy)) {
554 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530555 if (ret == -ENXIO || ret == -ENODEV) {
556 dwc->usb2_phy = NULL;
557 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200558 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530559 } else {
560 dev_err(dev, "no usb2 phy configured\n");
561 return ret;
562 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300563 }
564
Felipe Balbid105e7f2013-03-15 10:52:08 +0200565 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500566 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530567 if (ret == -ENXIO || ret == -ENODEV) {
568 dwc->usb3_phy = NULL;
569 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200570 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530571 } else {
572 dev_err(dev, "no usb3 phy configured\n");
573 return ret;
574 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300575 }
576
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530577 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
Ivan T. Ivanov2e112342013-07-29 10:27:02 +0300603 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
Felipe Balbi72246da2011-08-19 18:10:58 +0300619 spin_lock_init(&dwc->lock);
620 platform_set_drvdata(pdev, dwc);
621
622 dwc->regs = regs;
623 dwc->regs_size = resource_size(res);
Chanho Park802ca852012-02-15 18:27:55 +0900624 dwc->dev = dev;
Felipe Balbi72246da2011-08-19 18:10:58 +0300625
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530626 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
Chanho Park802ca852012-02-15 18:27:55 +0900630 pm_runtime_enable(dev);
631 pm_runtime_get_sync(dev);
632 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300633
Kishon Vijay Abraham I4fd24482012-11-16 12:07:54 +0530634 dwc3_cache_hwparams(dwc);
635
Felipe Balbi39214262012-10-11 13:54:36 +0300636 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
Felipe Balbi32a4a132014-02-25 14:00:13 -0600643 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
Felipe Balbi72246da2011-08-19 18:10:58 +0300651 ret = dwc3_core_init(dwc);
652 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900653 dev_err(dev, "failed to initialize core\n");
Felipe Balbi39214262012-10-11 13:54:36 +0300654 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300655 }
656
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530657 usb_phy_set_suspend(dwc->usb2_phy, 0);
658 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530659 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;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530666
Felipe Balbif122d332013-02-08 15:15:11 +0200667 ret = dwc3_event_buffers_setup(dwc);
668 if (ret) {
669 dev_err(dwc->dev, "failed to setup event buffers\n");
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530670 goto err_usb3phy_power;
Felipe Balbif122d332013-02-08 15:15:11 +0200671 }
672
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500673 switch (dwc->dr_mode) {
674 case USB_DR_MODE_PERIPHERAL:
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +0100675 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
Felipe Balbi72246da2011-08-19 18:10:58 +0300676 ret = dwc3_gadget_init(dwc);
677 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900678 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200679 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +0300680 }
Felipe Balbi0949e992011-10-12 10:44:56 +0300681 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500682 case USB_DR_MODE_HOST:
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +0100683 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
Felipe Balbid07e8812011-10-12 14:08:26 +0300684 ret = dwc3_host_init(dwc);
685 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900686 dev_err(dev, "failed to initialize host\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200687 goto err2;
Felipe Balbid07e8812011-10-12 14:08:26 +0300688 }
689 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500690 case USB_DR_MODE_OTG:
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +0100691 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
Felipe Balbid07e8812011-10-12 14:08:26 +0300692 ret = dwc3_host_init(dwc);
693 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900694 dev_err(dev, "failed to initialize host\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200695 goto err2;
Felipe Balbid07e8812011-10-12 14:08:26 +0300696 }
697
698 ret = dwc3_gadget_init(dwc);
699 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900700 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200701 goto err2;
Felipe Balbid07e8812011-10-12 14:08:26 +0300702 }
703 break;
Felipe Balbi0949e992011-10-12 10:44:56 +0300704 default:
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500705 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
Felipe Balbif122d332013-02-08 15:15:11 +0200706 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +0300707 }
708
709 ret = dwc3_debugfs_init(dwc);
710 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900711 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200712 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +0300713 }
714
Chanho Park802ca852012-02-15 18:27:55 +0900715 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300716
717 return 0;
718
Felipe Balbif122d332013-02-08 15:15:11 +0200719err3:
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500720 switch (dwc->dr_mode) {
721 case USB_DR_MODE_PERIPHERAL:
Felipe Balbi72246da2011-08-19 18:10:58 +0300722 dwc3_gadget_exit(dwc);
Felipe Balbi0949e992011-10-12 10:44:56 +0300723 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500724 case USB_DR_MODE_HOST:
Felipe Balbid07e8812011-10-12 14:08:26 +0300725 dwc3_host_exit(dwc);
726 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500727 case USB_DR_MODE_OTG:
Felipe Balbid07e8812011-10-12 14:08:26 +0300728 dwc3_host_exit(dwc);
729 dwc3_gadget_exit(dwc);
730 break;
Felipe Balbi0949e992011-10-12 10:44:56 +0300731 default:
732 /* do nothing */
733 break;
734 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300735
Felipe Balbif122d332013-02-08 15:15:11 +0200736err2:
737 dwc3_event_buffers_cleanup(dwc);
738
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530739err_usb3phy_power:
740 phy_power_off(dwc->usb3_generic_phy);
741
742err_usb2phy_power:
743 phy_power_off(dwc->usb2_generic_phy);
744
Chanho Park802ca852012-02-15 18:27:55 +0900745err1:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +0530746 usb_phy_set_suspend(dwc->usb2_phy, 1);
747 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300748 dwc3_core_exit(dwc);
749
Felipe Balbi39214262012-10-11 13:54:36 +0300750err0:
751 dwc3_free_event_buffers(dwc);
752
Felipe Balbi72246da2011-08-19 18:10:58 +0300753 return ret;
754}
755
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500756static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +0300757{
Felipe Balbi72246da2011-08-19 18:10:58 +0300758 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300759
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530760 usb_phy_set_suspend(dwc->usb2_phy, 1);
761 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530762 phy_power_off(dwc->usb2_generic_phy);
763 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530764
Felipe Balbi16b972a2013-10-11 08:34:28 -0500765 pm_runtime_put_sync(&pdev->dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300766 pm_runtime_disable(&pdev->dev);
767
768 dwc3_debugfs_exit(dwc);
769
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500770 switch (dwc->dr_mode) {
771 case USB_DR_MODE_PERIPHERAL:
Felipe Balbi72246da2011-08-19 18:10:58 +0300772 dwc3_gadget_exit(dwc);
Felipe Balbi0949e992011-10-12 10:44:56 +0300773 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500774 case USB_DR_MODE_HOST:
Felipe Balbid07e8812011-10-12 14:08:26 +0300775 dwc3_host_exit(dwc);
776 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500777 case USB_DR_MODE_OTG:
Felipe Balbid07e8812011-10-12 14:08:26 +0300778 dwc3_host_exit(dwc);
779 dwc3_gadget_exit(dwc);
780 break;
Felipe Balbi0949e992011-10-12 10:44:56 +0300781 default:
782 /* do nothing */
783 break;
784 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300785
Felipe Balbif122d332013-02-08 15:15:11 +0200786 dwc3_event_buffers_cleanup(dwc);
Felipe Balbid9b43302013-02-08 15:14:16 +0200787 dwc3_free_event_buffers(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300788 dwc3_core_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300789
790 return 0;
791}
792
Jingoo Han19fda7c2013-03-26 01:52:48 +0000793#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +0300794static 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
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500801 switch (dwc->dr_mode) {
802 case USB_DR_MODE_PERIPHERAL:
803 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300804 dwc3_gadget_prepare(dwc);
805 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500806 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300807 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
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500824 switch (dwc->dr_mode) {
825 case USB_DR_MODE_PERIPHERAL:
826 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300827 dwc3_gadget_complete(dwc);
828 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500829 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300830 default:
831 dwc3_event_buffers_setup(dwc);
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
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500845 switch (dwc->dr_mode) {
846 case USB_DR_MODE_PERIPHERAL:
847 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300848 dwc3_gadget_suspend(dwc);
849 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500850 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300851 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);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530861 phy_exit(dwc->usb2_generic_phy);
862 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +0300863
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;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530871 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +0300872
873 usb_phy_init(dwc->usb3_phy);
874 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530875 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;
Felipe Balbi7415f172012-04-30 14:56:33 +0300882
883 spin_lock_irqsave(&dwc->lock, flags);
884
885 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
886
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500887 switch (dwc->dr_mode) {
888 case USB_DR_MODE_PERIPHERAL:
889 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300890 dwc3_gadget_resume(dwc);
891 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500892 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300893 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;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530905
906err_usb2phy_init:
907 phy_exit(dwc->usb2_generic_phy);
908
909 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +0300910}
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
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530924#ifdef CONFIG_OF
925static const struct of_device_id of_dwc3_match[] = {
926 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +0300927 .compatible = "snps,dwc3"
928 },
929 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530930 .compatible = "synopsys,dwc3"
931 },
932 { },
933};
934MODULE_DEVICE_TABLE(of, of_dwc3_match);
935#endif
936
Felipe Balbi72246da2011-08-19 18:10:58 +0300937static struct platform_driver dwc3_driver = {
938 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500939 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +0300940 .driver = {
941 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530942 .of_match_table = of_match_ptr(of_dwc3_match),
Felipe Balbi7415f172012-04-30 14:56:33 +0300943 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +0300944 },
Felipe Balbi72246da2011-08-19 18:10:58 +0300945};
946
Tobias Klauserb1116dc2012-02-28 12:57:20 +0100947module_platform_driver(dwc3_driver);
948
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +0200949MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +0300950MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300951MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +0300952MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");