blob: ade2ab00d37ab1255a168b5f5e8d0911c1051a2f [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Felipe Balbi72246da2011-08-19 18:10:58 +03002/**
3 * core.c - DesignWare USB3 DRD Controller Core file
4 *
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03006 *
7 * Authors: Felipe Balbi <balbi@ti.com>,
8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Felipe Balbi72246da2011-08-19 18:10:58 +03009 */
10
Felipe Balbifa0ea132014-09-19 15:51:11 -050011#include <linux/version.h>
Felipe Balbia72e6582011-09-05 13:37:28 +030012#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030013#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <linux/spinlock.h>
16#include <linux/platform_device.h>
17#include <linux/pm_runtime.h>
18#include <linux/interrupt.h>
19#include <linux/ioport.h>
20#include <linux/io.h>
21#include <linux/list.h>
22#include <linux/delay.h>
23#include <linux/dma-mapping.h>
Felipe Balbi457e84b2012-01-18 18:04:09 +020024#include <linux/of.h>
Heikki Krogerus404905a2014-09-25 10:57:02 +030025#include <linux/acpi.h>
Sekhar Nori63444752015-08-31 21:09:08 +053026#include <linux/pinctrl/consumer.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030027
28#include <linux/usb/ch9.h>
29#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030030#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050031#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030032
33#include "core.h"
34#include "gadget.h"
35#include "io.h"
36
37#include "debug.h"
38
Felipe Balbifc8bb912016-05-16 13:14:48 +030039#define DWC3_DEFAULT_AUTOSUSPEND_DELAY 5000 /* ms */
Felipe Balbi8300dd22011-10-18 13:54:01 +030040
Thinh Nguyen9d6173e2016-09-06 19:22:03 -070041/**
42 * dwc3_get_dr_mode - Validates and sets dr_mode
43 * @dwc: pointer to our context structure
44 */
45static int dwc3_get_dr_mode(struct dwc3 *dwc)
46{
47 enum usb_dr_mode mode;
48 struct device *dev = dwc->dev;
49 unsigned int hw_mode;
50
51 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
52 dwc->dr_mode = USB_DR_MODE_OTG;
53
54 mode = dwc->dr_mode;
55 hw_mode = DWC3_GHWPARAMS0_MODE(dwc->hwparams.hwparams0);
56
57 switch (hw_mode) {
58 case DWC3_GHWPARAMS0_MODE_GADGET:
59 if (IS_ENABLED(CONFIG_USB_DWC3_HOST)) {
60 dev_err(dev,
61 "Controller does not support host mode.\n");
62 return -EINVAL;
63 }
64 mode = USB_DR_MODE_PERIPHERAL;
65 break;
66 case DWC3_GHWPARAMS0_MODE_HOST:
67 if (IS_ENABLED(CONFIG_USB_DWC3_GADGET)) {
68 dev_err(dev,
69 "Controller does not support device mode.\n");
70 return -EINVAL;
71 }
72 mode = USB_DR_MODE_HOST;
73 break;
74 default:
75 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
76 mode = USB_DR_MODE_HOST;
77 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
78 mode = USB_DR_MODE_PERIPHERAL;
79 }
80
81 if (mode != dwc->dr_mode) {
82 dev_warn(dev,
83 "Configuration mismatch. dr_mode forced to %s\n",
84 mode == USB_DR_MODE_HOST ? "host" : "gadget");
85
86 dwc->dr_mode = mode;
87 }
88
89 return 0;
90}
91
Roger Quadros41ce1452017-04-04 12:49:18 +030092static void dwc3_event_buffers_cleanup(struct dwc3 *dwc);
93static int dwc3_event_buffers_setup(struct dwc3 *dwc);
94
95static void dwc3_set_prtcap(struct dwc3 *dwc, u32 mode)
Sebastian Andrzej Siewior3140e8cb2011-10-31 22:25:40 +010096{
97 u32 reg;
98
99 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
100 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
101 reg |= DWC3_GCTL_PRTCAPDIR(mode);
102 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
Roger Quadros41ce1452017-04-04 12:49:18 +0300103}
Roger Quadros6b3261a2017-04-04 11:25:27 +0300104
Roger Quadros41ce1452017-04-04 12:49:18 +0300105static void __dwc3_set_mode(struct work_struct *work)
106{
107 struct dwc3 *dwc = work_to_dwc(work);
108 unsigned long flags;
109 int ret;
110
111 if (!dwc->desired_dr_role)
112 return;
113
114 if (dwc->desired_dr_role == dwc->current_dr_role)
115 return;
116
117 if (dwc->dr_mode != USB_DR_MODE_OTG)
118 return;
119
120 switch (dwc->current_dr_role) {
121 case DWC3_GCTL_PRTCAP_HOST:
122 dwc3_host_exit(dwc);
123 break;
124 case DWC3_GCTL_PRTCAP_DEVICE:
125 dwc3_gadget_exit(dwc);
126 dwc3_event_buffers_cleanup(dwc);
127 break;
128 default:
129 break;
130 }
131
132 spin_lock_irqsave(&dwc->lock, flags);
133
134 dwc3_set_prtcap(dwc, dwc->desired_dr_role);
135
136 dwc->current_dr_role = dwc->desired_dr_role;
137
138 spin_unlock_irqrestore(&dwc->lock, flags);
139
140 switch (dwc->desired_dr_role) {
141 case DWC3_GCTL_PRTCAP_HOST:
142 ret = dwc3_host_init(dwc);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300143 if (ret) {
Roger Quadros41ce1452017-04-04 12:49:18 +0300144 dev_err(dwc->dev, "failed to initialize host\n");
Felipe Balbi958d1a42017-06-05 17:22:10 +0300145 } else {
146 if (dwc->usb2_phy)
147 otg_set_vbus(dwc->usb2_phy->otg, true);
Manu Gautam644cbbc2017-09-27 16:49:22 +0530148 phy_set_mode(dwc->usb2_generic_phy, PHY_MODE_USB_HOST);
149 phy_set_mode(dwc->usb3_generic_phy, PHY_MODE_USB_HOST);
Vivek Gautamd8c80bb2017-10-09 14:00:51 +0200150 phy_calibrate(dwc->usb2_generic_phy);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300151 }
Roger Quadros41ce1452017-04-04 12:49:18 +0300152 break;
153 case DWC3_GCTL_PRTCAP_DEVICE:
154 dwc3_event_buffers_setup(dwc);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300155
156 if (dwc->usb2_phy)
157 otg_set_vbus(dwc->usb2_phy->otg, false);
Manu Gautam644cbbc2017-09-27 16:49:22 +0530158 phy_set_mode(dwc->usb2_generic_phy, PHY_MODE_USB_DEVICE);
159 phy_set_mode(dwc->usb3_generic_phy, PHY_MODE_USB_DEVICE);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300160
Roger Quadros41ce1452017-04-04 12:49:18 +0300161 ret = dwc3_gadget_init(dwc);
162 if (ret)
163 dev_err(dwc->dev, "failed to initialize peripheral\n");
164 break;
165 default:
166 break;
167 }
168}
169
170void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
171{
172 unsigned long flags;
173
174 spin_lock_irqsave(&dwc->lock, flags);
175 dwc->desired_dr_role = mode;
176 spin_unlock_irqrestore(&dwc->lock, flags);
177
178 queue_work(system_power_efficient_wq, &dwc->drd_work);
Sebastian Andrzej Siewior3140e8cb2011-10-31 22:25:40 +0100179}
Felipe Balbi8300dd22011-10-18 13:54:01 +0300180
Felipe Balbicf6d8672016-04-14 15:03:39 +0300181u32 dwc3_core_fifo_space(struct dwc3_ep *dep, u8 type)
182{
183 struct dwc3 *dwc = dep->dwc;
184 u32 reg;
185
186 dwc3_writel(dwc->regs, DWC3_GDBGFIFOSPACE,
187 DWC3_GDBGFIFOSPACE_NUM(dep->number) |
188 DWC3_GDBGFIFOSPACE_TYPE(type));
189
190 reg = dwc3_readl(dwc->regs, DWC3_GDBGFIFOSPACE);
191
192 return DWC3_GDBGFIFOSPACE_SPACE_AVAILABLE(reg);
193}
194
Felipe Balbi72246da2011-08-19 18:10:58 +0300195/**
196 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
197 * @dwc: pointer to our context structure
198 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530199static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300200{
201 u32 reg;
Felipe Balbif59dcab2016-03-11 10:51:52 +0200202 int retries = 1000;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530203 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300204
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300205 usb_phy_init(dwc->usb2_phy);
206 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530207 ret = phy_init(dwc->usb2_generic_phy);
208 if (ret < 0)
209 return ret;
210
211 ret = phy_init(dwc->usb3_generic_phy);
212 if (ret < 0) {
213 phy_exit(dwc->usb2_generic_phy);
214 return ret;
215 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300216
Felipe Balbif59dcab2016-03-11 10:51:52 +0200217 /*
218 * We're resetting only the device side because, if we're in host mode,
219 * XHCI driver will reset the host block. If dwc3 was configured for
220 * host-only mode, then we can return early.
221 */
222 if (dwc->dr_mode == USB_DR_MODE_HOST)
223 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300224
Felipe Balbif59dcab2016-03-11 10:51:52 +0200225 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
226 reg |= DWC3_DCTL_CSFTRST;
227 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300228
Felipe Balbif59dcab2016-03-11 10:51:52 +0200229 do {
230 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
231 if (!(reg & DWC3_DCTL_CSFTRST))
232 return 0;
Pratyush Anand45627ac2012-06-21 17:44:28 +0530233
Felipe Balbif59dcab2016-03-11 10:51:52 +0200234 udelay(1);
235 } while (--retries);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530236
Felipe Balbif59dcab2016-03-11 10:51:52 +0200237 return -ETIMEDOUT;
Felipe Balbi72246da2011-08-19 18:10:58 +0300238}
239
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530240/*
241 * dwc3_frame_length_adjustment - Adjusts frame length if required
242 * @dwc3: Pointer to our controller context structure
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530243 */
Felipe Balbibcdb3272016-05-16 10:42:23 +0300244static void dwc3_frame_length_adjustment(struct dwc3 *dwc)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530245{
246 u32 reg;
247 u32 dft;
248
249 if (dwc->revision < DWC3_REVISION_250A)
250 return;
251
Felipe Balbibcdb3272016-05-16 10:42:23 +0300252 if (dwc->fladj == 0)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530253 return;
254
255 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
256 dft = reg & DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300257 if (!dev_WARN_ONCE(dwc->dev, dft == dwc->fladj,
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530258 "request value same as default, ignoring\n")) {
259 reg &= ~DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300260 reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL | dwc->fladj;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530261 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
262 }
263}
264
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300265/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300266 * dwc3_free_one_event_buffer - Frees one event buffer
267 * @dwc: Pointer to our controller context structure
268 * @evt: Pointer to event buffer to be freed
269 */
270static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
271 struct dwc3_event_buffer *evt)
272{
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530273 dma_free_coherent(dwc->sysdev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300274}
275
276/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800277 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300278 * @dwc: Pointer to our controller context structure
279 * @length: size of the event buffer
280 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800281 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300282 * otherwise ERR_PTR(errno).
283 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200284static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
285 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300286{
287 struct dwc3_event_buffer *evt;
288
Felipe Balbi380f0d22012-10-11 13:48:36 +0300289 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300290 if (!evt)
291 return ERR_PTR(-ENOMEM);
292
293 evt->dwc = dwc;
294 evt->length = length;
John Yound9fa4c62016-11-15 12:54:15 +0200295 evt->cache = devm_kzalloc(dwc->dev, length, GFP_KERNEL);
296 if (!evt->cache)
297 return ERR_PTR(-ENOMEM);
298
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530299 evt->buf = dma_alloc_coherent(dwc->sysdev, length,
Felipe Balbi72246da2011-08-19 18:10:58 +0300300 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200301 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300302 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300303
304 return evt;
305}
306
307/**
308 * dwc3_free_event_buffers - frees all allocated event buffers
309 * @dwc: Pointer to our controller context structure
310 */
311static void dwc3_free_event_buffers(struct dwc3 *dwc)
312{
313 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300314
Felipe Balbi696c8b12016-03-30 09:37:03 +0300315 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300316 if (evt)
317 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300318}
319
320/**
321 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800322 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300323 * @length: size of event buffer
324 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800325 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300326 * may contain some buffers allocated but not all which were requested.
327 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500328static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300329{
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300330 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300331
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300332 evt = dwc3_alloc_one_event_buffer(dwc, length);
333 if (IS_ERR(evt)) {
334 dev_err(dwc->dev, "can't allocate event buffer\n");
335 return PTR_ERR(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300336 }
Felipe Balbi696c8b12016-03-30 09:37:03 +0300337 dwc->ev_buf = evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300338
339 return 0;
340}
341
342/**
343 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800344 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300345 *
346 * Returns 0 on success otherwise negative errno.
347 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300348static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300349{
350 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300351
Felipe Balbi696c8b12016-03-30 09:37:03 +0300352 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300353 evt->lpos = 0;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300354 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0),
355 lower_32_bits(evt->dma));
356 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0),
357 upper_32_bits(evt->dma));
358 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0),
359 DWC3_GEVNTSIZ_SIZE(evt->length));
360 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300361
362 return 0;
363}
364
365static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
366{
367 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300368
Felipe Balbi696c8b12016-03-30 09:37:03 +0300369 evt = dwc->ev_buf;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300370
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300371 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300372
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300373 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0), 0);
374 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0), 0);
375 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), DWC3_GEVNTSIZ_INTMASK
376 | DWC3_GEVNTSIZ_SIZE(0));
377 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300378}
379
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600380static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
381{
382 if (!dwc->has_hibernation)
383 return 0;
384
385 if (!dwc->nr_scratch)
386 return 0;
387
388 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
389 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
390 if (!dwc->scratchbuf)
391 return -ENOMEM;
392
393 return 0;
394}
395
396static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
397{
398 dma_addr_t scratch_addr;
399 u32 param;
400 int ret;
401
402 if (!dwc->has_hibernation)
403 return 0;
404
405 if (!dwc->nr_scratch)
406 return 0;
407
408 /* should never fall here */
409 if (!WARN_ON(dwc->scratchbuf))
410 return 0;
411
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530412 scratch_addr = dma_map_single(dwc->sysdev, dwc->scratchbuf,
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600413 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
414 DMA_BIDIRECTIONAL);
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530415 if (dma_mapping_error(dwc->sysdev, scratch_addr)) {
416 dev_err(dwc->sysdev, "failed to map scratch buffer\n");
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600417 ret = -EFAULT;
418 goto err0;
419 }
420
421 dwc->scratch_addr = scratch_addr;
422
423 param = lower_32_bits(scratch_addr);
424
425 ret = dwc3_send_gadget_generic_command(dwc,
426 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
427 if (ret < 0)
428 goto err1;
429
430 param = upper_32_bits(scratch_addr);
431
432 ret = dwc3_send_gadget_generic_command(dwc,
433 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
434 if (ret < 0)
435 goto err1;
436
437 return 0;
438
439err1:
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530440 dma_unmap_single(dwc->sysdev, dwc->scratch_addr, dwc->nr_scratch *
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600441 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
442
443err0:
444 return ret;
445}
446
447static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
448{
449 if (!dwc->has_hibernation)
450 return;
451
452 if (!dwc->nr_scratch)
453 return;
454
455 /* should never fall here */
456 if (!WARN_ON(dwc->scratchbuf))
457 return;
458
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530459 dma_unmap_single(dwc->sysdev, dwc->scratch_addr, dwc->nr_scratch *
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600460 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
461 kfree(dwc->scratchbuf);
462}
463
Felipe Balbi789451f62011-05-05 15:53:10 +0300464static void dwc3_core_num_eps(struct dwc3 *dwc)
465{
466 struct dwc3_hwparams *parms = &dwc->hwparams;
467
Bryan O'Donoghue47d39462017-01-31 20:58:10 +0000468 dwc->num_eps = DWC3_NUM_EPS(parms);
Felipe Balbi789451f62011-05-05 15:53:10 +0300469}
470
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500471static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300472{
473 struct dwc3_hwparams *parms = &dwc->hwparams;
474
475 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
476 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
477 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
478 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
479 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
480 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
481 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
482 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
483 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
484}
485
Felipe Balbi72246da2011-08-19 18:10:58 +0300486/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800487 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
488 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300489 *
490 * Returns 0 on success. The USB PHY interfaces are configured but not
491 * initialized. The PHY interfaces and the PHYs get initialized together with
492 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800493 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300494static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800495{
496 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300497 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800498
499 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
500
Huang Rui2164a472014-10-28 19:54:35 +0800501 /*
Felipe Balbi1966b862016-08-03 14:16:15 +0300502 * Make sure UX_EXIT_PX is cleared as that causes issues with some
503 * PHYs. Also, this bit is not supposed to be used in normal operation.
504 */
505 reg &= ~DWC3_GUSB3PIPECTL_UX_EXIT_PX;
506
507 /*
Huang Rui2164a472014-10-28 19:54:35 +0800508 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
509 * to '0' during coreConsultant configuration. So default value
510 * will be '0' when the core is reset. Application needs to set it
511 * to '1' after the core initialization is completed.
512 */
513 if (dwc->revision > DWC3_REVISION_194A)
514 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
515
Huang Ruib5a65c42014-10-28 19:54:28 +0800516 if (dwc->u2ss_inp3_quirk)
517 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
518
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530519 if (dwc->dis_rxdet_inp3_quirk)
520 reg |= DWC3_GUSB3PIPECTL_DISRXDETINP3;
521
Huang Ruidf31f5b2014-10-28 19:54:29 +0800522 if (dwc->req_p1p2p3_quirk)
523 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
524
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800525 if (dwc->del_p1p2p3_quirk)
526 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
527
Huang Rui41c06ff2014-10-28 19:54:31 +0800528 if (dwc->del_phy_power_chg_quirk)
529 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
530
Huang Ruifb67afc2014-10-28 19:54:32 +0800531 if (dwc->lfps_filter_quirk)
532 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
533
Huang Rui14f4ac52014-10-28 19:54:33 +0800534 if (dwc->rx_detect_poll_quirk)
535 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
536
Huang Rui6b6a0c92014-10-31 11:11:12 +0800537 if (dwc->tx_de_emphasis_quirk)
538 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
539
Felipe Balbicd72f892014-11-06 11:31:00 -0600540 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800541 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
542
William Wu00fe0812016-08-16 22:44:39 +0800543 if (dwc->dis_del_phy_power_chg_quirk)
544 reg &= ~DWC3_GUSB3PIPECTL_DEPOCHANGE;
545
Huang Ruib5a65c42014-10-28 19:54:28 +0800546 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
547
Huang Rui2164a472014-10-28 19:54:35 +0800548 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
549
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300550 /* Select the HS PHY interface */
551 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
552 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500553 if (dwc->hsphy_interface &&
554 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300555 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300556 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500557 } else if (dwc->hsphy_interface &&
558 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300559 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300560 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300561 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300562 /* Relying on default value. */
563 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
564 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300565 }
566 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300567 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300568 ret = dwc3_ulpi_init(dwc);
569 if (ret)
570 return ret;
571 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300572 default:
573 break;
574 }
575
William Wu32f2ed82016-08-16 22:44:38 +0800576 switch (dwc->hsphy_mode) {
577 case USBPHY_INTERFACE_MODE_UTMI:
578 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
579 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
580 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_8_BIT) |
581 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_8_BIT);
582 break;
583 case USBPHY_INTERFACE_MODE_UTMIW:
584 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
585 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
586 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_16_BIT) |
587 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_16_BIT);
588 break;
589 default:
590 break;
591 }
592
Huang Rui2164a472014-10-28 19:54:35 +0800593 /*
594 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
595 * '0' during coreConsultant configuration. So default value will
596 * be '0' when the core is reset. Application needs to set it to
597 * '1' after the core initialization is completed.
598 */
599 if (dwc->revision > DWC3_REVISION_194A)
600 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
601
Felipe Balbicd72f892014-11-06 11:31:00 -0600602 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800603 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
604
John Younec791d12015-10-02 20:30:57 -0700605 if (dwc->dis_enblslpm_quirk)
606 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
607
William Wu16199f32016-08-16 22:44:37 +0800608 if (dwc->dis_u2_freeclk_exists_quirk)
609 reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
610
Huang Rui2164a472014-10-28 19:54:35 +0800611 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300612
613 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800614}
615
Felipe Balbic499ff72016-05-16 10:49:01 +0300616static void dwc3_core_exit(struct dwc3 *dwc)
617{
618 dwc3_event_buffers_cleanup(dwc);
619
620 usb_phy_shutdown(dwc->usb2_phy);
621 usb_phy_shutdown(dwc->usb3_phy);
622 phy_exit(dwc->usb2_generic_phy);
623 phy_exit(dwc->usb3_generic_phy);
624
625 usb_phy_set_suspend(dwc->usb2_phy, 1);
626 usb_phy_set_suspend(dwc->usb3_phy, 1);
627 phy_power_off(dwc->usb2_generic_phy);
628 phy_power_off(dwc->usb3_generic_phy);
629}
630
Felipe Balbi07599562016-10-14 16:19:01 +0300631static bool dwc3_core_is_valid(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300632{
Felipe Balbi07599562016-10-14 16:19:01 +0300633 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300634
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200635 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
Felipe Balbi07599562016-10-14 16:19:01 +0300636
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200637 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700638 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
639 /* Detected DWC_usb3 IP */
640 dwc->revision = reg;
641 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
642 /* Detected DWC_usb31 IP */
643 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
644 dwc->revision |= DWC3_REVISION_IS_DWC31;
645 } else {
Felipe Balbi07599562016-10-14 16:19:01 +0300646 return false;
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200647 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200648
Felipe Balbi07599562016-10-14 16:19:01 +0300649 return true;
650}
Felipe Balbifa0ea132014-09-19 15:51:11 -0500651
Felipe Balbi941f9182016-10-14 16:23:24 +0300652static void dwc3_core_setup_global_control(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300653{
Felipe Balbi941f9182016-10-14 16:23:24 +0300654 u32 hwparams4 = dwc->hwparams.hwparams4;
655 u32 reg;
Felipe Balbic499ff72016-05-16 10:49:01 +0300656
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100657 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800658 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100659
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100660 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100661 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600662 /**
663 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
664 * issue which would cause xHCI compliance tests to fail.
665 *
666 * Because of that we cannot enable clock gating on such
667 * configurations.
668 *
669 * Refers to:
670 *
671 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
672 * SOF/ITP Mode Used
673 */
674 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
675 dwc->dr_mode == USB_DR_MODE_OTG) &&
676 (dwc->revision >= DWC3_REVISION_210A &&
677 dwc->revision <= DWC3_REVISION_250A))
678 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
679 else
680 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100681 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600682 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
683 /* enable hibernation here */
684 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800685
686 /*
687 * REVISIT Enabling this bit so that host-mode hibernation
688 * will work. Device-mode hibernation is not yet implemented.
689 */
690 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600691 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100692 default:
Felipe Balbi5eb30ce2016-11-03 14:07:51 +0200693 /* nothing */
694 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100695 }
696
Huang Rui946bd572014-10-28 19:54:23 +0800697 /* check if current dwc3 is on simulation board */
698 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi5eb30ce2016-11-03 14:07:51 +0200699 dev_info(dwc->dev, "Running with FPGA optmizations\n");
Huang Rui946bd572014-10-28 19:54:23 +0800700 dwc->is_fpga = true;
701 }
702
Huang Rui3b812212014-10-28 19:54:25 +0800703 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
704 "disable_scramble cannot be used on non-FPGA builds\n");
705
706 if (dwc->disable_scramble_quirk && dwc->is_fpga)
707 reg |= DWC3_GCTL_DISSCRAMBLE;
708 else
709 reg &= ~DWC3_GCTL_DISSCRAMBLE;
710
Huang Rui9a5b2f32014-10-28 19:54:27 +0800711 if (dwc->u2exit_lfps_quirk)
712 reg |= DWC3_GCTL_U2EXIT_LFPS;
713
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100714 /*
715 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800716 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100717 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800718 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100719 */
720 if (dwc->revision < DWC3_REVISION_190A)
721 reg |= DWC3_GCTL_U2RSTECN;
722
723 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
Felipe Balbi941f9182016-10-14 16:23:24 +0300724}
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100725
Felipe Balbif54edb52017-06-05 17:03:18 +0300726static int dwc3_core_get_phy(struct dwc3 *dwc);
727
Felipe Balbi941f9182016-10-14 16:23:24 +0300728/**
729 * dwc3_core_init - Low-level initialization of DWC3 Core
730 * @dwc: Pointer to our controller context structure
731 *
732 * Returns 0 on success otherwise negative errno.
733 */
734static int dwc3_core_init(struct dwc3 *dwc)
735{
736 u32 reg;
737 int ret;
738
739 if (!dwc3_core_is_valid(dwc)) {
740 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
741 ret = -ENODEV;
742 goto err0;
743 }
744
745 /*
746 * Write Linux Version Code to our GUID register so it's easy to figure
747 * out which kernel version a bug was found.
748 */
749 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
750
751 /* Handle USB2.0-only core configuration */
752 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
753 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
754 if (dwc->maximum_speed == USB_SPEED_SUPER)
755 dwc->maximum_speed = USB_SPEED_HIGH;
756 }
757
Vignesh R541768b2017-06-29 10:55:14 +0530758 ret = dwc3_core_get_phy(dwc);
759 if (ret)
760 goto err0;
761
Felipe Balbi941f9182016-10-14 16:23:24 +0300762 ret = dwc3_core_soft_reset(dwc);
763 if (ret)
764 goto err0;
765
766 ret = dwc3_phy_setup(dwc);
767 if (ret)
768 goto err0;
769
770 dwc3_core_setup_global_control(dwc);
Felipe Balbic499ff72016-05-16 10:49:01 +0300771 dwc3_core_num_eps(dwc);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600772
773 ret = dwc3_setup_scratch_buffers(dwc);
774 if (ret)
Felipe Balbic499ff72016-05-16 10:49:01 +0300775 goto err1;
776
777 /* Adjust Frame Length */
778 dwc3_frame_length_adjustment(dwc);
779
780 usb_phy_set_suspend(dwc->usb2_phy, 0);
781 usb_phy_set_suspend(dwc->usb3_phy, 0);
782 ret = phy_power_on(dwc->usb2_generic_phy);
783 if (ret < 0)
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600784 goto err2;
785
Felipe Balbic499ff72016-05-16 10:49:01 +0300786 ret = phy_power_on(dwc->usb3_generic_phy);
787 if (ret < 0)
788 goto err3;
789
790 ret = dwc3_event_buffers_setup(dwc);
791 if (ret) {
792 dev_err(dwc->dev, "failed to setup event buffers\n");
793 goto err4;
794 }
795
John Youn06281d42016-08-22 15:39:13 -0700796 /*
797 * ENDXFER polling is available on version 3.10a and later of
798 * the DWC_usb3 controller. It is NOT available in the
799 * DWC_usb31 controller.
800 */
801 if (!dwc3_is_usb31(dwc) && dwc->revision >= DWC3_REVISION_310A) {
802 reg = dwc3_readl(dwc->regs, DWC3_GUCTL2);
803 reg |= DWC3_GUCTL2_RST_ACTBITLATER;
804 dwc3_writel(dwc->regs, DWC3_GUCTL2, reg);
805 }
806
William Wu65db7a02017-04-19 20:11:38 +0800807 if (dwc->revision >= DWC3_REVISION_250A) {
John Youn0bb39ca2016-10-12 18:00:55 -0700808 reg = dwc3_readl(dwc->regs, DWC3_GUCTL1);
William Wu65db7a02017-04-19 20:11:38 +0800809
810 /*
811 * Enable hardware control of sending remote wakeup
812 * in HS when the device is in the L1 state.
813 */
814 if (dwc->revision >= DWC3_REVISION_290A)
815 reg |= DWC3_GUCTL1_DEV_L1_EXIT_BY_HW;
816
817 if (dwc->dis_tx_ipgap_linecheck_quirk)
818 reg |= DWC3_GUCTL1_TX_IPGAP_LINECHECK_DIS;
819
John Youn0bb39ca2016-10-12 18:00:55 -0700820 dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
821 }
822
Felipe Balbi72246da2011-08-19 18:10:58 +0300823 return 0;
824
Felipe Balbic499ff72016-05-16 10:49:01 +0300825err4:
Vivek Gautam9b9d7cd2016-10-21 16:21:07 +0530826 phy_power_off(dwc->usb3_generic_phy);
Felipe Balbic499ff72016-05-16 10:49:01 +0300827
828err3:
Vivek Gautam9b9d7cd2016-10-21 16:21:07 +0530829 phy_power_off(dwc->usb2_generic_phy);
Felipe Balbic499ff72016-05-16 10:49:01 +0300830
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600831err2:
Felipe Balbic499ff72016-05-16 10:49:01 +0300832 usb_phy_set_suspend(dwc->usb2_phy, 1);
833 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600834
835err1:
836 usb_phy_shutdown(dwc->usb2_phy);
837 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530838 phy_exit(dwc->usb2_generic_phy);
839 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600840
Felipe Balbi72246da2011-08-19 18:10:58 +0300841err0:
842 return ret;
843}
844
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500845static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300846{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500847 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300848 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500849 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300850
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530851 if (node) {
852 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
853 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500854 } else {
855 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
856 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530857 }
858
Felipe Balbid105e7f2013-03-15 10:52:08 +0200859 if (IS_ERR(dwc->usb2_phy)) {
860 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530861 if (ret == -ENXIO || ret == -ENODEV) {
862 dwc->usb2_phy = NULL;
863 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200864 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530865 } else {
866 dev_err(dev, "no usb2 phy configured\n");
867 return ret;
868 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300869 }
870
Felipe Balbid105e7f2013-03-15 10:52:08 +0200871 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500872 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530873 if (ret == -ENXIO || ret == -ENODEV) {
874 dwc->usb3_phy = NULL;
875 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200876 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530877 } else {
878 dev_err(dev, "no usb3 phy configured\n");
879 return ret;
880 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300881 }
882
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530883 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
884 if (IS_ERR(dwc->usb2_generic_phy)) {
885 ret = PTR_ERR(dwc->usb2_generic_phy);
886 if (ret == -ENOSYS || ret == -ENODEV) {
887 dwc->usb2_generic_phy = NULL;
888 } else if (ret == -EPROBE_DEFER) {
889 return ret;
890 } else {
891 dev_err(dev, "no usb2 phy configured\n");
892 return ret;
893 }
894 }
895
896 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
897 if (IS_ERR(dwc->usb3_generic_phy)) {
898 ret = PTR_ERR(dwc->usb3_generic_phy);
899 if (ret == -ENOSYS || ret == -ENODEV) {
900 dwc->usb3_generic_phy = NULL;
901 } else if (ret == -EPROBE_DEFER) {
902 return ret;
903 } else {
904 dev_err(dev, "no usb3 phy configured\n");
905 return ret;
906 }
907 }
908
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500909 return 0;
910}
911
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500912static int dwc3_core_init_mode(struct dwc3 *dwc)
913{
914 struct device *dev = dwc->dev;
915 int ret;
916
917 switch (dwc->dr_mode) {
918 case USB_DR_MODE_PERIPHERAL:
Manu Gautam689bf722017-09-27 16:49:20 +0530919 dwc->current_dr_role = DWC3_GCTL_PRTCAP_DEVICE;
Roger Quadros41ce1452017-04-04 12:49:18 +0300920 dwc3_set_prtcap(dwc, DWC3_GCTL_PRTCAP_DEVICE);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300921
922 if (dwc->usb2_phy)
923 otg_set_vbus(dwc->usb2_phy->otg, false);
Manu Gautam644cbbc2017-09-27 16:49:22 +0530924 phy_set_mode(dwc->usb2_generic_phy, PHY_MODE_USB_DEVICE);
925 phy_set_mode(dwc->usb3_generic_phy, PHY_MODE_USB_DEVICE);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300926
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500927 ret = dwc3_gadget_init(dwc);
928 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300929 if (ret != -EPROBE_DEFER)
930 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500931 return ret;
932 }
933 break;
934 case USB_DR_MODE_HOST:
Manu Gautam689bf722017-09-27 16:49:20 +0530935 dwc->current_dr_role = DWC3_GCTL_PRTCAP_HOST;
Roger Quadros41ce1452017-04-04 12:49:18 +0300936 dwc3_set_prtcap(dwc, DWC3_GCTL_PRTCAP_HOST);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300937
938 if (dwc->usb2_phy)
939 otg_set_vbus(dwc->usb2_phy->otg, true);
Manu Gautam644cbbc2017-09-27 16:49:22 +0530940 phy_set_mode(dwc->usb2_generic_phy, PHY_MODE_USB_HOST);
941 phy_set_mode(dwc->usb3_generic_phy, PHY_MODE_USB_HOST);
Felipe Balbi958d1a42017-06-05 17:22:10 +0300942
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500943 ret = dwc3_host_init(dwc);
944 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300945 if (ret != -EPROBE_DEFER)
946 dev_err(dev, "failed to initialize host\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500947 return ret;
948 }
Vivek Gautamd8c80bb2017-10-09 14:00:51 +0200949 phy_calibrate(dwc->usb2_generic_phy);
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500950 break;
951 case USB_DR_MODE_OTG:
Roger Quadros41ce1452017-04-04 12:49:18 +0300952 INIT_WORK(&dwc->drd_work, __dwc3_set_mode);
Roger Quadros98403542017-04-05 13:39:31 +0300953 ret = dwc3_drd_init(dwc);
954 if (ret) {
955 if (ret != -EPROBE_DEFER)
956 dev_err(dev, "failed to initialize dual-role\n");
957 return ret;
958 }
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500959 break;
960 default:
961 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
962 return -EINVAL;
963 }
964
965 return 0;
966}
967
968static void dwc3_core_exit_mode(struct dwc3 *dwc)
969{
970 switch (dwc->dr_mode) {
971 case USB_DR_MODE_PERIPHERAL:
972 dwc3_gadget_exit(dwc);
973 break;
974 case USB_DR_MODE_HOST:
975 dwc3_host_exit(dwc);
976 break;
977 case USB_DR_MODE_OTG:
Roger Quadros98403542017-04-05 13:39:31 +0300978 dwc3_drd_exit(dwc);
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500979 break;
980 default:
981 /* do nothing */
982 break;
983 }
984}
985
Felipe Balbic5ac6112016-10-14 16:30:52 +0300986static void dwc3_get_properties(struct dwc3 *dwc)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500987{
Felipe Balbic5ac6112016-10-14 16:30:52 +0300988 struct device *dev = dwc->dev;
Huang Rui80caf7d2014-10-28 19:54:26 +0800989 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800990 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800991 u8 hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500992
Huang Rui80caf7d2014-10-28 19:54:26 +0800993 /* default to highest possible threshold */
994 lpm_nyet_threshold = 0xff;
995
Huang Rui6b6a0c92014-10-31 11:11:12 +0800996 /* default to -3.5dB de-emphasis */
997 tx_de_emphasis = 1;
998
Huang Rui460d0982014-10-31 11:11:18 +0800999 /*
1000 * default to assert utmi_sleep_n and use maximum allowed HIRD
1001 * threshold value of 0b1100
1002 */
1003 hird_threshold = 12;
1004
Heikki Krogerus63863b92015-09-21 11:14:32 +03001005 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +03001006 dwc->dr_mode = usb_get_dr_mode(dev);
William Wu32f2ed82016-08-16 22:44:38 +08001007 dwc->hsphy_mode = of_usb_get_phy_mode(dev->of_node);
Heikki Krogerus63863b92015-09-21 11:14:32 +03001008
Arnd Bergmannd64ff402016-11-17 17:13:47 +05301009 dwc->sysdev_is_parent = device_property_read_bool(dev,
1010 "linux,sysdev_is_parent");
1011 if (dwc->sysdev_is_parent)
1012 dwc->sysdev = dwc->dev->parent;
1013 else
1014 dwc->sysdev = dwc->dev;
1015
Heikki Krogerus3d128912015-09-21 11:14:35 +03001016 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +08001017 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001018 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +08001019 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001020 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +08001021 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001022 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +08001023 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001024 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +01001025 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001026
Heikki Krogerus3d128912015-09-21 11:14:35 +03001027 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +08001028 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001029 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +08001030 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001031 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +08001032 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001033 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +08001034 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001035 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +08001036 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001037 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +08001038 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001039 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +08001040 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001041 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +08001042 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001043 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +08001044 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001045 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +08001046 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -07001047 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
1048 "snps,dis_enblslpm_quirk");
Rajesh Bhagate58dd352016-03-14 14:40:50 +05301049 dwc->dis_rxdet_inp3_quirk = device_property_read_bool(dev,
1050 "snps,dis_rxdet_inp3_quirk");
William Wu16199f32016-08-16 22:44:37 +08001051 dwc->dis_u2_freeclk_exists_quirk = device_property_read_bool(dev,
1052 "snps,dis-u2-freeclk-exists-quirk");
William Wu00fe0812016-08-16 22:44:39 +08001053 dwc->dis_del_phy_power_chg_quirk = device_property_read_bool(dev,
1054 "snps,dis-del-phy-power-chg-quirk");
William Wu65db7a02017-04-19 20:11:38 +08001055 dwc->dis_tx_ipgap_linecheck_quirk = device_property_read_bool(dev,
1056 "snps,dis-tx-ipgap-linecheck-quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +08001057
Heikki Krogerus3d128912015-09-21 11:14:35 +03001058 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +08001059 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001060 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +08001061 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001062 device_property_read_string(dev, "snps,hsphy_interface",
1063 &dwc->hsphy_interface);
1064 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
Felipe Balbibcdb3272016-05-16 10:42:23 +03001065 &dwc->fladj);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001066
Roger Quadros42bf02e2017-10-31 15:11:55 +02001067 dwc->dis_metastability_quirk = device_property_read_bool(dev,
1068 "snps,dis_metastability_quirk");
1069
Huang Rui80caf7d2014-10-28 19:54:26 +08001070 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +08001071 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +08001072
Huang Rui460d0982014-10-31 11:11:18 +08001073 dwc->hird_threshold = hird_threshold
1074 | (dwc->is_utmi_l1_suspend << 4);
1075
John Youncf40b862016-11-14 12:32:43 -08001076 dwc->imod_interval = 0;
1077}
1078
1079/* check whether the core supports IMOD */
1080bool dwc3_has_imod(struct dwc3 *dwc)
1081{
1082 return ((dwc3_is_usb3(dwc) &&
1083 dwc->revision >= DWC3_REVISION_300A) ||
1084 (dwc3_is_usb31(dwc) &&
1085 dwc->revision >= DWC3_USB31_REVISION_120A));
Felipe Balbic5ac6112016-10-14 16:30:52 +03001086}
1087
John Youn7ac51a12016-11-10 17:08:51 -08001088static void dwc3_check_params(struct dwc3 *dwc)
1089{
1090 struct device *dev = dwc->dev;
1091
John Youncf40b862016-11-14 12:32:43 -08001092 /* Check for proper value of imod_interval */
1093 if (dwc->imod_interval && !dwc3_has_imod(dwc)) {
1094 dev_warn(dwc->dev, "Interrupt moderation not supported\n");
1095 dwc->imod_interval = 0;
1096 }
1097
John Youn28632b42016-11-14 12:32:45 -08001098 /*
1099 * Workaround for STAR 9000961433 which affects only version
1100 * 3.00a of the DWC_usb3 core. This prevents the controller
1101 * interrupt from being masked while handling events. IMOD
1102 * allows us to work around this issue. Enable it for the
1103 * affected version.
1104 */
1105 if (!dwc->imod_interval &&
1106 (dwc->revision == DWC3_REVISION_300A))
1107 dwc->imod_interval = 1;
1108
John Youn7ac51a12016-11-10 17:08:51 -08001109 /* Check the maximum_speed parameter */
1110 switch (dwc->maximum_speed) {
1111 case USB_SPEED_LOW:
1112 case USB_SPEED_FULL:
1113 case USB_SPEED_HIGH:
1114 case USB_SPEED_SUPER:
1115 case USB_SPEED_SUPER_PLUS:
1116 break;
1117 default:
1118 dev_err(dev, "invalid maximum_speed parameter %d\n",
1119 dwc->maximum_speed);
1120 /* fall through */
1121 case USB_SPEED_UNKNOWN:
1122 /* default to superspeed */
1123 dwc->maximum_speed = USB_SPEED_SUPER;
1124
1125 /*
1126 * default to superspeed plus if we are capable.
1127 */
1128 if (dwc3_is_usb31(dwc) &&
1129 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1130 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1131 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
1132
1133 break;
1134 }
1135}
1136
Felipe Balbic5ac6112016-10-14 16:30:52 +03001137static int dwc3_probe(struct platform_device *pdev)
1138{
1139 struct device *dev = &pdev->dev;
1140 struct resource *res;
1141 struct dwc3 *dwc;
1142
1143 int ret;
1144
1145 void __iomem *regs;
1146
1147 dwc = devm_kzalloc(dev, sizeof(*dwc), GFP_KERNEL);
1148 if (!dwc)
1149 return -ENOMEM;
1150
1151 dwc->dev = dev;
1152
1153 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1154 if (!res) {
1155 dev_err(dev, "missing memory resource\n");
1156 return -ENODEV;
1157 }
1158
1159 dwc->xhci_resources[0].start = res->start;
1160 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
1161 DWC3_XHCI_REGS_END;
1162 dwc->xhci_resources[0].flags = res->flags;
1163 dwc->xhci_resources[0].name = res->name;
1164
1165 res->start += DWC3_GLOBALS_REGS_START;
1166
1167 /*
1168 * Request memory region but exclude xHCI regs,
1169 * since it will be requested by the xhci-plat driver.
1170 */
1171 regs = devm_ioremap_resource(dev, res);
1172 if (IS_ERR(regs)) {
1173 ret = PTR_ERR(regs);
1174 goto err0;
1175 }
1176
1177 dwc->regs = regs;
1178 dwc->regs_size = resource_size(res);
1179
1180 dwc3_get_properties(dwc);
1181
Heikki Krogerus6c89cce02015-05-13 15:26:45 +03001182 platform_set_drvdata(pdev, dwc);
Heikki Krogerus2917e712015-05-13 15:26:46 +03001183 dwc3_cache_hwparams(dwc);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +03001184
Felipe Balbi72246da2011-08-19 18:10:58 +03001185 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +03001186
Felipe Balbifc8bb912016-05-16 13:14:48 +03001187 pm_runtime_set_active(dev);
1188 pm_runtime_use_autosuspend(dev);
1189 pm_runtime_set_autosuspend_delay(dev, DWC3_DEFAULT_AUTOSUSPEND_DELAY);
Chanho Park802ca852012-02-15 18:27:55 +09001190 pm_runtime_enable(dev);
Roger Quadros32808232016-06-10 14:38:02 +03001191 ret = pm_runtime_get_sync(dev);
1192 if (ret < 0)
1193 goto err1;
1194
Chanho Park802ca852012-02-15 18:27:55 +09001195 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001196
Felipe Balbi39214262012-10-11 13:54:36 +03001197 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
1198 if (ret) {
1199 dev_err(dwc->dev, "failed to allocate event buffers\n");
1200 ret = -ENOMEM;
Roger Quadros32808232016-06-10 14:38:02 +03001201 goto err2;
Felipe Balbi39214262012-10-11 13:54:36 +03001202 }
1203
Thinh Nguyen9d6173e2016-09-06 19:22:03 -07001204 ret = dwc3_get_dr_mode(dwc);
1205 if (ret)
1206 goto err3;
Felipe Balbi32a4a132014-02-25 14:00:13 -06001207
Felipe Balbic499ff72016-05-16 10:49:01 +03001208 ret = dwc3_alloc_scratch_buffers(dwc);
1209 if (ret)
Roger Quadros32808232016-06-10 14:38:02 +03001210 goto err3;
Felipe Balbic499ff72016-05-16 10:49:01 +03001211
Felipe Balbi72246da2011-08-19 18:10:58 +03001212 ret = dwc3_core_init(dwc);
1213 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +09001214 dev_err(dev, "failed to initialize core\n");
Roger Quadros32808232016-06-10 14:38:02 +03001215 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03001216 }
1217
John Youn7ac51a12016-11-10 17:08:51 -08001218 dwc3_check_params(dwc);
John Youn2c7f1bd2016-02-05 17:08:59 -08001219
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001220 ret = dwc3_core_init_mode(dwc);
1221 if (ret)
Roger Quadros32808232016-06-10 14:38:02 +03001222 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03001223
Du, Changbin4e9f3112016-04-12 19:10:18 +08001224 dwc3_debugfs_init(dwc);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001225 pm_runtime_put(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001226
1227 return 0;
1228
Roger Quadros32808232016-06-10 14:38:02 +03001229err5:
Felipe Balbif122d332013-02-08 15:15:11 +02001230 dwc3_event_buffers_cleanup(dwc);
1231
Roger Quadros32808232016-06-10 14:38:02 +03001232err4:
Felipe Balbic499ff72016-05-16 10:49:01 +03001233 dwc3_free_scratch_buffers(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001234
Roger Quadros32808232016-06-10 14:38:02 +03001235err3:
Felipe Balbi39214262012-10-11 13:54:36 +03001236 dwc3_free_event_buffers(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001237 dwc3_ulpi_exit(dwc);
Felipe Balbi39214262012-10-11 13:54:36 +03001238
Roger Quadros32808232016-06-10 14:38:02 +03001239err2:
1240 pm_runtime_allow(&pdev->dev);
1241
1242err1:
1243 pm_runtime_put_sync(&pdev->dev);
1244 pm_runtime_disable(&pdev->dev);
1245
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001246err0:
1247 /*
1248 * restore res->start back to its original value so that, in case the
1249 * probe is deferred, we don't end up getting error in request the
1250 * memory region the next time probe is called.
1251 */
1252 res->start -= DWC3_GLOBALS_REGS_START;
1253
Felipe Balbi72246da2011-08-19 18:10:58 +03001254 return ret;
1255}
1256
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001257static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001258{
Felipe Balbi72246da2011-08-19 18:10:58 +03001259 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001260 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1261
Felipe Balbifc8bb912016-05-16 13:14:48 +03001262 pm_runtime_get_sync(&pdev->dev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001263 /*
1264 * restore res->start back to its original value so that, in case the
1265 * probe is deferred, we don't end up getting error in request the
1266 * memory region the next time probe is called.
1267 */
1268 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001269
Felipe Balbidc99f162014-09-03 16:13:37 -05001270 dwc3_debugfs_exit(dwc);
1271 dwc3_core_exit_mode(dwc);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301272
Felipe Balbi72246da2011-08-19 18:10:58 +03001273 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001274 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001275
Felipe Balbifc8bb912016-05-16 13:14:48 +03001276 pm_runtime_put_sync(&pdev->dev);
1277 pm_runtime_allow(&pdev->dev);
1278 pm_runtime_disable(&pdev->dev);
1279
Felipe Balbic499ff72016-05-16 10:49:01 +03001280 dwc3_free_event_buffers(dwc);
1281 dwc3_free_scratch_buffers(dwc);
1282
Felipe Balbi72246da2011-08-19 18:10:58 +03001283 return 0;
1284}
1285
Felipe Balbifc8bb912016-05-16 13:14:48 +03001286#ifdef CONFIG_PM
1287static int dwc3_suspend_common(struct dwc3 *dwc)
Felipe Balbi7415f172012-04-30 14:56:33 +03001288{
Felipe Balbifc8bb912016-05-16 13:14:48 +03001289 unsigned long flags;
Felipe Balbi7415f172012-04-30 14:56:33 +03001290
Manu Gautam689bf722017-09-27 16:49:20 +05301291 switch (dwc->current_dr_role) {
1292 case DWC3_GCTL_PRTCAP_DEVICE:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001293 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7415f172012-04-30 14:56:33 +03001294 dwc3_gadget_suspend(dwc);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001295 spin_unlock_irqrestore(&dwc->lock, flags);
Manu Gautam689bf722017-09-27 16:49:20 +05301296 dwc3_core_exit(dwc);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001297 break;
Manu Gautam689bf722017-09-27 16:49:20 +05301298 case DWC3_GCTL_PRTCAP_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001299 default:
Felipe Balbi51f5d492016-05-16 10:52:58 +03001300 /* do nothing */
Felipe Balbi7415f172012-04-30 14:56:33 +03001301 break;
1302 }
1303
Felipe Balbifc8bb912016-05-16 13:14:48 +03001304 return 0;
1305}
1306
1307static int dwc3_resume_common(struct dwc3 *dwc)
1308{
1309 unsigned long flags;
1310 int ret;
1311
Manu Gautam689bf722017-09-27 16:49:20 +05301312 switch (dwc->current_dr_role) {
1313 case DWC3_GCTL_PRTCAP_DEVICE:
1314 ret = dwc3_core_init(dwc);
1315 if (ret)
1316 return ret;
Felipe Balbifc8bb912016-05-16 13:14:48 +03001317
Felipe Balbifc8bb912016-05-16 13:14:48 +03001318 spin_lock_irqsave(&dwc->lock, flags);
1319 dwc3_gadget_resume(dwc);
1320 spin_unlock_irqrestore(&dwc->lock, flags);
Manu Gautam689bf722017-09-27 16:49:20 +05301321 break;
1322 case DWC3_GCTL_PRTCAP_HOST:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001323 default:
1324 /* do nothing */
1325 break;
1326 }
1327
1328 return 0;
1329}
1330
1331static int dwc3_runtime_checks(struct dwc3 *dwc)
1332{
Manu Gautam689bf722017-09-27 16:49:20 +05301333 switch (dwc->current_dr_role) {
Felipe Balbifc8bb912016-05-16 13:14:48 +03001334 case USB_DR_MODE_PERIPHERAL:
1335 case USB_DR_MODE_OTG:
1336 if (dwc->connected)
1337 return -EBUSY;
1338 break;
1339 case USB_DR_MODE_HOST:
1340 default:
1341 /* do nothing */
1342 break;
1343 }
1344
1345 return 0;
1346}
1347
1348static int dwc3_runtime_suspend(struct device *dev)
1349{
1350 struct dwc3 *dwc = dev_get_drvdata(dev);
1351 int ret;
1352
1353 if (dwc3_runtime_checks(dwc))
1354 return -EBUSY;
1355
1356 ret = dwc3_suspend_common(dwc);
1357 if (ret)
1358 return ret;
1359
1360 device_init_wakeup(dev, true);
1361
1362 return 0;
1363}
1364
1365static int dwc3_runtime_resume(struct device *dev)
1366{
1367 struct dwc3 *dwc = dev_get_drvdata(dev);
1368 int ret;
1369
1370 device_init_wakeup(dev, false);
1371
1372 ret = dwc3_resume_common(dwc);
1373 if (ret)
1374 return ret;
1375
Manu Gautam689bf722017-09-27 16:49:20 +05301376 switch (dwc->current_dr_role) {
1377 case DWC3_GCTL_PRTCAP_DEVICE:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001378 dwc3_gadget_process_pending_events(dwc);
1379 break;
Manu Gautam689bf722017-09-27 16:49:20 +05301380 case DWC3_GCTL_PRTCAP_HOST:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001381 default:
1382 /* do nothing */
1383 break;
1384 }
1385
1386 pm_runtime_mark_last_busy(dev);
1387
1388 return 0;
1389}
1390
1391static int dwc3_runtime_idle(struct device *dev)
1392{
1393 struct dwc3 *dwc = dev_get_drvdata(dev);
1394
Manu Gautam689bf722017-09-27 16:49:20 +05301395 switch (dwc->current_dr_role) {
1396 case DWC3_GCTL_PRTCAP_DEVICE:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001397 if (dwc3_runtime_checks(dwc))
1398 return -EBUSY;
1399 break;
Manu Gautam689bf722017-09-27 16:49:20 +05301400 case DWC3_GCTL_PRTCAP_HOST:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001401 default:
1402 /* do nothing */
1403 break;
1404 }
1405
1406 pm_runtime_mark_last_busy(dev);
1407 pm_runtime_autosuspend(dev);
1408
1409 return 0;
1410}
1411#endif /* CONFIG_PM */
1412
1413#ifdef CONFIG_PM_SLEEP
1414static int dwc3_suspend(struct device *dev)
1415{
1416 struct dwc3 *dwc = dev_get_drvdata(dev);
1417 int ret;
1418
1419 ret = dwc3_suspend_common(dwc);
1420 if (ret)
1421 return ret;
1422
Sekhar Nori63444752015-08-31 21:09:08 +05301423 pinctrl_pm_select_sleep_state(dev);
1424
Felipe Balbi7415f172012-04-30 14:56:33 +03001425 return 0;
1426}
1427
1428static int dwc3_resume(struct device *dev)
1429{
1430 struct dwc3 *dwc = dev_get_drvdata(dev);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301431 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001432
Sekhar Nori63444752015-08-31 21:09:08 +05301433 pinctrl_pm_select_default_state(dev);
1434
Felipe Balbifc8bb912016-05-16 13:14:48 +03001435 ret = dwc3_resume_common(dwc);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001436 if (ret)
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001437 return ret;
1438
Felipe Balbi7415f172012-04-30 14:56:33 +03001439 pm_runtime_disable(dev);
1440 pm_runtime_set_active(dev);
1441 pm_runtime_enable(dev);
1442
1443 return 0;
1444}
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001445#endif /* CONFIG_PM_SLEEP */
Felipe Balbi7415f172012-04-30 14:56:33 +03001446
1447static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001448 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
Felipe Balbifc8bb912016-05-16 13:14:48 +03001449 SET_RUNTIME_PM_OPS(dwc3_runtime_suspend, dwc3_runtime_resume,
1450 dwc3_runtime_idle)
Felipe Balbi7415f172012-04-30 14:56:33 +03001451};
1452
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301453#ifdef CONFIG_OF
1454static const struct of_device_id of_dwc3_match[] = {
1455 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001456 .compatible = "snps,dwc3"
1457 },
1458 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301459 .compatible = "synopsys,dwc3"
1460 },
1461 { },
1462};
1463MODULE_DEVICE_TABLE(of, of_dwc3_match);
1464#endif
1465
Heikki Krogerus404905a2014-09-25 10:57:02 +03001466#ifdef CONFIG_ACPI
1467
1468#define ACPI_ID_INTEL_BSW "808622B7"
1469
1470static const struct acpi_device_id dwc3_acpi_match[] = {
1471 { ACPI_ID_INTEL_BSW, 0 },
1472 { },
1473};
1474MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1475#endif
1476
Felipe Balbi72246da2011-08-19 18:10:58 +03001477static struct platform_driver dwc3_driver = {
1478 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001479 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001480 .driver = {
1481 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301482 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001483 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001484 .pm = &dwc3_dev_pm_ops,
Felipe Balbi72246da2011-08-19 18:10:58 +03001485 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001486};
1487
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001488module_platform_driver(dwc3_driver);
1489
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001490MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001491MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001492MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001493MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");