blob: 25ddc39efad880ca05ce2ab7bbe55523be66d8c6 [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * core.c - DesignWare USB3 DRD Controller Core file
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 *
Felipe Balbi5945f782013-06-30 14:15:11 +030018 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Felipe Balbi72246da2011-08-19 18:10:58 +030020 */
21
Felipe Balbifa0ea132014-09-19 15:51:11 -050022#include <linux/version.h>
Felipe Balbia72e6582011-09-05 13:37:28 +030023#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030024#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
27#include <linux/platform_device.h>
28#include <linux/pm_runtime.h>
29#include <linux/interrupt.h>
30#include <linux/ioport.h>
31#include <linux/io.h>
32#include <linux/list.h>
33#include <linux/delay.h>
34#include <linux/dma-mapping.h>
Felipe Balbi457e84b2012-01-18 18:04:09 +020035#include <linux/of.h>
Heikki Krogerus404905a2014-09-25 10:57:02 +030036#include <linux/acpi.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030037
38#include <linux/usb/ch9.h>
39#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030040#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050041#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030042
Felipe Balbi6462cbd2013-06-30 14:19:33 +030043#include "platform_data.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030044#include "core.h"
45#include "gadget.h"
46#include "io.h"
47
48#include "debug.h"
49
Felipe Balbi8300dd22011-10-18 13:54:01 +030050/* -------------------------------------------------------------------------- */
51
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +010052void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
53{
54 u32 reg;
55
56 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
57 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
58 reg |= DWC3_GCTL_PRTCAPDIR(mode);
59 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
60}
Felipe Balbi8300dd22011-10-18 13:54:01 +030061
Felipe Balbi72246da2011-08-19 18:10:58 +030062/**
63 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
64 * @dwc: pointer to our context structure
65 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053066static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +030067{
68 u32 reg;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053069 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +030070
71 /* Before Resetting PHY, put Core in Reset */
72 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
73 reg |= DWC3_GCTL_CORESOFTRESET;
74 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
75
76 /* Assert USB3 PHY reset */
77 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
78 reg |= DWC3_GUSB3PIPECTL_PHYSOFTRST;
79 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
80
81 /* Assert USB2 PHY reset */
82 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
83 reg |= DWC3_GUSB2PHYCFG_PHYSOFTRST;
84 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
85
Felipe Balbi51e1e7b2012-07-19 14:09:48 +030086 usb_phy_init(dwc->usb2_phy);
87 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053088 ret = phy_init(dwc->usb2_generic_phy);
89 if (ret < 0)
90 return ret;
91
92 ret = phy_init(dwc->usb3_generic_phy);
93 if (ret < 0) {
94 phy_exit(dwc->usb2_generic_phy);
95 return ret;
96 }
Felipe Balbi72246da2011-08-19 18:10:58 +030097 mdelay(100);
98
99 /* Clear USB3 PHY reset */
100 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
101 reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST;
102 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
103
104 /* Clear USB2 PHY reset */
105 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
106 reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST;
107 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
108
Pratyush Anand45627ac2012-06-21 17:44:28 +0530109 mdelay(100);
110
Felipe Balbi72246da2011-08-19 18:10:58 +0300111 /* After PHYs are stable we can take Core out of reset state */
112 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
113 reg &= ~DWC3_GCTL_CORESOFTRESET;
114 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530115
116 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300117}
118
119/**
120 * dwc3_free_one_event_buffer - Frees one event buffer
121 * @dwc: Pointer to our controller context structure
122 * @evt: Pointer to event buffer to be freed
123 */
124static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
125 struct dwc3_event_buffer *evt)
126{
127 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300128}
129
130/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800131 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300132 * @dwc: Pointer to our controller context structure
133 * @length: size of the event buffer
134 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800135 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300136 * otherwise ERR_PTR(errno).
137 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200138static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
139 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300140{
141 struct dwc3_event_buffer *evt;
142
Felipe Balbi380f0d22012-10-11 13:48:36 +0300143 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300144 if (!evt)
145 return ERR_PTR(-ENOMEM);
146
147 evt->dwc = dwc;
148 evt->length = length;
149 evt->buf = dma_alloc_coherent(dwc->dev, length,
150 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200151 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300152 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300153
154 return evt;
155}
156
157/**
158 * dwc3_free_event_buffers - frees all allocated event buffers
159 * @dwc: Pointer to our controller context structure
160 */
161static void dwc3_free_event_buffers(struct dwc3 *dwc)
162{
163 struct dwc3_event_buffer *evt;
164 int i;
165
Felipe Balbi9f622b22011-10-12 10:31:04 +0300166 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300167 evt = dwc->ev_buffs[i];
Anton Tikhomirov64b6c8a2012-03-06 17:05:15 +0900168 if (evt)
Felipe Balbi72246da2011-08-19 18:10:58 +0300169 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300170 }
171}
172
173/**
174 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800175 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300176 * @length: size of event buffer
177 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800178 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300179 * may contain some buffers allocated but not all which were requested.
180 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500181static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300182{
Felipe Balbi9f622b22011-10-12 10:31:04 +0300183 int num;
Felipe Balbi72246da2011-08-19 18:10:58 +0300184 int i;
185
Felipe Balbi9f622b22011-10-12 10:31:04 +0300186 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
187 dwc->num_event_buffers = num;
188
Felipe Balbi380f0d22012-10-11 13:48:36 +0300189 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
190 GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900191 if (!dwc->ev_buffs)
Felipe Balbi457d3f22011-10-24 12:03:13 +0300192 return -ENOMEM;
Felipe Balbi457d3f22011-10-24 12:03:13 +0300193
Felipe Balbi72246da2011-08-19 18:10:58 +0300194 for (i = 0; i < num; i++) {
195 struct dwc3_event_buffer *evt;
196
197 evt = dwc3_alloc_one_event_buffer(dwc, length);
198 if (IS_ERR(evt)) {
199 dev_err(dwc->dev, "can't allocate event buffer\n");
200 return PTR_ERR(evt);
201 }
202 dwc->ev_buffs[i] = evt;
203 }
204
205 return 0;
206}
207
208/**
209 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800210 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300211 *
212 * Returns 0 on success otherwise negative errno.
213 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300214static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300215{
216 struct dwc3_event_buffer *evt;
217 int n;
218
Felipe Balbi9f622b22011-10-12 10:31:04 +0300219 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300220 evt = dwc->ev_buffs[n];
221 dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n",
222 evt->buf, (unsigned long long) evt->dma,
223 evt->length);
224
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300225 evt->lpos = 0;
226
Felipe Balbi72246da2011-08-19 18:10:58 +0300227 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n),
228 lower_32_bits(evt->dma));
229 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n),
230 upper_32_bits(evt->dma));
231 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n),
Felipe Balbi68d6a012013-06-12 21:09:26 +0300232 DWC3_GEVNTSIZ_SIZE(evt->length));
Felipe Balbi72246da2011-08-19 18:10:58 +0300233 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
234 }
235
236 return 0;
237}
238
239static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
240{
241 struct dwc3_event_buffer *evt;
242 int n;
243
Felipe Balbi9f622b22011-10-12 10:31:04 +0300244 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300245 evt = dwc->ev_buffs[n];
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300246
247 evt->lpos = 0;
248
Felipe Balbi72246da2011-08-19 18:10:58 +0300249 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
250 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
Felipe Balbi68d6a012013-06-12 21:09:26 +0300251 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
252 | DWC3_GEVNTSIZ_SIZE(0));
Felipe Balbi72246da2011-08-19 18:10:58 +0300253 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
254 }
255}
256
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600257static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
258{
259 if (!dwc->has_hibernation)
260 return 0;
261
262 if (!dwc->nr_scratch)
263 return 0;
264
265 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
266 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
267 if (!dwc->scratchbuf)
268 return -ENOMEM;
269
270 return 0;
271}
272
273static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
274{
275 dma_addr_t scratch_addr;
276 u32 param;
277 int ret;
278
279 if (!dwc->has_hibernation)
280 return 0;
281
282 if (!dwc->nr_scratch)
283 return 0;
284
285 /* should never fall here */
286 if (!WARN_ON(dwc->scratchbuf))
287 return 0;
288
289 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
290 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
291 DMA_BIDIRECTIONAL);
292 if (dma_mapping_error(dwc->dev, scratch_addr)) {
293 dev_err(dwc->dev, "failed to map scratch buffer\n");
294 ret = -EFAULT;
295 goto err0;
296 }
297
298 dwc->scratch_addr = scratch_addr;
299
300 param = lower_32_bits(scratch_addr);
301
302 ret = dwc3_send_gadget_generic_command(dwc,
303 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
304 if (ret < 0)
305 goto err1;
306
307 param = upper_32_bits(scratch_addr);
308
309 ret = dwc3_send_gadget_generic_command(dwc,
310 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
311 if (ret < 0)
312 goto err1;
313
314 return 0;
315
316err1:
317 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
318 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
319
320err0:
321 return ret;
322}
323
324static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
325{
326 if (!dwc->has_hibernation)
327 return;
328
329 if (!dwc->nr_scratch)
330 return;
331
332 /* should never fall here */
333 if (!WARN_ON(dwc->scratchbuf))
334 return;
335
336 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
337 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
338 kfree(dwc->scratchbuf);
339}
340
Felipe Balbi789451f62011-05-05 15:53:10 +0300341static void dwc3_core_num_eps(struct dwc3 *dwc)
342{
343 struct dwc3_hwparams *parms = &dwc->hwparams;
344
345 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
346 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
347
348 dev_vdbg(dwc->dev, "found %d IN and %d OUT endpoints\n",
349 dwc->num_in_eps, dwc->num_out_eps);
350}
351
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500352static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300353{
354 struct dwc3_hwparams *parms = &dwc->hwparams;
355
356 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
357 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
358 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
359 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
360 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
361 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
362 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
363 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
364 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
365}
366
Felipe Balbi72246da2011-08-19 18:10:58 +0300367/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800368 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
369 * @dwc: Pointer to our controller context structure
370 */
371static void dwc3_phy_setup(struct dwc3 *dwc)
372{
373 u32 reg;
374
375 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
376
Huang Rui2164a472014-10-28 19:54:35 +0800377 /*
378 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
379 * to '0' during coreConsultant configuration. So default value
380 * will be '0' when the core is reset. Application needs to set it
381 * to '1' after the core initialization is completed.
382 */
383 if (dwc->revision > DWC3_REVISION_194A)
384 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
385
Huang Ruib5a65c42014-10-28 19:54:28 +0800386 if (dwc->u2ss_inp3_quirk)
387 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
388
Huang Ruidf31f5b2014-10-28 19:54:29 +0800389 if (dwc->req_p1p2p3_quirk)
390 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
391
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800392 if (dwc->del_p1p2p3_quirk)
393 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
394
Huang Rui41c06ff2014-10-28 19:54:31 +0800395 if (dwc->del_phy_power_chg_quirk)
396 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
397
Huang Ruifb67afc2014-10-28 19:54:32 +0800398 if (dwc->lfps_filter_quirk)
399 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
400
Huang Rui14f4ac52014-10-28 19:54:33 +0800401 if (dwc->rx_detect_poll_quirk)
402 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
403
Huang Rui6b6a0c92014-10-31 11:11:12 +0800404 if (dwc->tx_de_emphasis_quirk)
405 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
406
Felipe Balbicd72f892014-11-06 11:31:00 -0600407 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800408 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
409
Huang Ruib5a65c42014-10-28 19:54:28 +0800410 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
411
412 mdelay(100);
Huang Rui2164a472014-10-28 19:54:35 +0800413
414 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
415
416 /*
417 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
418 * '0' during coreConsultant configuration. So default value will
419 * be '0' when the core is reset. Application needs to set it to
420 * '1' after the core initialization is completed.
421 */
422 if (dwc->revision > DWC3_REVISION_194A)
423 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
424
Felipe Balbicd72f892014-11-06 11:31:00 -0600425 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800426 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
427
Huang Rui2164a472014-10-28 19:54:35 +0800428 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
429
430 mdelay(100);
Huang Ruib5a65c42014-10-28 19:54:28 +0800431}
432
433/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300434 * dwc3_core_init - Low-level initialization of DWC3 Core
435 * @dwc: Pointer to our controller context structure
436 *
437 * Returns 0 on success otherwise negative errno.
438 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500439static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300440{
441 unsigned long timeout;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600442 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300443 u32 reg;
444 int ret;
445
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200446 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
447 /* This should read as U3 followed by revision number */
448 if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) {
449 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
450 ret = -ENODEV;
451 goto err0;
452 }
Felipe Balbi248b1222011-12-14 21:59:30 +0200453 dwc->revision = reg;
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200454
Felipe Balbifa0ea132014-09-19 15:51:11 -0500455 /*
456 * Write Linux Version Code to our GUID register so it's easy to figure
457 * out which kernel version a bug was found.
458 */
459 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
460
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700461 /* Handle USB2.0-only core configuration */
462 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
463 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
464 if (dwc->maximum_speed == USB_SPEED_SUPER)
465 dwc->maximum_speed = USB_SPEED_HIGH;
466 }
467
Felipe Balbi72246da2011-08-19 18:10:58 +0300468 /* issue device SoftReset too */
469 timeout = jiffies + msecs_to_jiffies(500);
470 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
471 do {
472 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
473 if (!(reg & DWC3_DCTL_CSFTRST))
474 break;
475
476 if (time_after(jiffies, timeout)) {
477 dev_err(dwc->dev, "Reset Timed Out\n");
478 ret = -ETIMEDOUT;
479 goto err0;
480 }
481
482 cpu_relax();
483 } while (true);
484
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530485 ret = dwc3_core_soft_reset(dwc);
486 if (ret)
487 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530488
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100489 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800490 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100491
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100492 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100493 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600494 /**
495 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
496 * issue which would cause xHCI compliance tests to fail.
497 *
498 * Because of that we cannot enable clock gating on such
499 * configurations.
500 *
501 * Refers to:
502 *
503 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
504 * SOF/ITP Mode Used
505 */
506 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
507 dwc->dr_mode == USB_DR_MODE_OTG) &&
508 (dwc->revision >= DWC3_REVISION_210A &&
509 dwc->revision <= DWC3_REVISION_250A))
510 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
511 else
512 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100513 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600514 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
515 /* enable hibernation here */
516 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800517
518 /*
519 * REVISIT Enabling this bit so that host-mode hibernation
520 * will work. Device-mode hibernation is not yet implemented.
521 */
522 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600523 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100524 default:
525 dev_dbg(dwc->dev, "No power optimization available\n");
526 }
527
Huang Rui946bd572014-10-28 19:54:23 +0800528 /* check if current dwc3 is on simulation board */
529 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
530 dev_dbg(dwc->dev, "it is on FPGA board\n");
531 dwc->is_fpga = true;
532 }
533
Huang Rui3b812212014-10-28 19:54:25 +0800534 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
535 "disable_scramble cannot be used on non-FPGA builds\n");
536
537 if (dwc->disable_scramble_quirk && dwc->is_fpga)
538 reg |= DWC3_GCTL_DISSCRAMBLE;
539 else
540 reg &= ~DWC3_GCTL_DISSCRAMBLE;
541
Huang Rui9a5b2f32014-10-28 19:54:27 +0800542 if (dwc->u2exit_lfps_quirk)
543 reg |= DWC3_GCTL_U2EXIT_LFPS;
544
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100545 /*
546 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800547 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100548 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800549 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100550 */
551 if (dwc->revision < DWC3_REVISION_190A)
552 reg |= DWC3_GCTL_U2RSTECN;
553
Felipe Balbi789451f62011-05-05 15:53:10 +0300554 dwc3_core_num_eps(dwc);
555
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100556 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
557
Huang Ruib5a65c42014-10-28 19:54:28 +0800558 dwc3_phy_setup(dwc);
559
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600560 ret = dwc3_alloc_scratch_buffers(dwc);
561 if (ret)
562 goto err1;
563
564 ret = dwc3_setup_scratch_buffers(dwc);
565 if (ret)
566 goto err2;
567
Felipe Balbi72246da2011-08-19 18:10:58 +0300568 return 0;
569
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600570err2:
571 dwc3_free_scratch_buffers(dwc);
572
573err1:
574 usb_phy_shutdown(dwc->usb2_phy);
575 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530576 phy_exit(dwc->usb2_generic_phy);
577 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600578
Felipe Balbi72246da2011-08-19 18:10:58 +0300579err0:
580 return ret;
581}
582
583static void dwc3_core_exit(struct dwc3 *dwc)
584{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600585 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530586 usb_phy_shutdown(dwc->usb2_phy);
587 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530588 phy_exit(dwc->usb2_generic_phy);
589 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300590}
591
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500592static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300593{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500594 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300595 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500596 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300597
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530598 if (node) {
599 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
600 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500601 } else {
602 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
603 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530604 }
605
Felipe Balbid105e7f2013-03-15 10:52:08 +0200606 if (IS_ERR(dwc->usb2_phy)) {
607 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530608 if (ret == -ENXIO || ret == -ENODEV) {
609 dwc->usb2_phy = NULL;
610 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200611 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530612 } else {
613 dev_err(dev, "no usb2 phy configured\n");
614 return ret;
615 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300616 }
617
Felipe Balbid105e7f2013-03-15 10:52:08 +0200618 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500619 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530620 if (ret == -ENXIO || ret == -ENODEV) {
621 dwc->usb3_phy = NULL;
622 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200623 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530624 } else {
625 dev_err(dev, "no usb3 phy configured\n");
626 return ret;
627 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300628 }
629
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530630 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
631 if (IS_ERR(dwc->usb2_generic_phy)) {
632 ret = PTR_ERR(dwc->usb2_generic_phy);
633 if (ret == -ENOSYS || ret == -ENODEV) {
634 dwc->usb2_generic_phy = NULL;
635 } else if (ret == -EPROBE_DEFER) {
636 return ret;
637 } else {
638 dev_err(dev, "no usb2 phy configured\n");
639 return ret;
640 }
641 }
642
643 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
644 if (IS_ERR(dwc->usb3_generic_phy)) {
645 ret = PTR_ERR(dwc->usb3_generic_phy);
646 if (ret == -ENOSYS || ret == -ENODEV) {
647 dwc->usb3_generic_phy = NULL;
648 } else if (ret == -EPROBE_DEFER) {
649 return ret;
650 } else {
651 dev_err(dev, "no usb3 phy configured\n");
652 return ret;
653 }
654 }
655
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500656 return 0;
657}
658
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500659static int dwc3_core_init_mode(struct dwc3 *dwc)
660{
661 struct device *dev = dwc->dev;
662 int ret;
663
664 switch (dwc->dr_mode) {
665 case USB_DR_MODE_PERIPHERAL:
666 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
667 ret = dwc3_gadget_init(dwc);
668 if (ret) {
669 dev_err(dev, "failed to initialize gadget\n");
670 return ret;
671 }
672 break;
673 case USB_DR_MODE_HOST:
674 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
675 ret = dwc3_host_init(dwc);
676 if (ret) {
677 dev_err(dev, "failed to initialize host\n");
678 return ret;
679 }
680 break;
681 case USB_DR_MODE_OTG:
682 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
683 ret = dwc3_host_init(dwc);
684 if (ret) {
685 dev_err(dev, "failed to initialize host\n");
686 return ret;
687 }
688
689 ret = dwc3_gadget_init(dwc);
690 if (ret) {
691 dev_err(dev, "failed to initialize gadget\n");
692 return ret;
693 }
694 break;
695 default:
696 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
697 return -EINVAL;
698 }
699
700 return 0;
701}
702
703static void dwc3_core_exit_mode(struct dwc3 *dwc)
704{
705 switch (dwc->dr_mode) {
706 case USB_DR_MODE_PERIPHERAL:
707 dwc3_gadget_exit(dwc);
708 break;
709 case USB_DR_MODE_HOST:
710 dwc3_host_exit(dwc);
711 break;
712 case USB_DR_MODE_OTG:
713 dwc3_host_exit(dwc);
714 dwc3_gadget_exit(dwc);
715 break;
716 default:
717 /* do nothing */
718 break;
719 }
720}
721
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500722#define DWC3_ALIGN_MASK (16 - 1)
723
724static int dwc3_probe(struct platform_device *pdev)
725{
726 struct device *dev = &pdev->dev;
727 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
728 struct device_node *node = dev->of_node;
729 struct resource *res;
730 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800731 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800732 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800733 u8 hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500734
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300735 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500736
737 void __iomem *regs;
738 void *mem;
739
740 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900741 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500742 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900743
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500744 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
745 dwc->mem = mem;
746 dwc->dev = dev;
747
748 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
749 if (!res) {
750 dev_err(dev, "missing IRQ\n");
751 return -ENODEV;
752 }
753 dwc->xhci_resources[1].start = res->start;
754 dwc->xhci_resources[1].end = res->end;
755 dwc->xhci_resources[1].flags = res->flags;
756 dwc->xhci_resources[1].name = res->name;
757
758 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
759 if (!res) {
760 dev_err(dev, "missing memory resource\n");
761 return -ENODEV;
762 }
763
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530764 dwc->xhci_resources[0].start = res->start;
765 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
766 DWC3_XHCI_REGS_END;
767 dwc->xhci_resources[0].flags = res->flags;
768 dwc->xhci_resources[0].name = res->name;
769
770 res->start += DWC3_GLOBALS_REGS_START;
771
772 /*
773 * Request memory region but exclude xHCI regs,
774 * since it will be requested by the xhci-plat driver.
775 */
776 regs = devm_ioremap_resource(dev, res);
777 if (IS_ERR(regs))
778 return PTR_ERR(regs);
779
780 dwc->regs = regs;
781 dwc->regs_size = resource_size(res);
782 /*
783 * restore res->start back to its original value so that,
784 * in case the probe is deferred, we don't end up getting error in
785 * request the memory region the next time probe is called.
786 */
787 res->start -= DWC3_GLOBALS_REGS_START;
788
Huang Rui80caf7d2014-10-28 19:54:26 +0800789 /* default to highest possible threshold */
790 lpm_nyet_threshold = 0xff;
791
Huang Rui6b6a0c92014-10-31 11:11:12 +0800792 /* default to -3.5dB de-emphasis */
793 tx_de_emphasis = 1;
794
Huang Rui460d0982014-10-31 11:11:18 +0800795 /*
796 * default to assert utmi_sleep_n and use maximum allowed HIRD
797 * threshold value of 0b1100
798 */
799 hird_threshold = 12;
800
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500801 if (node) {
802 dwc->maximum_speed = of_usb_get_maximum_speed(node);
Huang Rui80caf7d2014-10-28 19:54:26 +0800803 dwc->has_lpm_erratum = of_property_read_bool(node,
804 "snps,has-lpm-erratum");
805 of_property_read_u8(node, "snps,lpm-nyet-threshold",
806 &lpm_nyet_threshold);
Huang Rui460d0982014-10-31 11:11:18 +0800807 dwc->is_utmi_l1_suspend = of_property_read_bool(node,
808 "snps,is-utmi-l1-suspend");
809 of_property_read_u8(node, "snps,hird-threshold",
810 &hird_threshold);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500811
Huang Rui80caf7d2014-10-28 19:54:26 +0800812 dwc->needs_fifo_resize = of_property_read_bool(node,
813 "tx-fifo-resize");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500814 dwc->dr_mode = of_usb_get_dr_mode(node);
Huang Rui3b812212014-10-28 19:54:25 +0800815
816 dwc->disable_scramble_quirk = of_property_read_bool(node,
817 "snps,disable_scramble_quirk");
Huang Rui9a5b2f32014-10-28 19:54:27 +0800818 dwc->u2exit_lfps_quirk = of_property_read_bool(node,
819 "snps,u2exit_lfps_quirk");
Huang Ruib5a65c42014-10-28 19:54:28 +0800820 dwc->u2ss_inp3_quirk = of_property_read_bool(node,
821 "snps,u2ss_inp3_quirk");
Huang Ruidf31f5b2014-10-28 19:54:29 +0800822 dwc->req_p1p2p3_quirk = of_property_read_bool(node,
823 "snps,req_p1p2p3_quirk");
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800824 dwc->del_p1p2p3_quirk = of_property_read_bool(node,
825 "snps,del_p1p2p3_quirk");
Huang Rui41c06ff2014-10-28 19:54:31 +0800826 dwc->del_phy_power_chg_quirk = of_property_read_bool(node,
827 "snps,del_phy_power_chg_quirk");
Huang Ruifb67afc2014-10-28 19:54:32 +0800828 dwc->lfps_filter_quirk = of_property_read_bool(node,
829 "snps,lfps_filter_quirk");
Huang Rui14f4ac52014-10-28 19:54:33 +0800830 dwc->rx_detect_poll_quirk = of_property_read_bool(node,
831 "snps,rx_detect_poll_quirk");
Huang Rui59acfa22014-10-31 11:11:13 +0800832 dwc->dis_u3_susphy_quirk = of_property_read_bool(node,
833 "snps,dis_u3_susphy_quirk");
Huang Rui0effe0a2014-10-31 11:11:14 +0800834 dwc->dis_u2_susphy_quirk = of_property_read_bool(node,
835 "snps,dis_u2_susphy_quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +0800836
837 dwc->tx_de_emphasis_quirk = of_property_read_bool(node,
838 "snps,tx_de_emphasis_quirk");
839 of_property_read_u8(node, "snps,tx_de_emphasis",
840 &tx_de_emphasis);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500841 } else if (pdata) {
842 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800843 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
844 if (pdata->lpm_nyet_threshold)
845 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Huang Rui460d0982014-10-31 11:11:18 +0800846 dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
847 if (pdata->hird_threshold)
848 hird_threshold = pdata->hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500849
850 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
851 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800852
853 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800854 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800855 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800856 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800857 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800858 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800859 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Huang Rui14f4ac52014-10-28 19:54:33 +0800860 dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk;
Huang Rui59acfa22014-10-31 11:11:13 +0800861 dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk;
Huang Rui0effe0a2014-10-31 11:11:14 +0800862 dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800863
864 dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk;
865 if (pdata->tx_de_emphasis)
866 tx_de_emphasis = pdata->tx_de_emphasis;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500867 }
868
869 /* default to superspeed if no maximum_speed passed */
870 if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
871 dwc->maximum_speed = USB_SPEED_SUPER;
872
Huang Rui80caf7d2014-10-28 19:54:26 +0800873 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800874 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +0800875
Huang Rui460d0982014-10-31 11:11:18 +0800876 dwc->hird_threshold = hird_threshold
877 | (dwc->is_utmi_l1_suspend << 4);
878
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500879 ret = dwc3_core_get_phy(dwc);
880 if (ret)
881 return ret;
882
Felipe Balbi72246da2011-08-19 18:10:58 +0300883 spin_lock_init(&dwc->lock);
884 platform_set_drvdata(pdev, dwc);
885
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300886 if (!dev->dma_mask) {
887 dev->dma_mask = dev->parent->dma_mask;
888 dev->dma_parms = dev->parent->dma_parms;
889 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
890 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530891
Chanho Park802ca852012-02-15 18:27:55 +0900892 pm_runtime_enable(dev);
893 pm_runtime_get_sync(dev);
894 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300895
Kishon Vijay Abraham I4fd24482012-11-16 12:07:54 +0530896 dwc3_cache_hwparams(dwc);
897
Felipe Balbi39214262012-10-11 13:54:36 +0300898 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
899 if (ret) {
900 dev_err(dwc->dev, "failed to allocate event buffers\n");
901 ret = -ENOMEM;
902 goto err0;
903 }
904
Felipe Balbi32a4a132014-02-25 14:00:13 -0600905 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
906 dwc->dr_mode = USB_DR_MODE_HOST;
907 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
908 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
909
910 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
911 dwc->dr_mode = USB_DR_MODE_OTG;
912
Felipe Balbi72246da2011-08-19 18:10:58 +0300913 ret = dwc3_core_init(dwc);
914 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900915 dev_err(dev, "failed to initialize core\n");
Felipe Balbi39214262012-10-11 13:54:36 +0300916 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300917 }
918
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530919 usb_phy_set_suspend(dwc->usb2_phy, 0);
920 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530921 ret = phy_power_on(dwc->usb2_generic_phy);
922 if (ret < 0)
923 goto err1;
924
925 ret = phy_power_on(dwc->usb3_generic_phy);
926 if (ret < 0)
927 goto err_usb2phy_power;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +0530928
Felipe Balbif122d332013-02-08 15:15:11 +0200929 ret = dwc3_event_buffers_setup(dwc);
930 if (ret) {
931 dev_err(dwc->dev, "failed to setup event buffers\n");
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530932 goto err_usb3phy_power;
Felipe Balbif122d332013-02-08 15:15:11 +0200933 }
934
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500935 ret = dwc3_core_init_mode(dwc);
936 if (ret)
Felipe Balbif122d332013-02-08 15:15:11 +0200937 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +0300938
939 ret = dwc3_debugfs_init(dwc);
940 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900941 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbif122d332013-02-08 15:15:11 +0200942 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +0300943 }
944
Chanho Park802ca852012-02-15 18:27:55 +0900945 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300946
947 return 0;
948
Felipe Balbif122d332013-02-08 15:15:11 +0200949err3:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500950 dwc3_core_exit_mode(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300951
Felipe Balbif122d332013-02-08 15:15:11 +0200952err2:
953 dwc3_event_buffers_cleanup(dwc);
954
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530955err_usb3phy_power:
956 phy_power_off(dwc->usb3_generic_phy);
957
958err_usb2phy_power:
959 phy_power_off(dwc->usb2_generic_phy);
960
Chanho Park802ca852012-02-15 18:27:55 +0900961err1:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +0530962 usb_phy_set_suspend(dwc->usb2_phy, 1);
963 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300964 dwc3_core_exit(dwc);
965
Felipe Balbi39214262012-10-11 13:54:36 +0300966err0:
967 dwc3_free_event_buffers(dwc);
968
Felipe Balbi72246da2011-08-19 18:10:58 +0300969 return ret;
970}
971
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500972static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +0300973{
Felipe Balbi72246da2011-08-19 18:10:58 +0300974 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300975
Felipe Balbidc99f162014-09-03 16:13:37 -0500976 dwc3_debugfs_exit(dwc);
977 dwc3_core_exit_mode(dwc);
978 dwc3_event_buffers_cleanup(dwc);
979 dwc3_free_event_buffers(dwc);
980
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530981 usb_phy_set_suspend(dwc->usb2_phy, 1);
982 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530983 phy_power_off(dwc->usb2_generic_phy);
984 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +0530985
Felipe Balbi72246da2011-08-19 18:10:58 +0300986 dwc3_core_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300987
Felipe Balbi7415f172012-04-30 14:56:33 +0300988 pm_runtime_put_sync(&pdev->dev);
989 pm_runtime_disable(&pdev->dev);
990
Felipe Balbi72246da2011-08-19 18:10:58 +0300991 return 0;
992}
993
Felipe Balbi7415f172012-04-30 14:56:33 +0300994#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +0300995static int dwc3_suspend(struct device *dev)
996{
997 struct dwc3 *dwc = dev_get_drvdata(dev);
998 unsigned long flags;
999
1000 spin_lock_irqsave(&dwc->lock, flags);
1001
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001002 switch (dwc->dr_mode) {
1003 case USB_DR_MODE_PERIPHERAL:
1004 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001005 dwc3_gadget_suspend(dwc);
1006 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001007 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001008 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001009 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001010 break;
1011 }
1012
1013 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
1014 spin_unlock_irqrestore(&dwc->lock, flags);
1015
1016 usb_phy_shutdown(dwc->usb3_phy);
1017 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301018 phy_exit(dwc->usb2_generic_phy);
1019 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +03001020
1021 return 0;
1022}
1023
1024static int dwc3_resume(struct device *dev)
1025{
1026 struct dwc3 *dwc = dev_get_drvdata(dev);
1027 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301028 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001029
1030 usb_phy_init(dwc->usb3_phy);
1031 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301032 ret = phy_init(dwc->usb2_generic_phy);
1033 if (ret < 0)
1034 return ret;
1035
1036 ret = phy_init(dwc->usb3_generic_phy);
1037 if (ret < 0)
1038 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +03001039
1040 spin_lock_irqsave(&dwc->lock, flags);
1041
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001042 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001043 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
1044
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001045 switch (dwc->dr_mode) {
1046 case USB_DR_MODE_PERIPHERAL:
1047 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001048 dwc3_gadget_resume(dwc);
1049 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001050 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001051 default:
1052 /* do nothing */
1053 break;
1054 }
1055
1056 spin_unlock_irqrestore(&dwc->lock, flags);
1057
1058 pm_runtime_disable(dev);
1059 pm_runtime_set_active(dev);
1060 pm_runtime_enable(dev);
1061
1062 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301063
1064err_usb2phy_init:
1065 phy_exit(dwc->usb2_generic_phy);
1066
1067 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001068}
1069
1070static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001071 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
1072};
1073
1074#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
1075#else
1076#define DWC3_PM_OPS NULL
1077#endif
1078
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301079#ifdef CONFIG_OF
1080static const struct of_device_id of_dwc3_match[] = {
1081 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001082 .compatible = "snps,dwc3"
1083 },
1084 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301085 .compatible = "synopsys,dwc3"
1086 },
1087 { },
1088};
1089MODULE_DEVICE_TABLE(of, of_dwc3_match);
1090#endif
1091
Heikki Krogerus404905a2014-09-25 10:57:02 +03001092#ifdef CONFIG_ACPI
1093
1094#define ACPI_ID_INTEL_BSW "808622B7"
1095
1096static const struct acpi_device_id dwc3_acpi_match[] = {
1097 { ACPI_ID_INTEL_BSW, 0 },
1098 { },
1099};
1100MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1101#endif
1102
Felipe Balbi72246da2011-08-19 18:10:58 +03001103static struct platform_driver dwc3_driver = {
1104 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001105 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001106 .driver = {
1107 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301108 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001109 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001110 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001111 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001112};
1113
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001114module_platform_driver(dwc3_driver);
1115
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001116MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001117MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001118MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001119MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");