blob: 0de8968a2e97551b8a2aa20154948961ed13e632 [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/**
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300120 * dwc3_soft_reset - Issue soft reset
121 * @dwc: Pointer to our controller context structure
122 */
123static int dwc3_soft_reset(struct dwc3 *dwc)
124{
125 unsigned long timeout;
126 u32 reg;
127
128 timeout = jiffies + msecs_to_jiffies(500);
129 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
130 do {
131 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
132 if (!(reg & DWC3_DCTL_CSFTRST))
133 break;
134
135 if (time_after(jiffies, timeout)) {
136 dev_err(dwc->dev, "Reset Timed Out\n");
137 return -ETIMEDOUT;
138 }
139
140 cpu_relax();
141 } while (true);
142
143 return 0;
144}
145
146/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300147 * dwc3_free_one_event_buffer - Frees one event buffer
148 * @dwc: Pointer to our controller context structure
149 * @evt: Pointer to event buffer to be freed
150 */
151static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
152 struct dwc3_event_buffer *evt)
153{
154 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300155}
156
157/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800158 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300159 * @dwc: Pointer to our controller context structure
160 * @length: size of the event buffer
161 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800162 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300163 * otherwise ERR_PTR(errno).
164 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200165static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
166 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300167{
168 struct dwc3_event_buffer *evt;
169
Felipe Balbi380f0d22012-10-11 13:48:36 +0300170 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300171 if (!evt)
172 return ERR_PTR(-ENOMEM);
173
174 evt->dwc = dwc;
175 evt->length = length;
176 evt->buf = dma_alloc_coherent(dwc->dev, length,
177 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200178 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300179 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300180
181 return evt;
182}
183
184/**
185 * dwc3_free_event_buffers - frees all allocated event buffers
186 * @dwc: Pointer to our controller context structure
187 */
188static void dwc3_free_event_buffers(struct dwc3 *dwc)
189{
190 struct dwc3_event_buffer *evt;
191 int i;
192
Felipe Balbi9f622b22011-10-12 10:31:04 +0300193 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300194 evt = dwc->ev_buffs[i];
Anton Tikhomirov64b6c8a2012-03-06 17:05:15 +0900195 if (evt)
Felipe Balbi72246da2011-08-19 18:10:58 +0300196 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300197 }
198}
199
200/**
201 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800202 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300203 * @length: size of event buffer
204 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800205 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300206 * may contain some buffers allocated but not all which were requested.
207 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500208static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300209{
Felipe Balbi9f622b22011-10-12 10:31:04 +0300210 int num;
Felipe Balbi72246da2011-08-19 18:10:58 +0300211 int i;
212
Felipe Balbi9f622b22011-10-12 10:31:04 +0300213 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
214 dwc->num_event_buffers = num;
215
Felipe Balbi380f0d22012-10-11 13:48:36 +0300216 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
217 GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900218 if (!dwc->ev_buffs)
Felipe Balbi457d3f22011-10-24 12:03:13 +0300219 return -ENOMEM;
Felipe Balbi457d3f22011-10-24 12:03:13 +0300220
Felipe Balbi72246da2011-08-19 18:10:58 +0300221 for (i = 0; i < num; i++) {
222 struct dwc3_event_buffer *evt;
223
224 evt = dwc3_alloc_one_event_buffer(dwc, length);
225 if (IS_ERR(evt)) {
226 dev_err(dwc->dev, "can't allocate event buffer\n");
227 return PTR_ERR(evt);
228 }
229 dwc->ev_buffs[i] = evt;
230 }
231
232 return 0;
233}
234
235/**
236 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800237 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300238 *
239 * Returns 0 on success otherwise negative errno.
240 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300241static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300242{
243 struct dwc3_event_buffer *evt;
244 int n;
245
Felipe Balbi9f622b22011-10-12 10:31:04 +0300246 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300247 evt = dwc->ev_buffs[n];
248 dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n",
249 evt->buf, (unsigned long long) evt->dma,
250 evt->length);
251
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300252 evt->lpos = 0;
253
Felipe Balbi72246da2011-08-19 18:10:58 +0300254 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n),
255 lower_32_bits(evt->dma));
256 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n),
257 upper_32_bits(evt->dma));
258 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n),
Felipe Balbi68d6a012013-06-12 21:09:26 +0300259 DWC3_GEVNTSIZ_SIZE(evt->length));
Felipe Balbi72246da2011-08-19 18:10:58 +0300260 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
261 }
262
263 return 0;
264}
265
266static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
267{
268 struct dwc3_event_buffer *evt;
269 int n;
270
Felipe Balbi9f622b22011-10-12 10:31:04 +0300271 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300272 evt = dwc->ev_buffs[n];
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300273
274 evt->lpos = 0;
275
Felipe Balbi72246da2011-08-19 18:10:58 +0300276 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
277 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
Felipe Balbi68d6a012013-06-12 21:09:26 +0300278 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
279 | DWC3_GEVNTSIZ_SIZE(0));
Felipe Balbi72246da2011-08-19 18:10:58 +0300280 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
281 }
282}
283
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600284static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
285{
286 if (!dwc->has_hibernation)
287 return 0;
288
289 if (!dwc->nr_scratch)
290 return 0;
291
292 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
293 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
294 if (!dwc->scratchbuf)
295 return -ENOMEM;
296
297 return 0;
298}
299
300static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
301{
302 dma_addr_t scratch_addr;
303 u32 param;
304 int ret;
305
306 if (!dwc->has_hibernation)
307 return 0;
308
309 if (!dwc->nr_scratch)
310 return 0;
311
312 /* should never fall here */
313 if (!WARN_ON(dwc->scratchbuf))
314 return 0;
315
316 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
317 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
318 DMA_BIDIRECTIONAL);
319 if (dma_mapping_error(dwc->dev, scratch_addr)) {
320 dev_err(dwc->dev, "failed to map scratch buffer\n");
321 ret = -EFAULT;
322 goto err0;
323 }
324
325 dwc->scratch_addr = scratch_addr;
326
327 param = lower_32_bits(scratch_addr);
328
329 ret = dwc3_send_gadget_generic_command(dwc,
330 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
331 if (ret < 0)
332 goto err1;
333
334 param = upper_32_bits(scratch_addr);
335
336 ret = dwc3_send_gadget_generic_command(dwc,
337 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
338 if (ret < 0)
339 goto err1;
340
341 return 0;
342
343err1:
344 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
345 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
346
347err0:
348 return ret;
349}
350
351static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
352{
353 if (!dwc->has_hibernation)
354 return;
355
356 if (!dwc->nr_scratch)
357 return;
358
359 /* should never fall here */
360 if (!WARN_ON(dwc->scratchbuf))
361 return;
362
363 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
364 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
365 kfree(dwc->scratchbuf);
366}
367
Felipe Balbi789451f62011-05-05 15:53:10 +0300368static void dwc3_core_num_eps(struct dwc3 *dwc)
369{
370 struct dwc3_hwparams *parms = &dwc->hwparams;
371
372 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
373 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
374
Felipe Balbi73815282015-01-27 13:48:14 -0600375 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300376 dwc->num_in_eps, dwc->num_out_eps);
377}
378
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500379static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300380{
381 struct dwc3_hwparams *parms = &dwc->hwparams;
382
383 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
384 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
385 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
386 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
387 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
388 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
389 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
390 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
391 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
392}
393
Felipe Balbi72246da2011-08-19 18:10:58 +0300394/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800395 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
396 * @dwc: Pointer to our controller context structure
397 */
398static void dwc3_phy_setup(struct dwc3 *dwc)
399{
400 u32 reg;
401
402 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
403
Huang Rui2164a472014-10-28 19:54:35 +0800404 /*
405 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
406 * to '0' during coreConsultant configuration. So default value
407 * will be '0' when the core is reset. Application needs to set it
408 * to '1' after the core initialization is completed.
409 */
410 if (dwc->revision > DWC3_REVISION_194A)
411 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
412
Huang Ruib5a65c42014-10-28 19:54:28 +0800413 if (dwc->u2ss_inp3_quirk)
414 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
415
Huang Ruidf31f5b2014-10-28 19:54:29 +0800416 if (dwc->req_p1p2p3_quirk)
417 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
418
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800419 if (dwc->del_p1p2p3_quirk)
420 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
421
Huang Rui41c06ff2014-10-28 19:54:31 +0800422 if (dwc->del_phy_power_chg_quirk)
423 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
424
Huang Ruifb67afc2014-10-28 19:54:32 +0800425 if (dwc->lfps_filter_quirk)
426 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
427
Huang Rui14f4ac52014-10-28 19:54:33 +0800428 if (dwc->rx_detect_poll_quirk)
429 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
430
Huang Rui6b6a0c92014-10-31 11:11:12 +0800431 if (dwc->tx_de_emphasis_quirk)
432 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
433
Felipe Balbicd72f892014-11-06 11:31:00 -0600434 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800435 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
436
Huang Ruib5a65c42014-10-28 19:54:28 +0800437 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
438
Huang Rui2164a472014-10-28 19:54:35 +0800439 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
440
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300441 /* Select the HS PHY interface */
442 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
443 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
444 if (!strncmp(dwc->hsphy_interface, "utmi", 4)) {
445 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
446 } else if (!strncmp(dwc->hsphy_interface, "ulpi", 4)) {
447 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
448 } else {
449 dev_warn(dwc->dev, "HSPHY Interface not defined\n");
450 break;
451 }
452 /* FALLTHROUGH */
453 default:
454 break;
455 }
456
Huang Rui2164a472014-10-28 19:54:35 +0800457 /*
458 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
459 * '0' during coreConsultant configuration. So default value will
460 * be '0' when the core is reset. Application needs to set it to
461 * '1' after the core initialization is completed.
462 */
463 if (dwc->revision > DWC3_REVISION_194A)
464 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
465
Felipe Balbicd72f892014-11-06 11:31:00 -0600466 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800467 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
468
Huang Rui2164a472014-10-28 19:54:35 +0800469 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Huang Ruib5a65c42014-10-28 19:54:28 +0800470}
471
472/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300473 * dwc3_core_init - Low-level initialization of DWC3 Core
474 * @dwc: Pointer to our controller context structure
475 *
476 * Returns 0 on success otherwise negative errno.
477 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500478static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300479{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600480 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300481 u32 reg;
482 int ret;
483
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200484 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
485 /* This should read as U3 followed by revision number */
486 if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) {
487 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
488 ret = -ENODEV;
489 goto err0;
490 }
Felipe Balbi248b1222011-12-14 21:59:30 +0200491 dwc->revision = reg;
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200492
Felipe Balbifa0ea132014-09-19 15:51:11 -0500493 /*
494 * Write Linux Version Code to our GUID register so it's easy to figure
495 * out which kernel version a bug was found.
496 */
497 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
498
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700499 /* Handle USB2.0-only core configuration */
500 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
501 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
502 if (dwc->maximum_speed == USB_SPEED_SUPER)
503 dwc->maximum_speed = USB_SPEED_HIGH;
504 }
505
Felipe Balbi72246da2011-08-19 18:10:58 +0300506 /* issue device SoftReset too */
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300507 ret = dwc3_soft_reset(dwc);
508 if (ret)
509 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300510
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530511 ret = dwc3_core_soft_reset(dwc);
512 if (ret)
513 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530514
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100515 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800516 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100517
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100518 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100519 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600520 /**
521 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
522 * issue which would cause xHCI compliance tests to fail.
523 *
524 * Because of that we cannot enable clock gating on such
525 * configurations.
526 *
527 * Refers to:
528 *
529 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
530 * SOF/ITP Mode Used
531 */
532 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
533 dwc->dr_mode == USB_DR_MODE_OTG) &&
534 (dwc->revision >= DWC3_REVISION_210A &&
535 dwc->revision <= DWC3_REVISION_250A))
536 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
537 else
538 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100539 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600540 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
541 /* enable hibernation here */
542 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800543
544 /*
545 * REVISIT Enabling this bit so that host-mode hibernation
546 * will work. Device-mode hibernation is not yet implemented.
547 */
548 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600549 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100550 default:
551 dev_dbg(dwc->dev, "No power optimization available\n");
552 }
553
Huang Rui946bd572014-10-28 19:54:23 +0800554 /* check if current dwc3 is on simulation board */
555 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
556 dev_dbg(dwc->dev, "it is on FPGA board\n");
557 dwc->is_fpga = true;
558 }
559
Huang Rui3b812212014-10-28 19:54:25 +0800560 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
561 "disable_scramble cannot be used on non-FPGA builds\n");
562
563 if (dwc->disable_scramble_quirk && dwc->is_fpga)
564 reg |= DWC3_GCTL_DISSCRAMBLE;
565 else
566 reg &= ~DWC3_GCTL_DISSCRAMBLE;
567
Huang Rui9a5b2f32014-10-28 19:54:27 +0800568 if (dwc->u2exit_lfps_quirk)
569 reg |= DWC3_GCTL_U2EXIT_LFPS;
570
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100571 /*
572 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800573 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100574 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800575 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100576 */
577 if (dwc->revision < DWC3_REVISION_190A)
578 reg |= DWC3_GCTL_U2RSTECN;
579
Felipe Balbi789451f62011-05-05 15:53:10 +0300580 dwc3_core_num_eps(dwc);
581
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100582 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
583
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600584 ret = dwc3_alloc_scratch_buffers(dwc);
585 if (ret)
586 goto err1;
587
588 ret = dwc3_setup_scratch_buffers(dwc);
589 if (ret)
590 goto err2;
591
Felipe Balbi72246da2011-08-19 18:10:58 +0300592 return 0;
593
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600594err2:
595 dwc3_free_scratch_buffers(dwc);
596
597err1:
598 usb_phy_shutdown(dwc->usb2_phy);
599 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530600 phy_exit(dwc->usb2_generic_phy);
601 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600602
Felipe Balbi72246da2011-08-19 18:10:58 +0300603err0:
604 return ret;
605}
606
607static void dwc3_core_exit(struct dwc3 *dwc)
608{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600609 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530610 usb_phy_shutdown(dwc->usb2_phy);
611 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530612 phy_exit(dwc->usb2_generic_phy);
613 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300614}
615
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500616static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300617{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500618 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300619 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500620 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300621
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530622 if (node) {
623 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
624 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500625 } else {
626 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
627 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530628 }
629
Felipe Balbid105e7f2013-03-15 10:52:08 +0200630 if (IS_ERR(dwc->usb2_phy)) {
631 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530632 if (ret == -ENXIO || ret == -ENODEV) {
633 dwc->usb2_phy = NULL;
634 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200635 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530636 } else {
637 dev_err(dev, "no usb2 phy configured\n");
638 return ret;
639 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300640 }
641
Felipe Balbid105e7f2013-03-15 10:52:08 +0200642 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500643 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530644 if (ret == -ENXIO || ret == -ENODEV) {
645 dwc->usb3_phy = NULL;
646 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200647 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530648 } else {
649 dev_err(dev, "no usb3 phy configured\n");
650 return ret;
651 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300652 }
653
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530654 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
655 if (IS_ERR(dwc->usb2_generic_phy)) {
656 ret = PTR_ERR(dwc->usb2_generic_phy);
657 if (ret == -ENOSYS || ret == -ENODEV) {
658 dwc->usb2_generic_phy = NULL;
659 } else if (ret == -EPROBE_DEFER) {
660 return ret;
661 } else {
662 dev_err(dev, "no usb2 phy configured\n");
663 return ret;
664 }
665 }
666
667 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
668 if (IS_ERR(dwc->usb3_generic_phy)) {
669 ret = PTR_ERR(dwc->usb3_generic_phy);
670 if (ret == -ENOSYS || ret == -ENODEV) {
671 dwc->usb3_generic_phy = NULL;
672 } else if (ret == -EPROBE_DEFER) {
673 return ret;
674 } else {
675 dev_err(dev, "no usb3 phy configured\n");
676 return ret;
677 }
678 }
679
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500680 return 0;
681}
682
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500683static int dwc3_core_init_mode(struct dwc3 *dwc)
684{
685 struct device *dev = dwc->dev;
686 int ret;
687
688 switch (dwc->dr_mode) {
689 case USB_DR_MODE_PERIPHERAL:
690 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
691 ret = dwc3_gadget_init(dwc);
692 if (ret) {
693 dev_err(dev, "failed to initialize gadget\n");
694 return ret;
695 }
696 break;
697 case USB_DR_MODE_HOST:
698 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
699 ret = dwc3_host_init(dwc);
700 if (ret) {
701 dev_err(dev, "failed to initialize host\n");
702 return ret;
703 }
704 break;
705 case USB_DR_MODE_OTG:
706 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
707 ret = dwc3_host_init(dwc);
708 if (ret) {
709 dev_err(dev, "failed to initialize host\n");
710 return ret;
711 }
712
713 ret = dwc3_gadget_init(dwc);
714 if (ret) {
715 dev_err(dev, "failed to initialize gadget\n");
716 return ret;
717 }
718 break;
719 default:
720 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
721 return -EINVAL;
722 }
723
724 return 0;
725}
726
727static void dwc3_core_exit_mode(struct dwc3 *dwc)
728{
729 switch (dwc->dr_mode) {
730 case USB_DR_MODE_PERIPHERAL:
731 dwc3_gadget_exit(dwc);
732 break;
733 case USB_DR_MODE_HOST:
734 dwc3_host_exit(dwc);
735 break;
736 case USB_DR_MODE_OTG:
737 dwc3_host_exit(dwc);
738 dwc3_gadget_exit(dwc);
739 break;
740 default:
741 /* do nothing */
742 break;
743 }
744}
745
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500746#define DWC3_ALIGN_MASK (16 - 1)
747
748static int dwc3_probe(struct platform_device *pdev)
749{
750 struct device *dev = &pdev->dev;
751 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
752 struct device_node *node = dev->of_node;
753 struct resource *res;
754 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800755 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800756 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800757 u8 hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500758
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300759 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500760
761 void __iomem *regs;
762 void *mem;
763
764 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900765 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500766 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900767
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500768 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
769 dwc->mem = mem;
770 dwc->dev = dev;
771
772 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
773 if (!res) {
774 dev_err(dev, "missing IRQ\n");
775 return -ENODEV;
776 }
777 dwc->xhci_resources[1].start = res->start;
778 dwc->xhci_resources[1].end = res->end;
779 dwc->xhci_resources[1].flags = res->flags;
780 dwc->xhci_resources[1].name = res->name;
781
782 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
783 if (!res) {
784 dev_err(dev, "missing memory resource\n");
785 return -ENODEV;
786 }
787
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530788 dwc->xhci_resources[0].start = res->start;
789 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
790 DWC3_XHCI_REGS_END;
791 dwc->xhci_resources[0].flags = res->flags;
792 dwc->xhci_resources[0].name = res->name;
793
794 res->start += DWC3_GLOBALS_REGS_START;
795
796 /*
797 * Request memory region but exclude xHCI regs,
798 * since it will be requested by the xhci-plat driver.
799 */
800 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500801 if (IS_ERR(regs)) {
802 ret = PTR_ERR(regs);
803 goto err0;
804 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530805
806 dwc->regs = regs;
807 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530808
Huang Rui80caf7d2014-10-28 19:54:26 +0800809 /* default to highest possible threshold */
810 lpm_nyet_threshold = 0xff;
811
Huang Rui6b6a0c92014-10-31 11:11:12 +0800812 /* default to -3.5dB de-emphasis */
813 tx_de_emphasis = 1;
814
Huang Rui460d0982014-10-31 11:11:18 +0800815 /*
816 * default to assert utmi_sleep_n and use maximum allowed HIRD
817 * threshold value of 0b1100
818 */
819 hird_threshold = 12;
820
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500821 if (node) {
822 dwc->maximum_speed = of_usb_get_maximum_speed(node);
Huang Rui80caf7d2014-10-28 19:54:26 +0800823 dwc->has_lpm_erratum = of_property_read_bool(node,
824 "snps,has-lpm-erratum");
825 of_property_read_u8(node, "snps,lpm-nyet-threshold",
826 &lpm_nyet_threshold);
Huang Rui460d0982014-10-31 11:11:18 +0800827 dwc->is_utmi_l1_suspend = of_property_read_bool(node,
828 "snps,is-utmi-l1-suspend");
829 of_property_read_u8(node, "snps,hird-threshold",
830 &hird_threshold);
Robert Baldygaeac68e82015-03-09 15:06:12 +0100831 dwc->usb3_lpm_capable = of_property_read_bool(node,
832 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500833
Huang Rui80caf7d2014-10-28 19:54:26 +0800834 dwc->needs_fifo_resize = of_property_read_bool(node,
835 "tx-fifo-resize");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500836 dwc->dr_mode = of_usb_get_dr_mode(node);
Huang Rui3b812212014-10-28 19:54:25 +0800837
838 dwc->disable_scramble_quirk = of_property_read_bool(node,
839 "snps,disable_scramble_quirk");
Huang Rui9a5b2f32014-10-28 19:54:27 +0800840 dwc->u2exit_lfps_quirk = of_property_read_bool(node,
841 "snps,u2exit_lfps_quirk");
Huang Ruib5a65c42014-10-28 19:54:28 +0800842 dwc->u2ss_inp3_quirk = of_property_read_bool(node,
843 "snps,u2ss_inp3_quirk");
Huang Ruidf31f5b2014-10-28 19:54:29 +0800844 dwc->req_p1p2p3_quirk = of_property_read_bool(node,
845 "snps,req_p1p2p3_quirk");
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800846 dwc->del_p1p2p3_quirk = of_property_read_bool(node,
847 "snps,del_p1p2p3_quirk");
Huang Rui41c06ff2014-10-28 19:54:31 +0800848 dwc->del_phy_power_chg_quirk = of_property_read_bool(node,
849 "snps,del_phy_power_chg_quirk");
Huang Ruifb67afc2014-10-28 19:54:32 +0800850 dwc->lfps_filter_quirk = of_property_read_bool(node,
851 "snps,lfps_filter_quirk");
Huang Rui14f4ac52014-10-28 19:54:33 +0800852 dwc->rx_detect_poll_quirk = of_property_read_bool(node,
853 "snps,rx_detect_poll_quirk");
Huang Rui59acfa22014-10-31 11:11:13 +0800854 dwc->dis_u3_susphy_quirk = of_property_read_bool(node,
855 "snps,dis_u3_susphy_quirk");
Huang Rui0effe0a2014-10-31 11:11:14 +0800856 dwc->dis_u2_susphy_quirk = of_property_read_bool(node,
857 "snps,dis_u2_susphy_quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +0800858
859 dwc->tx_de_emphasis_quirk = of_property_read_bool(node,
860 "snps,tx_de_emphasis_quirk");
861 of_property_read_u8(node, "snps,tx_de_emphasis",
862 &tx_de_emphasis);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300863 of_property_read_string(node, "snps,hsphy_interface",
864 &dwc->hsphy_interface);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500865 } else if (pdata) {
866 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800867 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
868 if (pdata->lpm_nyet_threshold)
869 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Huang Rui460d0982014-10-31 11:11:18 +0800870 dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
871 if (pdata->hird_threshold)
872 hird_threshold = pdata->hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500873
874 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
Robert Baldygaeac68e82015-03-09 15:06:12 +0100875 dwc->usb3_lpm_capable = pdata->usb3_lpm_capable;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500876 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800877
878 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800879 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800880 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800881 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800882 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800883 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800884 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Huang Rui14f4ac52014-10-28 19:54:33 +0800885 dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk;
Huang Rui59acfa22014-10-31 11:11:13 +0800886 dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk;
Huang Rui0effe0a2014-10-31 11:11:14 +0800887 dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800888
889 dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk;
890 if (pdata->tx_de_emphasis)
891 tx_de_emphasis = pdata->tx_de_emphasis;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300892
893 dwc->hsphy_interface = pdata->hsphy_interface;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500894 }
895
896 /* default to superspeed if no maximum_speed passed */
897 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
898 dwc->maximum_speed = USB_SPEED_SUPER;
899
Huang Rui80caf7d2014-10-28 19:54:26 +0800900 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800901 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +0800902
Huang Rui460d0982014-10-31 11:11:18 +0800903 dwc->hird_threshold = hird_threshold
904 | (dwc->is_utmi_l1_suspend << 4);
905
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300906 platform_set_drvdata(pdev, dwc);
Heikki Krogerus2917e712015-05-13 15:26:46 +0300907 dwc3_cache_hwparams(dwc);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300908
Heikki Krogerus45bb7de2015-05-13 15:26:48 +0300909 dwc3_phy_setup(dwc);
910
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500911 ret = dwc3_core_get_phy(dwc);
912 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500913 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500914
Felipe Balbi72246da2011-08-19 18:10:58 +0300915 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +0300916
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300917 if (!dev->dma_mask) {
918 dev->dma_mask = dev->parent->dma_mask;
919 dev->dma_parms = dev->parent->dma_parms;
920 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
921 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530922
Chanho Park802ca852012-02-15 18:27:55 +0900923 pm_runtime_enable(dev);
924 pm_runtime_get_sync(dev);
925 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300926
Felipe Balbi39214262012-10-11 13:54:36 +0300927 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
928 if (ret) {
929 dev_err(dwc->dev, "failed to allocate event buffers\n");
930 ret = -ENOMEM;
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500931 goto err1;
Felipe Balbi39214262012-10-11 13:54:36 +0300932 }
933
Felipe Balbi32a4a132014-02-25 14:00:13 -0600934 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
935 dwc->dr_mode = USB_DR_MODE_HOST;
936 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
937 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
938
939 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
940 dwc->dr_mode = USB_DR_MODE_OTG;
941
Felipe Balbi72246da2011-08-19 18:10:58 +0300942 ret = dwc3_core_init(dwc);
943 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900944 dev_err(dev, "failed to initialize core\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500945 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +0300946 }
947
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530948 usb_phy_set_suspend(dwc->usb2_phy, 0);
949 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530950 ret = phy_power_on(dwc->usb2_generic_phy);
951 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500952 goto err2;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530953
954 ret = phy_power_on(dwc->usb3_generic_phy);
955 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500956 goto err3;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530957
Felipe Balbif122d332013-02-08 15:15:11 +0200958 ret = dwc3_event_buffers_setup(dwc);
959 if (ret) {
960 dev_err(dwc->dev, "failed to setup event buffers\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500961 goto err4;
Felipe Balbif122d332013-02-08 15:15:11 +0200962 }
963
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500964 ret = dwc3_core_init_mode(dwc);
965 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500966 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +0300967
968 ret = dwc3_debugfs_init(dwc);
969 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900970 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500971 goto err6;
Felipe Balbi72246da2011-08-19 18:10:58 +0300972 }
973
Chanho Park802ca852012-02-15 18:27:55 +0900974 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300975
976 return 0;
977
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500978err6:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500979 dwc3_core_exit_mode(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300980
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500981err5:
Felipe Balbif122d332013-02-08 15:15:11 +0200982 dwc3_event_buffers_cleanup(dwc);
983
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500984err4:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530985 phy_power_off(dwc->usb3_generic_phy);
986
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500987err3:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530988 phy_power_off(dwc->usb2_generic_phy);
989
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500990err2:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +0530991 usb_phy_set_suspend(dwc->usb2_phy, 1);
992 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300993 dwc3_core_exit(dwc);
994
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500995err1:
Felipe Balbi39214262012-10-11 13:54:36 +0300996 dwc3_free_event_buffers(dwc);
997
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500998err0:
999 /*
1000 * restore res->start back to its original value so that, in case the
1001 * probe is deferred, we don't end up getting error in request the
1002 * memory region the next time probe is called.
1003 */
1004 res->start -= DWC3_GLOBALS_REGS_START;
1005
Felipe Balbi72246da2011-08-19 18:10:58 +03001006 return ret;
1007}
1008
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001009static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001010{
Felipe Balbi72246da2011-08-19 18:10:58 +03001011 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001012 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1013
1014 /*
1015 * restore res->start back to its original value so that, in case the
1016 * probe is deferred, we don't end up getting error in request the
1017 * memory region the next time probe is called.
1018 */
1019 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001020
Felipe Balbidc99f162014-09-03 16:13:37 -05001021 dwc3_debugfs_exit(dwc);
1022 dwc3_core_exit_mode(dwc);
1023 dwc3_event_buffers_cleanup(dwc);
1024 dwc3_free_event_buffers(dwc);
1025
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301026 usb_phy_set_suspend(dwc->usb2_phy, 1);
1027 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301028 phy_power_off(dwc->usb2_generic_phy);
1029 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301030
Felipe Balbi72246da2011-08-19 18:10:58 +03001031 dwc3_core_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001032
Felipe Balbi7415f172012-04-30 14:56:33 +03001033 pm_runtime_put_sync(&pdev->dev);
1034 pm_runtime_disable(&pdev->dev);
1035
Felipe Balbi72246da2011-08-19 18:10:58 +03001036 return 0;
1037}
1038
Felipe Balbi7415f172012-04-30 14:56:33 +03001039#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +03001040static int dwc3_suspend(struct device *dev)
1041{
1042 struct dwc3 *dwc = dev_get_drvdata(dev);
1043 unsigned long flags;
1044
1045 spin_lock_irqsave(&dwc->lock, flags);
1046
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001047 switch (dwc->dr_mode) {
1048 case USB_DR_MODE_PERIPHERAL:
1049 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001050 dwc3_gadget_suspend(dwc);
1051 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001052 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001053 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001054 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001055 break;
1056 }
1057
1058 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
1059 spin_unlock_irqrestore(&dwc->lock, flags);
1060
1061 usb_phy_shutdown(dwc->usb3_phy);
1062 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301063 phy_exit(dwc->usb2_generic_phy);
1064 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +03001065
1066 return 0;
1067}
1068
1069static int dwc3_resume(struct device *dev)
1070{
1071 struct dwc3 *dwc = dev_get_drvdata(dev);
1072 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301073 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001074
1075 usb_phy_init(dwc->usb3_phy);
1076 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301077 ret = phy_init(dwc->usb2_generic_phy);
1078 if (ret < 0)
1079 return ret;
1080
1081 ret = phy_init(dwc->usb3_generic_phy);
1082 if (ret < 0)
1083 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +03001084
1085 spin_lock_irqsave(&dwc->lock, flags);
1086
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001087 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001088 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
1089
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001090 switch (dwc->dr_mode) {
1091 case USB_DR_MODE_PERIPHERAL:
1092 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001093 dwc3_gadget_resume(dwc);
1094 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001095 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001096 default:
1097 /* do nothing */
1098 break;
1099 }
1100
1101 spin_unlock_irqrestore(&dwc->lock, flags);
1102
1103 pm_runtime_disable(dev);
1104 pm_runtime_set_active(dev);
1105 pm_runtime_enable(dev);
1106
1107 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301108
1109err_usb2phy_init:
1110 phy_exit(dwc->usb2_generic_phy);
1111
1112 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001113}
1114
1115static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001116 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
1117};
1118
1119#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
1120#else
1121#define DWC3_PM_OPS NULL
1122#endif
1123
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301124#ifdef CONFIG_OF
1125static const struct of_device_id of_dwc3_match[] = {
1126 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001127 .compatible = "snps,dwc3"
1128 },
1129 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301130 .compatible = "synopsys,dwc3"
1131 },
1132 { },
1133};
1134MODULE_DEVICE_TABLE(of, of_dwc3_match);
1135#endif
1136
Heikki Krogerus404905a2014-09-25 10:57:02 +03001137#ifdef CONFIG_ACPI
1138
1139#define ACPI_ID_INTEL_BSW "808622B7"
1140
1141static const struct acpi_device_id dwc3_acpi_match[] = {
1142 { ACPI_ID_INTEL_BSW, 0 },
1143 { },
1144};
1145MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1146#endif
1147
Felipe Balbi72246da2011-08-19 18:10:58 +03001148static struct platform_driver dwc3_driver = {
1149 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001150 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001151 .driver = {
1152 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301153 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001154 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001155 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001156 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001157};
1158
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001159module_platform_driver(dwc3_driver);
1160
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001161MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001162MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001163MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001164MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");