blob: a590cd225bb75de935345f52af8494804c4dc60f [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>
Sekhar Nori63444752015-08-31 21:09:08 +053037#include <linux/pinctrl/consumer.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030038
39#include <linux/usb/ch9.h>
40#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030041#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050042#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030043
Felipe Balbi6462cbd2013-06-30 14:19:33 +030044#include "platform_data.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030045#include "core.h"
46#include "gadget.h"
47#include "io.h"
48
49#include "debug.h"
50
Felipe Balbi8300dd22011-10-18 13:54:01 +030051/* -------------------------------------------------------------------------- */
52
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +010053void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
54{
55 u32 reg;
56
57 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
58 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
59 reg |= DWC3_GCTL_PRTCAPDIR(mode);
60 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
61}
Felipe Balbi8300dd22011-10-18 13:54:01 +030062
Felipe Balbicf6d8672016-04-14 15:03:39 +030063u32 dwc3_core_fifo_space(struct dwc3_ep *dep, u8 type)
64{
65 struct dwc3 *dwc = dep->dwc;
66 u32 reg;
67
68 dwc3_writel(dwc->regs, DWC3_GDBGFIFOSPACE,
69 DWC3_GDBGFIFOSPACE_NUM(dep->number) |
70 DWC3_GDBGFIFOSPACE_TYPE(type));
71
72 reg = dwc3_readl(dwc->regs, DWC3_GDBGFIFOSPACE);
73
74 return DWC3_GDBGFIFOSPACE_SPACE_AVAILABLE(reg);
75}
76
Felipe Balbi72246da2011-08-19 18:10:58 +030077/**
78 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
79 * @dwc: pointer to our context structure
80 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053081static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +030082{
83 u32 reg;
Felipe Balbif59dcab2016-03-11 10:51:52 +020084 int retries = 1000;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053085 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +030086
Felipe Balbi51e1e7b2012-07-19 14:09:48 +030087 usb_phy_init(dwc->usb2_phy);
88 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053089 ret = phy_init(dwc->usb2_generic_phy);
90 if (ret < 0)
91 return ret;
92
93 ret = phy_init(dwc->usb3_generic_phy);
94 if (ret < 0) {
95 phy_exit(dwc->usb2_generic_phy);
96 return ret;
97 }
Felipe Balbi72246da2011-08-19 18:10:58 +030098
Felipe Balbif59dcab2016-03-11 10:51:52 +020099 /*
100 * We're resetting only the device side because, if we're in host mode,
101 * XHCI driver will reset the host block. If dwc3 was configured for
102 * host-only mode, then we can return early.
103 */
104 if (dwc->dr_mode == USB_DR_MODE_HOST)
105 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300106
Felipe Balbif59dcab2016-03-11 10:51:52 +0200107 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
108 reg |= DWC3_DCTL_CSFTRST;
109 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300110
Felipe Balbif59dcab2016-03-11 10:51:52 +0200111 do {
112 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
113 if (!(reg & DWC3_DCTL_CSFTRST))
114 return 0;
Pratyush Anand45627ac2012-06-21 17:44:28 +0530115
Felipe Balbif59dcab2016-03-11 10:51:52 +0200116 udelay(1);
117 } while (--retries);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530118
Felipe Balbif59dcab2016-03-11 10:51:52 +0200119 return -ETIMEDOUT;
Felipe Balbi72246da2011-08-19 18:10:58 +0300120}
121
122/**
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300123 * dwc3_soft_reset - Issue soft reset
124 * @dwc: Pointer to our controller context structure
125 */
126static int dwc3_soft_reset(struct dwc3 *dwc)
127{
128 unsigned long timeout;
129 u32 reg;
130
131 timeout = jiffies + msecs_to_jiffies(500);
132 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
133 do {
134 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
135 if (!(reg & DWC3_DCTL_CSFTRST))
136 break;
137
138 if (time_after(jiffies, timeout)) {
139 dev_err(dwc->dev, "Reset Timed Out\n");
140 return -ETIMEDOUT;
141 }
142
143 cpu_relax();
144 } while (true);
145
146 return 0;
147}
148
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530149/*
150 * dwc3_frame_length_adjustment - Adjusts frame length if required
151 * @dwc3: Pointer to our controller context structure
152 * @fladj: Value of GFLADJ_30MHZ to adjust frame length
153 */
154static void dwc3_frame_length_adjustment(struct dwc3 *dwc, u32 fladj)
155{
156 u32 reg;
157 u32 dft;
158
159 if (dwc->revision < DWC3_REVISION_250A)
160 return;
161
162 if (fladj == 0)
163 return;
164
165 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
166 dft = reg & DWC3_GFLADJ_30MHZ_MASK;
167 if (!dev_WARN_ONCE(dwc->dev, dft == fladj,
168 "request value same as default, ignoring\n")) {
169 reg &= ~DWC3_GFLADJ_30MHZ_MASK;
170 reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL | fladj;
171 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
172 }
173}
174
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300175/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300176 * dwc3_free_one_event_buffer - Frees one event buffer
177 * @dwc: Pointer to our controller context structure
178 * @evt: Pointer to event buffer to be freed
179 */
180static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
181 struct dwc3_event_buffer *evt)
182{
183 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300184}
185
186/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800187 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300188 * @dwc: Pointer to our controller context structure
189 * @length: size of the event buffer
190 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800191 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300192 * otherwise ERR_PTR(errno).
193 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200194static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
195 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300196{
197 struct dwc3_event_buffer *evt;
198
Felipe Balbi380f0d22012-10-11 13:48:36 +0300199 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300200 if (!evt)
201 return ERR_PTR(-ENOMEM);
202
203 evt->dwc = dwc;
204 evt->length = length;
205 evt->buf = dma_alloc_coherent(dwc->dev, length,
206 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200207 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300208 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300209
210 return evt;
211}
212
213/**
214 * dwc3_free_event_buffers - frees all allocated event buffers
215 * @dwc: Pointer to our controller context structure
216 */
217static void dwc3_free_event_buffers(struct dwc3 *dwc)
218{
219 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300220
Felipe Balbi696c8b12016-03-30 09:37:03 +0300221 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300222 if (evt)
223 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300224}
225
226/**
227 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800228 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300229 * @length: size of event buffer
230 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800231 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300232 * may contain some buffers allocated but not all which were requested.
233 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500234static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300235{
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300236 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300237
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300238 evt = dwc3_alloc_one_event_buffer(dwc, length);
239 if (IS_ERR(evt)) {
240 dev_err(dwc->dev, "can't allocate event buffer\n");
241 return PTR_ERR(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300242 }
Felipe Balbi696c8b12016-03-30 09:37:03 +0300243 dwc->ev_buf = evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300244
245 return 0;
246}
247
248/**
249 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800250 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300251 *
252 * Returns 0 on success otherwise negative errno.
253 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300254static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300255{
256 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300257
Felipe Balbi696c8b12016-03-30 09:37:03 +0300258 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300259 dwc3_trace(trace_dwc3_core,
260 "Event buf %p dma %08llx length %d\n",
261 evt->buf, (unsigned long long) evt->dma,
262 evt->length);
Felipe Balbi72246da2011-08-19 18:10:58 +0300263
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300264 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300265
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300266 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0),
267 lower_32_bits(evt->dma));
268 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0),
269 upper_32_bits(evt->dma));
270 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0),
271 DWC3_GEVNTSIZ_SIZE(evt->length));
272 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300273
274 return 0;
275}
276
277static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
278{
279 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300280
Felipe Balbi696c8b12016-03-30 09:37:03 +0300281 evt = dwc->ev_buf;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300282
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300283 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300284
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300285 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0), 0);
286 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0), 0);
287 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), DWC3_GEVNTSIZ_INTMASK
288 | DWC3_GEVNTSIZ_SIZE(0));
289 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300290}
291
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600292static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
293{
294 if (!dwc->has_hibernation)
295 return 0;
296
297 if (!dwc->nr_scratch)
298 return 0;
299
300 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
301 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
302 if (!dwc->scratchbuf)
303 return -ENOMEM;
304
305 return 0;
306}
307
308static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
309{
310 dma_addr_t scratch_addr;
311 u32 param;
312 int ret;
313
314 if (!dwc->has_hibernation)
315 return 0;
316
317 if (!dwc->nr_scratch)
318 return 0;
319
320 /* should never fall here */
321 if (!WARN_ON(dwc->scratchbuf))
322 return 0;
323
324 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
325 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
326 DMA_BIDIRECTIONAL);
327 if (dma_mapping_error(dwc->dev, scratch_addr)) {
328 dev_err(dwc->dev, "failed to map scratch buffer\n");
329 ret = -EFAULT;
330 goto err0;
331 }
332
333 dwc->scratch_addr = scratch_addr;
334
335 param = lower_32_bits(scratch_addr);
336
337 ret = dwc3_send_gadget_generic_command(dwc,
338 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
339 if (ret < 0)
340 goto err1;
341
342 param = upper_32_bits(scratch_addr);
343
344 ret = dwc3_send_gadget_generic_command(dwc,
345 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
346 if (ret < 0)
347 goto err1;
348
349 return 0;
350
351err1:
352 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
353 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
354
355err0:
356 return ret;
357}
358
359static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
360{
361 if (!dwc->has_hibernation)
362 return;
363
364 if (!dwc->nr_scratch)
365 return;
366
367 /* should never fall here */
368 if (!WARN_ON(dwc->scratchbuf))
369 return;
370
371 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
372 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
373 kfree(dwc->scratchbuf);
374}
375
Felipe Balbi789451f62011-05-05 15:53:10 +0300376static void dwc3_core_num_eps(struct dwc3 *dwc)
377{
378 struct dwc3_hwparams *parms = &dwc->hwparams;
379
380 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
381 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
382
Felipe Balbi73815282015-01-27 13:48:14 -0600383 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300384 dwc->num_in_eps, dwc->num_out_eps);
385}
386
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500387static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300388{
389 struct dwc3_hwparams *parms = &dwc->hwparams;
390
391 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
392 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
393 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
394 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
395 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
396 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
397 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
398 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
399 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
400}
401
Felipe Balbi72246da2011-08-19 18:10:58 +0300402/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800403 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
404 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300405 *
406 * Returns 0 on success. The USB PHY interfaces are configured but not
407 * initialized. The PHY interfaces and the PHYs get initialized together with
408 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800409 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300410static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800411{
412 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300413 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800414
415 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
416
Huang Rui2164a472014-10-28 19:54:35 +0800417 /*
418 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
419 * to '0' during coreConsultant configuration. So default value
420 * will be '0' when the core is reset. Application needs to set it
421 * to '1' after the core initialization is completed.
422 */
423 if (dwc->revision > DWC3_REVISION_194A)
424 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
425
Huang Ruib5a65c42014-10-28 19:54:28 +0800426 if (dwc->u2ss_inp3_quirk)
427 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
428
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530429 if (dwc->dis_rxdet_inp3_quirk)
430 reg |= DWC3_GUSB3PIPECTL_DISRXDETINP3;
431
Huang Ruidf31f5b2014-10-28 19:54:29 +0800432 if (dwc->req_p1p2p3_quirk)
433 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
434
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800435 if (dwc->del_p1p2p3_quirk)
436 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
437
Huang Rui41c06ff2014-10-28 19:54:31 +0800438 if (dwc->del_phy_power_chg_quirk)
439 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
440
Huang Ruifb67afc2014-10-28 19:54:32 +0800441 if (dwc->lfps_filter_quirk)
442 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
443
Huang Rui14f4ac52014-10-28 19:54:33 +0800444 if (dwc->rx_detect_poll_quirk)
445 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
446
Huang Rui6b6a0c92014-10-31 11:11:12 +0800447 if (dwc->tx_de_emphasis_quirk)
448 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
449
Felipe Balbicd72f892014-11-06 11:31:00 -0600450 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800451 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
452
Huang Ruib5a65c42014-10-28 19:54:28 +0800453 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
454
Huang Rui2164a472014-10-28 19:54:35 +0800455 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
456
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300457 /* Select the HS PHY interface */
458 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
459 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500460 if (dwc->hsphy_interface &&
461 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300462 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300463 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500464 } else if (dwc->hsphy_interface &&
465 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300466 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300467 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300468 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300469 /* Relying on default value. */
470 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
471 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300472 }
473 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300474 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
475 /* Making sure the interface and PHY are operational */
476 ret = dwc3_soft_reset(dwc);
477 if (ret)
478 return ret;
479
480 udelay(1);
481
482 ret = dwc3_ulpi_init(dwc);
483 if (ret)
484 return ret;
485 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300486 default:
487 break;
488 }
489
Huang Rui2164a472014-10-28 19:54:35 +0800490 /*
491 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
492 * '0' during coreConsultant configuration. So default value will
493 * be '0' when the core is reset. Application needs to set it to
494 * '1' after the core initialization is completed.
495 */
496 if (dwc->revision > DWC3_REVISION_194A)
497 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
498
Felipe Balbicd72f892014-11-06 11:31:00 -0600499 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800500 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
501
John Younec791d12015-10-02 20:30:57 -0700502 if (dwc->dis_enblslpm_quirk)
503 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
504
Huang Rui2164a472014-10-28 19:54:35 +0800505 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300506
507 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800508}
509
510/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300511 * dwc3_core_init - Low-level initialization of DWC3 Core
512 * @dwc: Pointer to our controller context structure
513 *
514 * Returns 0 on success otherwise negative errno.
515 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500516static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300517{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600518 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300519 u32 reg;
520 int ret;
521
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200522 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
523 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700524 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
525 /* Detected DWC_usb3 IP */
526 dwc->revision = reg;
527 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
528 /* Detected DWC_usb31 IP */
529 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
530 dwc->revision |= DWC3_REVISION_IS_DWC31;
531 } else {
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200532 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
533 ret = -ENODEV;
534 goto err0;
535 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200536
Felipe Balbifa0ea132014-09-19 15:51:11 -0500537 /*
538 * Write Linux Version Code to our GUID register so it's easy to figure
539 * out which kernel version a bug was found.
540 */
541 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
542
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700543 /* Handle USB2.0-only core configuration */
544 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
545 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
546 if (dwc->maximum_speed == USB_SPEED_SUPER)
547 dwc->maximum_speed = USB_SPEED_HIGH;
548 }
549
Felipe Balbi72246da2011-08-19 18:10:58 +0300550 /* issue device SoftReset too */
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300551 ret = dwc3_soft_reset(dwc);
552 if (ret)
553 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300554
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530555 ret = dwc3_core_soft_reset(dwc);
556 if (ret)
557 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530558
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100559 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800560 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100561
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100562 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100563 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600564 /**
565 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
566 * issue which would cause xHCI compliance tests to fail.
567 *
568 * Because of that we cannot enable clock gating on such
569 * configurations.
570 *
571 * Refers to:
572 *
573 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
574 * SOF/ITP Mode Used
575 */
576 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
577 dwc->dr_mode == USB_DR_MODE_OTG) &&
578 (dwc->revision >= DWC3_REVISION_210A &&
579 dwc->revision <= DWC3_REVISION_250A))
580 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
581 else
582 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100583 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600584 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
585 /* enable hibernation here */
586 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800587
588 /*
589 * REVISIT Enabling this bit so that host-mode hibernation
590 * will work. Device-mode hibernation is not yet implemented.
591 */
592 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600593 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100594 default:
Felipe Balbi1407bf12015-11-16 16:06:37 -0600595 dwc3_trace(trace_dwc3_core, "No power optimization available\n");
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100596 }
597
Huang Rui946bd572014-10-28 19:54:23 +0800598 /* check if current dwc3 is on simulation board */
599 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi1407bf12015-11-16 16:06:37 -0600600 dwc3_trace(trace_dwc3_core,
601 "running on FPGA platform\n");
Huang Rui946bd572014-10-28 19:54:23 +0800602 dwc->is_fpga = true;
603 }
604
Huang Rui3b812212014-10-28 19:54:25 +0800605 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
606 "disable_scramble cannot be used on non-FPGA builds\n");
607
608 if (dwc->disable_scramble_quirk && dwc->is_fpga)
609 reg |= DWC3_GCTL_DISSCRAMBLE;
610 else
611 reg &= ~DWC3_GCTL_DISSCRAMBLE;
612
Huang Rui9a5b2f32014-10-28 19:54:27 +0800613 if (dwc->u2exit_lfps_quirk)
614 reg |= DWC3_GCTL_U2EXIT_LFPS;
615
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100616 /*
617 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800618 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100619 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800620 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100621 */
622 if (dwc->revision < DWC3_REVISION_190A)
623 reg |= DWC3_GCTL_U2RSTECN;
624
Felipe Balbi789451f62011-05-05 15:53:10 +0300625 dwc3_core_num_eps(dwc);
626
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100627 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
628
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600629 ret = dwc3_alloc_scratch_buffers(dwc);
630 if (ret)
631 goto err1;
632
633 ret = dwc3_setup_scratch_buffers(dwc);
634 if (ret)
635 goto err2;
636
Felipe Balbi72246da2011-08-19 18:10:58 +0300637 return 0;
638
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600639err2:
640 dwc3_free_scratch_buffers(dwc);
641
642err1:
643 usb_phy_shutdown(dwc->usb2_phy);
644 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530645 phy_exit(dwc->usb2_generic_phy);
646 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600647
Felipe Balbi72246da2011-08-19 18:10:58 +0300648err0:
649 return ret;
650}
651
652static void dwc3_core_exit(struct dwc3 *dwc)
653{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600654 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530655 usb_phy_shutdown(dwc->usb2_phy);
656 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530657 phy_exit(dwc->usb2_generic_phy);
658 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300659}
660
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500661static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300662{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500663 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300664 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500665 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300666
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530667 if (node) {
668 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
669 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500670 } else {
671 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
672 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530673 }
674
Felipe Balbid105e7f2013-03-15 10:52:08 +0200675 if (IS_ERR(dwc->usb2_phy)) {
676 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530677 if (ret == -ENXIO || ret == -ENODEV) {
678 dwc->usb2_phy = NULL;
679 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200680 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530681 } else {
682 dev_err(dev, "no usb2 phy configured\n");
683 return ret;
684 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300685 }
686
Felipe Balbid105e7f2013-03-15 10:52:08 +0200687 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500688 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530689 if (ret == -ENXIO || ret == -ENODEV) {
690 dwc->usb3_phy = NULL;
691 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200692 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530693 } else {
694 dev_err(dev, "no usb3 phy configured\n");
695 return ret;
696 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300697 }
698
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530699 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
700 if (IS_ERR(dwc->usb2_generic_phy)) {
701 ret = PTR_ERR(dwc->usb2_generic_phy);
702 if (ret == -ENOSYS || ret == -ENODEV) {
703 dwc->usb2_generic_phy = NULL;
704 } else if (ret == -EPROBE_DEFER) {
705 return ret;
706 } else {
707 dev_err(dev, "no usb2 phy configured\n");
708 return ret;
709 }
710 }
711
712 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
713 if (IS_ERR(dwc->usb3_generic_phy)) {
714 ret = PTR_ERR(dwc->usb3_generic_phy);
715 if (ret == -ENOSYS || ret == -ENODEV) {
716 dwc->usb3_generic_phy = NULL;
717 } else if (ret == -EPROBE_DEFER) {
718 return ret;
719 } else {
720 dev_err(dev, "no usb3 phy configured\n");
721 return ret;
722 }
723 }
724
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500725 return 0;
726}
727
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500728static int dwc3_core_init_mode(struct dwc3 *dwc)
729{
730 struct device *dev = dwc->dev;
731 int ret;
732
733 switch (dwc->dr_mode) {
734 case USB_DR_MODE_PERIPHERAL:
735 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
736 ret = dwc3_gadget_init(dwc);
737 if (ret) {
738 dev_err(dev, "failed to initialize gadget\n");
739 return ret;
740 }
741 break;
742 case USB_DR_MODE_HOST:
743 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
744 ret = dwc3_host_init(dwc);
745 if (ret) {
746 dev_err(dev, "failed to initialize host\n");
747 return ret;
748 }
749 break;
750 case USB_DR_MODE_OTG:
751 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
752 ret = dwc3_host_init(dwc);
753 if (ret) {
754 dev_err(dev, "failed to initialize host\n");
755 return ret;
756 }
757
758 ret = dwc3_gadget_init(dwc);
759 if (ret) {
760 dev_err(dev, "failed to initialize gadget\n");
761 return ret;
762 }
763 break;
764 default:
765 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
766 return -EINVAL;
767 }
768
769 return 0;
770}
771
772static void dwc3_core_exit_mode(struct dwc3 *dwc)
773{
774 switch (dwc->dr_mode) {
775 case USB_DR_MODE_PERIPHERAL:
776 dwc3_gadget_exit(dwc);
777 break;
778 case USB_DR_MODE_HOST:
779 dwc3_host_exit(dwc);
780 break;
781 case USB_DR_MODE_OTG:
782 dwc3_host_exit(dwc);
783 dwc3_gadget_exit(dwc);
784 break;
785 default:
786 /* do nothing */
787 break;
788 }
789}
790
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500791#define DWC3_ALIGN_MASK (16 - 1)
792
793static int dwc3_probe(struct platform_device *pdev)
794{
795 struct device *dev = &pdev->dev;
796 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500797 struct resource *res;
798 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800799 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800800 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800801 u8 hird_threshold;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530802 u32 fladj = 0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500803
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300804 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500805
806 void __iomem *regs;
807 void *mem;
808
809 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900810 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500811 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900812
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500813 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
814 dwc->mem = mem;
815 dwc->dev = dev;
816
817 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
818 if (!res) {
819 dev_err(dev, "missing IRQ\n");
820 return -ENODEV;
821 }
822 dwc->xhci_resources[1].start = res->start;
823 dwc->xhci_resources[1].end = res->end;
824 dwc->xhci_resources[1].flags = res->flags;
825 dwc->xhci_resources[1].name = res->name;
826
827 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
828 if (!res) {
829 dev_err(dev, "missing memory resource\n");
830 return -ENODEV;
831 }
832
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530833 dwc->xhci_resources[0].start = res->start;
834 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
835 DWC3_XHCI_REGS_END;
836 dwc->xhci_resources[0].flags = res->flags;
837 dwc->xhci_resources[0].name = res->name;
838
839 res->start += DWC3_GLOBALS_REGS_START;
840
841 /*
842 * Request memory region but exclude xHCI regs,
843 * since it will be requested by the xhci-plat driver.
844 */
845 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500846 if (IS_ERR(regs)) {
847 ret = PTR_ERR(regs);
848 goto err0;
849 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530850
851 dwc->regs = regs;
852 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530853
Huang Rui80caf7d2014-10-28 19:54:26 +0800854 /* default to highest possible threshold */
855 lpm_nyet_threshold = 0xff;
856
Huang Rui6b6a0c92014-10-31 11:11:12 +0800857 /* default to -3.5dB de-emphasis */
858 tx_de_emphasis = 1;
859
Huang Rui460d0982014-10-31 11:11:18 +0800860 /*
861 * default to assert utmi_sleep_n and use maximum allowed HIRD
862 * threshold value of 0b1100
863 */
864 hird_threshold = 12;
865
Heikki Krogerus63863b92015-09-21 11:14:32 +0300866 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +0300867 dwc->dr_mode = usb_get_dr_mode(dev);
Heikki Krogerus63863b92015-09-21 11:14:32 +0300868
Heikki Krogerus3d128912015-09-21 11:14:35 +0300869 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +0800870 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300871 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +0800872 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300873 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +0800874 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300875 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +0800876 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300877 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +0100878 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500879
Heikki Krogerus3d128912015-09-21 11:14:35 +0300880 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +0800881 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300882 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +0800883 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300884 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +0800885 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300886 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +0800887 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300888 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800889 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300890 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +0800891 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300892 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +0800893 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300894 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +0800895 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300896 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +0800897 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300898 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +0800899 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -0700900 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
901 "snps,dis_enblslpm_quirk");
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530902 dwc->dis_rxdet_inp3_quirk = device_property_read_bool(dev,
903 "snps,dis_rxdet_inp3_quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +0800904
Heikki Krogerus3d128912015-09-21 11:14:35 +0300905 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +0800906 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300907 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +0800908 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300909 device_property_read_string(dev, "snps,hsphy_interface",
910 &dwc->hsphy_interface);
911 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
912 &fladj);
913
914 if (pdata) {
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500915 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800916 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
917 if (pdata->lpm_nyet_threshold)
918 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Huang Rui460d0982014-10-31 11:11:18 +0800919 dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
920 if (pdata->hird_threshold)
921 hird_threshold = pdata->hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500922
Robert Baldygaeac68e82015-03-09 15:06:12 +0100923 dwc->usb3_lpm_capable = pdata->usb3_lpm_capable;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500924 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800925
926 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800927 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800928 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800929 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800930 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800931 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800932 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Huang Rui14f4ac52014-10-28 19:54:33 +0800933 dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk;
Huang Rui59acfa22014-10-31 11:11:13 +0800934 dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk;
Huang Rui0effe0a2014-10-31 11:11:14 +0800935 dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk;
John Younec791d12015-10-02 20:30:57 -0700936 dwc->dis_enblslpm_quirk = pdata->dis_enblslpm_quirk;
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530937 dwc->dis_rxdet_inp3_quirk = pdata->dis_rxdet_inp3_quirk;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800938
939 dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk;
940 if (pdata->tx_de_emphasis)
941 tx_de_emphasis = pdata->tx_de_emphasis;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300942
943 dwc->hsphy_interface = pdata->hsphy_interface;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530944 fladj = pdata->fladj_value;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500945 }
946
Huang Rui80caf7d2014-10-28 19:54:26 +0800947 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800948 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +0800949
Huang Rui460d0982014-10-31 11:11:18 +0800950 dwc->hird_threshold = hird_threshold
951 | (dwc->is_utmi_l1_suspend << 4);
952
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300953 platform_set_drvdata(pdev, dwc);
Heikki Krogerus2917e712015-05-13 15:26:46 +0300954 dwc3_cache_hwparams(dwc);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300955
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300956 ret = dwc3_phy_setup(dwc);
957 if (ret)
958 goto err0;
Heikki Krogerus45bb7de2015-05-13 15:26:48 +0300959
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500960 ret = dwc3_core_get_phy(dwc);
961 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500962 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500963
Felipe Balbi72246da2011-08-19 18:10:58 +0300964 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +0300965
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300966 if (!dev->dma_mask) {
967 dev->dma_mask = dev->parent->dma_mask;
968 dev->dma_parms = dev->parent->dma_parms;
969 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
970 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530971
Chanho Park802ca852012-02-15 18:27:55 +0900972 pm_runtime_enable(dev);
973 pm_runtime_get_sync(dev);
974 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300975
Felipe Balbi39214262012-10-11 13:54:36 +0300976 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
977 if (ret) {
978 dev_err(dwc->dev, "failed to allocate event buffers\n");
979 ret = -ENOMEM;
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500980 goto err1;
Felipe Balbi39214262012-10-11 13:54:36 +0300981 }
982
Felipe Balbi32a4a132014-02-25 14:00:13 -0600983 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
984 dwc->dr_mode = USB_DR_MODE_HOST;
985 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
986 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
987
988 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
989 dwc->dr_mode = USB_DR_MODE_OTG;
990
Felipe Balbi72246da2011-08-19 18:10:58 +0300991 ret = dwc3_core_init(dwc);
992 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900993 dev_err(dev, "failed to initialize core\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500994 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +0300995 }
996
John Youn77966eb2016-02-19 17:31:01 -0800997 /* Check the maximum_speed parameter */
998 switch (dwc->maximum_speed) {
999 case USB_SPEED_LOW:
1000 case USB_SPEED_FULL:
1001 case USB_SPEED_HIGH:
1002 case USB_SPEED_SUPER:
1003 case USB_SPEED_SUPER_PLUS:
1004 break;
1005 default:
1006 dev_err(dev, "invalid maximum_speed parameter %d\n",
1007 dwc->maximum_speed);
1008 /* fall through */
1009 case USB_SPEED_UNKNOWN:
1010 /* default to superspeed */
John Youn2c7f1bd2016-02-05 17:08:59 -08001011 dwc->maximum_speed = USB_SPEED_SUPER;
1012
1013 /*
1014 * default to superspeed plus if we are capable.
1015 */
1016 if (dwc3_is_usb31(dwc) &&
1017 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1018 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1019 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
John Youn77966eb2016-02-19 17:31:01 -08001020
1021 break;
John Youn2c7f1bd2016-02-05 17:08:59 -08001022 }
1023
Nikhil Badoladb2be4e2015-09-04 10:15:58 +05301024 /* Adjust Frame Length */
1025 dwc3_frame_length_adjustment(dwc, fladj);
1026
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301027 usb_phy_set_suspend(dwc->usb2_phy, 0);
1028 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301029 ret = phy_power_on(dwc->usb2_generic_phy);
1030 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001031 goto err2;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301032
1033 ret = phy_power_on(dwc->usb3_generic_phy);
1034 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001035 goto err3;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301036
Felipe Balbif122d332013-02-08 15:15:11 +02001037 ret = dwc3_event_buffers_setup(dwc);
1038 if (ret) {
1039 dev_err(dwc->dev, "failed to setup event buffers\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001040 goto err4;
Felipe Balbif122d332013-02-08 15:15:11 +02001041 }
1042
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001043 ret = dwc3_core_init_mode(dwc);
1044 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001045 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03001046
Du, Changbin4e9f3112016-04-12 19:10:18 +08001047 dwc3_debugfs_init(dwc);
Chanho Park802ca852012-02-15 18:27:55 +09001048 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001049
1050 return 0;
1051
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001052err5:
Felipe Balbif122d332013-02-08 15:15:11 +02001053 dwc3_event_buffers_cleanup(dwc);
1054
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001055err4:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301056 phy_power_off(dwc->usb3_generic_phy);
1057
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001058err3:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301059 phy_power_off(dwc->usb2_generic_phy);
1060
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001061err2:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +05301062 usb_phy_set_suspend(dwc->usb2_phy, 1);
1063 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001064 dwc3_core_exit(dwc);
1065
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001066err1:
Felipe Balbi39214262012-10-11 13:54:36 +03001067 dwc3_free_event_buffers(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001068 dwc3_ulpi_exit(dwc);
Felipe Balbi39214262012-10-11 13:54:36 +03001069
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001070err0:
1071 /*
1072 * restore res->start back to its original value so that, in case the
1073 * probe is deferred, we don't end up getting error in request the
1074 * memory region the next time probe is called.
1075 */
1076 res->start -= DWC3_GLOBALS_REGS_START;
1077
Felipe Balbi72246da2011-08-19 18:10:58 +03001078 return ret;
1079}
1080
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001081static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001082{
Felipe Balbi72246da2011-08-19 18:10:58 +03001083 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001084 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1085
1086 /*
1087 * restore res->start back to its original value so that, in case the
1088 * probe is deferred, we don't end up getting error in request the
1089 * memory region the next time probe is called.
1090 */
1091 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001092
Felipe Balbidc99f162014-09-03 16:13:37 -05001093 dwc3_debugfs_exit(dwc);
1094 dwc3_core_exit_mode(dwc);
1095 dwc3_event_buffers_cleanup(dwc);
1096 dwc3_free_event_buffers(dwc);
1097
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301098 usb_phy_set_suspend(dwc->usb2_phy, 1);
1099 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301100 phy_power_off(dwc->usb2_generic_phy);
1101 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301102
Felipe Balbi72246da2011-08-19 18:10:58 +03001103 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001104 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001105
Felipe Balbi7415f172012-04-30 14:56:33 +03001106 pm_runtime_put_sync(&pdev->dev);
1107 pm_runtime_disable(&pdev->dev);
1108
Felipe Balbi72246da2011-08-19 18:10:58 +03001109 return 0;
1110}
1111
Felipe Balbi7415f172012-04-30 14:56:33 +03001112#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +03001113static int dwc3_suspend(struct device *dev)
1114{
1115 struct dwc3 *dwc = dev_get_drvdata(dev);
1116 unsigned long flags;
1117
1118 spin_lock_irqsave(&dwc->lock, flags);
1119
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001120 switch (dwc->dr_mode) {
1121 case USB_DR_MODE_PERIPHERAL:
1122 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001123 dwc3_gadget_suspend(dwc);
1124 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001125 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001126 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001127 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001128 break;
1129 }
1130
1131 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
1132 spin_unlock_irqrestore(&dwc->lock, flags);
1133
1134 usb_phy_shutdown(dwc->usb3_phy);
1135 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301136 phy_exit(dwc->usb2_generic_phy);
1137 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +03001138
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001139 usb_phy_set_suspend(dwc->usb2_phy, 1);
1140 usb_phy_set_suspend(dwc->usb3_phy, 1);
1141 WARN_ON(phy_power_off(dwc->usb2_generic_phy) < 0);
1142 WARN_ON(phy_power_off(dwc->usb3_generic_phy) < 0);
1143
Sekhar Nori63444752015-08-31 21:09:08 +05301144 pinctrl_pm_select_sleep_state(dev);
1145
Felipe Balbi7415f172012-04-30 14:56:33 +03001146 return 0;
1147}
1148
1149static int dwc3_resume(struct device *dev)
1150{
1151 struct dwc3 *dwc = dev_get_drvdata(dev);
1152 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301153 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001154
Sekhar Nori63444752015-08-31 21:09:08 +05301155 pinctrl_pm_select_default_state(dev);
1156
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001157 usb_phy_set_suspend(dwc->usb2_phy, 0);
1158 usb_phy_set_suspend(dwc->usb3_phy, 0);
1159 ret = phy_power_on(dwc->usb2_generic_phy);
1160 if (ret < 0)
1161 return ret;
1162
1163 ret = phy_power_on(dwc->usb3_generic_phy);
1164 if (ret < 0)
1165 goto err_usb2phy_power;
1166
Felipe Balbi7415f172012-04-30 14:56:33 +03001167 usb_phy_init(dwc->usb3_phy);
1168 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301169 ret = phy_init(dwc->usb2_generic_phy);
1170 if (ret < 0)
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001171 goto err_usb3phy_power;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301172
1173 ret = phy_init(dwc->usb3_generic_phy);
1174 if (ret < 0)
1175 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +03001176
1177 spin_lock_irqsave(&dwc->lock, flags);
1178
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001179 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001180 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
1181
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001182 switch (dwc->dr_mode) {
1183 case USB_DR_MODE_PERIPHERAL:
1184 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001185 dwc3_gadget_resume(dwc);
1186 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001187 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001188 default:
1189 /* do nothing */
1190 break;
1191 }
1192
1193 spin_unlock_irqrestore(&dwc->lock, flags);
1194
1195 pm_runtime_disable(dev);
1196 pm_runtime_set_active(dev);
1197 pm_runtime_enable(dev);
1198
1199 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301200
1201err_usb2phy_init:
1202 phy_exit(dwc->usb2_generic_phy);
1203
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001204err_usb3phy_power:
1205 phy_power_off(dwc->usb3_generic_phy);
1206
1207err_usb2phy_power:
1208 phy_power_off(dwc->usb2_generic_phy);
1209
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301210 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001211}
1212
1213static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001214 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
1215};
1216
1217#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
1218#else
1219#define DWC3_PM_OPS NULL
1220#endif
1221
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301222#ifdef CONFIG_OF
1223static const struct of_device_id of_dwc3_match[] = {
1224 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001225 .compatible = "snps,dwc3"
1226 },
1227 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301228 .compatible = "synopsys,dwc3"
1229 },
1230 { },
1231};
1232MODULE_DEVICE_TABLE(of, of_dwc3_match);
1233#endif
1234
Heikki Krogerus404905a2014-09-25 10:57:02 +03001235#ifdef CONFIG_ACPI
1236
1237#define ACPI_ID_INTEL_BSW "808622B7"
1238
1239static const struct acpi_device_id dwc3_acpi_match[] = {
1240 { ACPI_ID_INTEL_BSW, 0 },
1241 { },
1242};
1243MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1244#endif
1245
Felipe Balbi72246da2011-08-19 18:10:58 +03001246static struct platform_driver dwc3_driver = {
1247 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001248 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001249 .driver = {
1250 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301251 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001252 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001253 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001254 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001255};
1256
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001257module_platform_driver(dwc3_driver);
1258
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001259MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001260MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001261MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001262MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");