blob: 29a7da0c3178b174b26e34ca69f6adb772627eab [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 Balbifa0ea132014-09-19 15:51:11 -050022#include <linux/version.h>
Felipe Balbia72e6582011-09-05 13:37:28 +030023#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030024#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>
Felipe Balbi457e84b2012-01-18 18:04:09 +020035#include <linux/of.h>
Heikki Krogerus404905a2014-09-25 10:57:02 +030036#include <linux/acpi.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030037
38#include <linux/usb/ch9.h>
39#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030040#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050041#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030042
Felipe Balbi6462cbd2013-06-30 14:19:33 +030043#include "platform_data.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030044#include "core.h"
45#include "gadget.h"
46#include "io.h"
47
48#include "debug.h"
49
Felipe Balbi8300dd22011-10-18 13:54:01 +030050/* -------------------------------------------------------------------------- */
51
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +010052void 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}
Felipe Balbi8300dd22011-10-18 13:54:01 +030061
Felipe Balbi72246da2011-08-19 18:10:58 +030062/**
63 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
64 * @dwc: pointer to our context structure
65 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053066static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +030067{
68 u32 reg;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053069 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +030070
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
Felipe Balbi51e1e7b2012-07-19 14:09:48 +030086 usb_phy_init(dwc->usb2_phy);
87 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053088 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 }
Felipe Balbi72246da2011-08-19 18:10:58 +030097 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
Pratyush Anand45627ac2012-06-21 17:44:28 +0530109 mdelay(100);
110
Felipe Balbi72246da2011-08-19 18:10:58 +0300111 /* 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);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530115
116 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300117}
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);
Felipe Balbi72246da2011-08-19 18:10:58 +0300128}
129
130/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800131 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300132 * @dwc: Pointer to our controller context structure
133 * @length: size of the event buffer
134 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800135 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300136 * otherwise ERR_PTR(errno).
137 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200138static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
139 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300140{
141 struct dwc3_event_buffer *evt;
142
Felipe Balbi380f0d22012-10-11 13:48:36 +0300143 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300144 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);
Felipe Balbie32672f2012-11-08 15:26:41 +0200151 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300152 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300153
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
Felipe Balbi9f622b22011-10-12 10:31:04 +0300166 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300167 evt = dwc->ev_buffs[i];
Anton Tikhomirov64b6c8a2012-03-06 17:05:15 +0900168 if (evt)
Felipe Balbi72246da2011-08-19 18:10:58 +0300169 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300170 }
171}
172
173/**
174 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800175 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300176 * @length: size of event buffer
177 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800178 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300179 * may contain some buffers allocated but not all which were requested.
180 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500181static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300182{
Felipe Balbi9f622b22011-10-12 10:31:04 +0300183 int num;
Felipe Balbi72246da2011-08-19 18:10:58 +0300184 int i;
185
Felipe Balbi9f622b22011-10-12 10:31:04 +0300186 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
187 dwc->num_event_buffers = num;
188
Felipe Balbi380f0d22012-10-11 13:48:36 +0300189 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
190 GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900191 if (!dwc->ev_buffs)
Felipe Balbi457d3f22011-10-24 12:03:13 +0300192 return -ENOMEM;
Felipe Balbi457d3f22011-10-24 12:03:13 +0300193
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/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800368 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
369 * @dwc: Pointer to our controller context structure
370 */
371static void dwc3_phy_setup(struct dwc3 *dwc)
372{
373 u32 reg;
374
375 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
376
377 if (dwc->u2ss_inp3_quirk)
378 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
379
Huang Ruidf31f5b2014-10-28 19:54:29 +0800380 if (dwc->req_p1p2p3_quirk)
381 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
382
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800383 if (dwc->del_p1p2p3_quirk)
384 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
385
Huang Rui41c06ff2014-10-28 19:54:31 +0800386 if (dwc->del_phy_power_chg_quirk)
387 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
388
Huang Ruifb67afc2014-10-28 19:54:32 +0800389 if (dwc->lfps_filter_quirk)
390 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
391
Huang Ruib5a65c42014-10-28 19:54:28 +0800392 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
393
394 mdelay(100);
395}
396
397/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300398 * dwc3_core_init - Low-level initialization of DWC3 Core
399 * @dwc: Pointer to our controller context structure
400 *
401 * Returns 0 on success otherwise negative errno.
402 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500403static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300404{
405 unsigned long timeout;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600406 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300407 u32 reg;
408 int ret;
409
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200410 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
411 /* This should read as U3 followed by revision number */
412 if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) {
413 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
414 ret = -ENODEV;
415 goto err0;
416 }
Felipe Balbi248b1222011-12-14 21:59:30 +0200417 dwc->revision = reg;
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200418
Felipe Balbifa0ea132014-09-19 15:51:11 -0500419 /*
420 * Write Linux Version Code to our GUID register so it's easy to figure
421 * out which kernel version a bug was found.
422 */
423 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
424
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700425 /* Handle USB2.0-only core configuration */
426 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
427 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
428 if (dwc->maximum_speed == USB_SPEED_SUPER)
429 dwc->maximum_speed = USB_SPEED_HIGH;
430 }
431
Felipe Balbi72246da2011-08-19 18:10:58 +0300432 /* issue device SoftReset too */
433 timeout = jiffies + msecs_to_jiffies(500);
434 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
435 do {
436 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
437 if (!(reg & DWC3_DCTL_CSFTRST))
438 break;
439
440 if (time_after(jiffies, timeout)) {
441 dev_err(dwc->dev, "Reset Timed Out\n");
442 ret = -ETIMEDOUT;
443 goto err0;
444 }
445
446 cpu_relax();
447 } while (true);
448
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530449 ret = dwc3_core_soft_reset(dwc);
450 if (ret)
451 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530452
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100453 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800454 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100455
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100456 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100457 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600458 /**
459 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
460 * issue which would cause xHCI compliance tests to fail.
461 *
462 * Because of that we cannot enable clock gating on such
463 * configurations.
464 *
465 * Refers to:
466 *
467 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
468 * SOF/ITP Mode Used
469 */
470 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
471 dwc->dr_mode == USB_DR_MODE_OTG) &&
472 (dwc->revision >= DWC3_REVISION_210A &&
473 dwc->revision <= DWC3_REVISION_250A))
474 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
475 else
476 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100477 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600478 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
479 /* enable hibernation here */
480 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800481
482 /*
483 * REVISIT Enabling this bit so that host-mode hibernation
484 * will work. Device-mode hibernation is not yet implemented.
485 */
486 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600487 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100488 default:
489 dev_dbg(dwc->dev, "No power optimization available\n");
490 }
491
Huang Rui946bd572014-10-28 19:54:23 +0800492 /* check if current dwc3 is on simulation board */
493 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
494 dev_dbg(dwc->dev, "it is on FPGA board\n");
495 dwc->is_fpga = true;
496 }
497
Huang Rui3b812212014-10-28 19:54:25 +0800498 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
499 "disable_scramble cannot be used on non-FPGA builds\n");
500
501 if (dwc->disable_scramble_quirk && dwc->is_fpga)
502 reg |= DWC3_GCTL_DISSCRAMBLE;
503 else
504 reg &= ~DWC3_GCTL_DISSCRAMBLE;
505
Huang Rui9a5b2f32014-10-28 19:54:27 +0800506 if (dwc->u2exit_lfps_quirk)
507 reg |= DWC3_GCTL_U2EXIT_LFPS;
508
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100509 /*
510 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800511 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100512 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800513 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100514 */
515 if (dwc->revision < DWC3_REVISION_190A)
516 reg |= DWC3_GCTL_U2RSTECN;
517
Felipe Balbi789451f62011-05-05 15:53:10 +0300518 dwc3_core_num_eps(dwc);
519
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100520 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
521
Huang Ruib5a65c42014-10-28 19:54:28 +0800522 dwc3_phy_setup(dwc);
523
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600524 ret = dwc3_alloc_scratch_buffers(dwc);
525 if (ret)
526 goto err1;
527
528 ret = dwc3_setup_scratch_buffers(dwc);
529 if (ret)
530 goto err2;
531
Felipe Balbi72246da2011-08-19 18:10:58 +0300532 return 0;
533
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600534err2:
535 dwc3_free_scratch_buffers(dwc);
536
537err1:
538 usb_phy_shutdown(dwc->usb2_phy);
539 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530540 phy_exit(dwc->usb2_generic_phy);
541 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600542
Felipe Balbi72246da2011-08-19 18:10:58 +0300543err0:
544 return ret;
545}
546
547static void dwc3_core_exit(struct dwc3 *dwc)
548{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600549 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530550 usb_phy_shutdown(dwc->usb2_phy);
551 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530552 phy_exit(dwc->usb2_generic_phy);
553 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300554}
555
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500556static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300557{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500558 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300559 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500560 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300561
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530562 if (node) {
563 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
564 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500565 } else {
566 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
567 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530568 }
569
Felipe Balbid105e7f2013-03-15 10:52:08 +0200570 if (IS_ERR(dwc->usb2_phy)) {
571 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530572 if (ret == -ENXIO || ret == -ENODEV) {
573 dwc->usb2_phy = NULL;
574 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200575 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530576 } else {
577 dev_err(dev, "no usb2 phy configured\n");
578 return ret;
579 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300580 }
581
Felipe Balbid105e7f2013-03-15 10:52:08 +0200582 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500583 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530584 if (ret == -ENXIO || ret == -ENODEV) {
585 dwc->usb3_phy = NULL;
586 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200587 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530588 } else {
589 dev_err(dev, "no usb3 phy configured\n");
590 return ret;
591 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300592 }
593
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530594 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
595 if (IS_ERR(dwc->usb2_generic_phy)) {
596 ret = PTR_ERR(dwc->usb2_generic_phy);
597 if (ret == -ENOSYS || ret == -ENODEV) {
598 dwc->usb2_generic_phy = NULL;
599 } else if (ret == -EPROBE_DEFER) {
600 return ret;
601 } else {
602 dev_err(dev, "no usb2 phy configured\n");
603 return ret;
604 }
605 }
606
607 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
608 if (IS_ERR(dwc->usb3_generic_phy)) {
609 ret = PTR_ERR(dwc->usb3_generic_phy);
610 if (ret == -ENOSYS || ret == -ENODEV) {
611 dwc->usb3_generic_phy = NULL;
612 } else if (ret == -EPROBE_DEFER) {
613 return ret;
614 } else {
615 dev_err(dev, "no usb3 phy configured\n");
616 return ret;
617 }
618 }
619
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500620 return 0;
621}
622
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500623static int dwc3_core_init_mode(struct dwc3 *dwc)
624{
625 struct device *dev = dwc->dev;
626 int ret;
627
628 switch (dwc->dr_mode) {
629 case USB_DR_MODE_PERIPHERAL:
630 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
631 ret = dwc3_gadget_init(dwc);
632 if (ret) {
633 dev_err(dev, "failed to initialize gadget\n");
634 return ret;
635 }
636 break;
637 case USB_DR_MODE_HOST:
638 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
639 ret = dwc3_host_init(dwc);
640 if (ret) {
641 dev_err(dev, "failed to initialize host\n");
642 return ret;
643 }
644 break;
645 case USB_DR_MODE_OTG:
646 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
647 ret = dwc3_host_init(dwc);
648 if (ret) {
649 dev_err(dev, "failed to initialize host\n");
650 return ret;
651 }
652
653 ret = dwc3_gadget_init(dwc);
654 if (ret) {
655 dev_err(dev, "failed to initialize gadget\n");
656 return ret;
657 }
658 break;
659 default:
660 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
661 return -EINVAL;
662 }
663
664 return 0;
665}
666
667static void dwc3_core_exit_mode(struct dwc3 *dwc)
668{
669 switch (dwc->dr_mode) {
670 case USB_DR_MODE_PERIPHERAL:
671 dwc3_gadget_exit(dwc);
672 break;
673 case USB_DR_MODE_HOST:
674 dwc3_host_exit(dwc);
675 break;
676 case USB_DR_MODE_OTG:
677 dwc3_host_exit(dwc);
678 dwc3_gadget_exit(dwc);
679 break;
680 default:
681 /* do nothing */
682 break;
683 }
684}
685
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500686#define DWC3_ALIGN_MASK (16 - 1)
687
688static int dwc3_probe(struct platform_device *pdev)
689{
690 struct device *dev = &pdev->dev;
691 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
692 struct device_node *node = dev->of_node;
693 struct resource *res;
694 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800695 u8 lpm_nyet_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500696
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300697 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500698
699 void __iomem *regs;
700 void *mem;
701
702 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900703 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500704 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900705
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500706 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
707 dwc->mem = mem;
708 dwc->dev = dev;
709
710 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
711 if (!res) {
712 dev_err(dev, "missing IRQ\n");
713 return -ENODEV;
714 }
715 dwc->xhci_resources[1].start = res->start;
716 dwc->xhci_resources[1].end = res->end;
717 dwc->xhci_resources[1].flags = res->flags;
718 dwc->xhci_resources[1].name = res->name;
719
720 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
721 if (!res) {
722 dev_err(dev, "missing memory resource\n");
723 return -ENODEV;
724 }
725
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530726 dwc->xhci_resources[0].start = res->start;
727 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
728 DWC3_XHCI_REGS_END;
729 dwc->xhci_resources[0].flags = res->flags;
730 dwc->xhci_resources[0].name = res->name;
731
732 res->start += DWC3_GLOBALS_REGS_START;
733
734 /*
735 * Request memory region but exclude xHCI regs,
736 * since it will be requested by the xhci-plat driver.
737 */
738 regs = devm_ioremap_resource(dev, res);
739 if (IS_ERR(regs))
740 return PTR_ERR(regs);
741
742 dwc->regs = regs;
743 dwc->regs_size = resource_size(res);
744 /*
745 * restore res->start back to its original value so that,
746 * in case the probe is deferred, we don't end up getting error in
747 * request the memory region the next time probe is called.
748 */
749 res->start -= DWC3_GLOBALS_REGS_START;
750
Huang Rui80caf7d2014-10-28 19:54:26 +0800751 /* default to highest possible threshold */
752 lpm_nyet_threshold = 0xff;
753
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500754 if (node) {
755 dwc->maximum_speed = of_usb_get_maximum_speed(node);
Huang Rui80caf7d2014-10-28 19:54:26 +0800756 dwc->has_lpm_erratum = of_property_read_bool(node,
757 "snps,has-lpm-erratum");
758 of_property_read_u8(node, "snps,lpm-nyet-threshold",
759 &lpm_nyet_threshold);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500760
Huang Rui80caf7d2014-10-28 19:54:26 +0800761 dwc->needs_fifo_resize = of_property_read_bool(node,
762 "tx-fifo-resize");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500763 dwc->dr_mode = of_usb_get_dr_mode(node);
Huang Rui3b812212014-10-28 19:54:25 +0800764
765 dwc->disable_scramble_quirk = of_property_read_bool(node,
766 "snps,disable_scramble_quirk");
Huang Rui9a5b2f32014-10-28 19:54:27 +0800767 dwc->u2exit_lfps_quirk = of_property_read_bool(node,
768 "snps,u2exit_lfps_quirk");
Huang Ruib5a65c42014-10-28 19:54:28 +0800769 dwc->u2ss_inp3_quirk = of_property_read_bool(node,
770 "snps,u2ss_inp3_quirk");
Huang Ruidf31f5b2014-10-28 19:54:29 +0800771 dwc->req_p1p2p3_quirk = of_property_read_bool(node,
772 "snps,req_p1p2p3_quirk");
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800773 dwc->del_p1p2p3_quirk = of_property_read_bool(node,
774 "snps,del_p1p2p3_quirk");
Huang Rui41c06ff2014-10-28 19:54:31 +0800775 dwc->del_phy_power_chg_quirk = of_property_read_bool(node,
776 "snps,del_phy_power_chg_quirk");
Huang Ruifb67afc2014-10-28 19:54:32 +0800777 dwc->lfps_filter_quirk = of_property_read_bool(node,
778 "snps,lfps_filter_quirk");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500779 } else if (pdata) {
780 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800781 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
782 if (pdata->lpm_nyet_threshold)
783 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500784
785 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
786 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800787
788 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800789 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800790 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800791 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800792 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800793 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800794 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500795 }
796
797 /* default to superspeed if no maximum_speed passed */
798 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
799 dwc->maximum_speed = USB_SPEED_SUPER;
800
Huang Rui80caf7d2014-10-28 19:54:26 +0800801 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
802
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500803 ret = dwc3_core_get_phy(dwc);
804 if (ret)
805 return ret;
806
Felipe Balbi72246da2011-08-19 18:10:58 +0300807 spin_lock_init(&dwc->lock);
808 platform_set_drvdata(pdev, dwc);
809
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300810 if (!dev->dma_mask) {
811 dev->dma_mask = dev->parent->dma_mask;
812 dev->dma_parms = dev->parent->dma_parms;
813 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
814 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530815
Chanho Park802ca852012-02-15 18:27:55 +0900816 pm_runtime_enable(dev);
817 pm_runtime_get_sync(dev);
818 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300819
Kishon Vijay Abraham I4fd24482012-11-16 12:07:54 +0530820 dwc3_cache_hwparams(dwc);
821
Felipe Balbi39214262012-10-11 13:54:36 +0300822 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
823 if (ret) {
824 dev_err(dwc->dev, "failed to allocate event buffers\n");
825 ret = -ENOMEM;
826 goto err0;
827 }
828
Felipe Balbi32a4a132014-02-25 14:00:13 -0600829 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
830 dwc->dr_mode = USB_DR_MODE_HOST;
831 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
832 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
833
834 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
835 dwc->dr_mode = USB_DR_MODE_OTG;
836
Felipe Balbi72246da2011-08-19 18:10:58 +0300837 ret = dwc3_core_init(dwc);
838 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900839 dev_err(dev, "failed to initialize core\n");
Felipe Balbi39214262012-10-11 13:54:36 +0300840 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300841 }
842
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530843 usb_phy_set_suspend(dwc->usb2_phy, 0);
844 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530845 ret = phy_power_on(dwc->usb2_generic_phy);
846 if (ret < 0)
847 goto err1;
848
849 ret = phy_power_on(dwc->usb3_generic_phy);
850 if (ret < 0)
851 goto err_usb2phy_power;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530852
Felipe Balbif122d332013-02-08 15:15:11 +0200853 ret = dwc3_event_buffers_setup(dwc);
854 if (ret) {
855 dev_err(dwc->dev, "failed to setup event buffers\n");
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530856 goto err_usb3phy_power;
Felipe Balbif122d332013-02-08 15:15:11 +0200857 }
858
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500859 ret = dwc3_core_init_mode(dwc);
860 if (ret)
Felipe Balbif122d332013-02-08 15:15:11 +0200861 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +0300862
863 ret = dwc3_debugfs_init(dwc);
864 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900865 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200866 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +0300867 }
868
Chanho Park802ca852012-02-15 18:27:55 +0900869 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300870
871 return 0;
872
Felipe Balbif122d332013-02-08 15:15:11 +0200873err3:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500874 dwc3_core_exit_mode(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300875
Felipe Balbif122d332013-02-08 15:15:11 +0200876err2:
877 dwc3_event_buffers_cleanup(dwc);
878
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530879err_usb3phy_power:
880 phy_power_off(dwc->usb3_generic_phy);
881
882err_usb2phy_power:
883 phy_power_off(dwc->usb2_generic_phy);
884
Chanho Park802ca852012-02-15 18:27:55 +0900885err1:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +0530886 usb_phy_set_suspend(dwc->usb2_phy, 1);
887 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300888 dwc3_core_exit(dwc);
889
Felipe Balbi39214262012-10-11 13:54:36 +0300890err0:
891 dwc3_free_event_buffers(dwc);
892
Felipe Balbi72246da2011-08-19 18:10:58 +0300893 return ret;
894}
895
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500896static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +0300897{
Felipe Balbi72246da2011-08-19 18:10:58 +0300898 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300899
Felipe Balbidc99f162014-09-03 16:13:37 -0500900 dwc3_debugfs_exit(dwc);
901 dwc3_core_exit_mode(dwc);
902 dwc3_event_buffers_cleanup(dwc);
903 dwc3_free_event_buffers(dwc);
904
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530905 usb_phy_set_suspend(dwc->usb2_phy, 1);
906 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530907 phy_power_off(dwc->usb2_generic_phy);
908 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530909
Felipe Balbi72246da2011-08-19 18:10:58 +0300910 dwc3_core_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300911
Felipe Balbi7415f172012-04-30 14:56:33 +0300912 pm_runtime_put_sync(&pdev->dev);
913 pm_runtime_disable(&pdev->dev);
914
Felipe Balbi72246da2011-08-19 18:10:58 +0300915 return 0;
916}
917
Felipe Balbi7415f172012-04-30 14:56:33 +0300918#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +0300919static int dwc3_suspend(struct device *dev)
920{
921 struct dwc3 *dwc = dev_get_drvdata(dev);
922 unsigned long flags;
923
924 spin_lock_irqsave(&dwc->lock, flags);
925
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500926 switch (dwc->dr_mode) {
927 case USB_DR_MODE_PERIPHERAL:
928 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300929 dwc3_gadget_suspend(dwc);
930 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500931 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300932 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -0500933 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +0300934 break;
935 }
936
937 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
938 spin_unlock_irqrestore(&dwc->lock, flags);
939
940 usb_phy_shutdown(dwc->usb3_phy);
941 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530942 phy_exit(dwc->usb2_generic_phy);
943 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +0300944
945 return 0;
946}
947
948static int dwc3_resume(struct device *dev)
949{
950 struct dwc3 *dwc = dev_get_drvdata(dev);
951 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530952 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +0300953
954 usb_phy_init(dwc->usb3_phy);
955 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530956 ret = phy_init(dwc->usb2_generic_phy);
957 if (ret < 0)
958 return ret;
959
960 ret = phy_init(dwc->usb3_generic_phy);
961 if (ret < 0)
962 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +0300963
964 spin_lock_irqsave(&dwc->lock, flags);
965
Felipe Balbi0b0231a2014-10-07 10:19:23 -0500966 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +0300967 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
968
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500969 switch (dwc->dr_mode) {
970 case USB_DR_MODE_PERIPHERAL:
971 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +0300972 dwc3_gadget_resume(dwc);
973 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -0500974 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +0300975 default:
976 /* do nothing */
977 break;
978 }
979
980 spin_unlock_irqrestore(&dwc->lock, flags);
981
982 pm_runtime_disable(dev);
983 pm_runtime_set_active(dev);
984 pm_runtime_enable(dev);
985
986 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530987
988err_usb2phy_init:
989 phy_exit(dwc->usb2_generic_phy);
990
991 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +0300992}
993
994static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +0300995 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
996};
997
998#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
999#else
1000#define DWC3_PM_OPS NULL
1001#endif
1002
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301003#ifdef CONFIG_OF
1004static const struct of_device_id of_dwc3_match[] = {
1005 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001006 .compatible = "snps,dwc3"
1007 },
1008 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301009 .compatible = "synopsys,dwc3"
1010 },
1011 { },
1012};
1013MODULE_DEVICE_TABLE(of, of_dwc3_match);
1014#endif
1015
Heikki Krogerus404905a2014-09-25 10:57:02 +03001016#ifdef CONFIG_ACPI
1017
1018#define ACPI_ID_INTEL_BSW "808622B7"
1019
1020static const struct acpi_device_id dwc3_acpi_match[] = {
1021 { ACPI_ID_INTEL_BSW, 0 },
1022 { },
1023};
1024MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1025#endif
1026
Felipe Balbi72246da2011-08-19 18:10:58 +03001027static struct platform_driver dwc3_driver = {
1028 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001029 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001030 .driver = {
1031 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301032 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001033 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001034 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001035 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001036};
1037
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001038module_platform_driver(dwc3_driver);
1039
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001040MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001041MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001042MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001043MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");