blob: 98f277e62c406963f45736a081f47a237c6ec0e2 [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * core.c - DesignWare USB3 DRD Controller Core file
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 *
Felipe Balbi5945f782013-06-30 14:15:11 +030018 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Felipe Balbi72246da2011-08-19 18:10:58 +030020 */
21
Felipe Balbifa0ea132014-09-19 15:51:11 -050022#include <linux/version.h>
Felipe Balbia72e6582011-09-05 13:37:28 +030023#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030024#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
27#include <linux/platform_device.h>
28#include <linux/pm_runtime.h>
29#include <linux/interrupt.h>
30#include <linux/ioport.h>
31#include <linux/io.h>
32#include <linux/list.h>
33#include <linux/delay.h>
34#include <linux/dma-mapping.h>
Felipe Balbi457e84b2012-01-18 18:04:09 +020035#include <linux/of.h>
Heikki Krogerus404905a2014-09-25 10:57:02 +030036#include <linux/acpi.h>
Sekhar Nori63444752015-08-31 21:09:08 +053037#include <linux/pinctrl/consumer.h>
Mayank Ranaa99689a2016-08-10 17:39:47 -070038#include <linux/irq.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030039
40#include <linux/usb/ch9.h>
41#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030042#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050043#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030044
45#include "core.h"
46#include "gadget.h"
47#include "io.h"
48
49#include "debug.h"
50
Felipe Balbifc8bb912016-05-16 13:14:48 +030051#define DWC3_DEFAULT_AUTOSUSPEND_DELAY 5000 /* ms */
Felipe Balbi8300dd22011-10-18 13:54:01 +030052
Mayank Ranaa99689a2016-08-10 17:39:47 -070053void dwc3_usb3_phy_suspend(struct dwc3 *dwc, int suspend)
54{
55 u32 reg;
56
57 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
58
59 if (suspend)
60 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
61 else
62 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
63
64 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
65}
66
Thinh Nguyen9d6173e2016-09-06 19:22:03 -070067/**
68 * dwc3_get_dr_mode - Validates and sets dr_mode
69 * @dwc: pointer to our context structure
70 */
71static int dwc3_get_dr_mode(struct dwc3 *dwc)
72{
73 enum usb_dr_mode mode;
74 struct device *dev = dwc->dev;
75 unsigned int hw_mode;
76
Thinh Nguyen9d6173e2016-09-06 19:22:03 -070077
Mayank Ranafb9cd932016-11-03 23:26:38 -070078 dwc->is_drd = 0;
Thinh Nguyen9d6173e2016-09-06 19:22:03 -070079 mode = dwc->dr_mode;
80 hw_mode = DWC3_GHWPARAMS0_MODE(dwc->hwparams.hwparams0);
81
82 switch (hw_mode) {
83 case DWC3_GHWPARAMS0_MODE_GADGET:
84 if (IS_ENABLED(CONFIG_USB_DWC3_HOST)) {
85 dev_err(dev,
86 "Controller does not support host mode.\n");
87 return -EINVAL;
88 }
89 mode = USB_DR_MODE_PERIPHERAL;
90 break;
91 case DWC3_GHWPARAMS0_MODE_HOST:
92 if (IS_ENABLED(CONFIG_USB_DWC3_GADGET)) {
93 dev_err(dev,
94 "Controller does not support device mode.\n");
95 return -EINVAL;
96 }
97 mode = USB_DR_MODE_HOST;
98 break;
99 default:
100 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
101 mode = USB_DR_MODE_HOST;
102 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
103 mode = USB_DR_MODE_PERIPHERAL;
104 }
105
106 if (mode != dwc->dr_mode) {
107 dev_warn(dev,
108 "Configuration mismatch. dr_mode forced to %s\n",
109 mode == USB_DR_MODE_HOST ? "host" : "gadget");
110
111 dwc->dr_mode = mode;
112 }
113
Mayank Ranafb9cd932016-11-03 23:26:38 -0700114 if (dwc->dr_mode == USB_DR_MODE_OTG)
115 dwc->is_drd = 1;
116
Thinh Nguyen9d6173e2016-09-06 19:22:03 -0700117 return 0;
118}
119
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +0100120void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
121{
122 u32 reg;
123
124 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
125 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
126 reg |= DWC3_GCTL_PRTCAPDIR(mode);
127 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
Mayank Ranaa99689a2016-08-10 17:39:47 -0700128
129 /*
130 * Set this bit so that device attempts three more times at SS, even
131 * if it failed previously to operate in SS mode.
132 */
133 reg |= DWC3_GCTL_U2RSTECN;
134 reg &= ~(DWC3_GCTL_SOFITPSYNC);
135 reg &= ~(DWC3_GCTL_PWRDNSCALEMASK);
136 reg |= DWC3_GCTL_PWRDNSCALE(2);
137 reg |= DWC3_GCTL_U2EXIT_LFPS;
138 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
139
140 if (mode == DWC3_GCTL_PRTCAP_OTG || mode == DWC3_GCTL_PRTCAP_HOST) {
141 /*
142 * Allow ITP generated off of ref clk based counter instead
143 * of UTMI/ULPI clk based counter, when superspeed only is
144 * active so that UTMI/ULPI PHY can be suspened.
145 *
146 * Starting with revision 2.50A, GFLADJ_REFCLK_LPM_SEL is used
147 * instead.
148 */
149 if (dwc->revision < DWC3_REVISION_250A) {
150 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
151 reg |= DWC3_GCTL_SOFITPSYNC;
152 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
153 } else {
154 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
155 reg |= DWC3_GFLADJ_REFCLK_LPM_SEL;
156 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
157 }
158 }
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +0100159}
Felipe Balbi8300dd22011-10-18 13:54:01 +0300160
Felipe Balbicf6d8672016-04-14 15:03:39 +0300161u32 dwc3_core_fifo_space(struct dwc3_ep *dep, u8 type)
162{
163 struct dwc3 *dwc = dep->dwc;
164 u32 reg;
165
166 dwc3_writel(dwc->regs, DWC3_GDBGFIFOSPACE,
167 DWC3_GDBGFIFOSPACE_NUM(dep->number) |
168 DWC3_GDBGFIFOSPACE_TYPE(type));
169
170 reg = dwc3_readl(dwc->regs, DWC3_GDBGFIFOSPACE);
171
172 return DWC3_GDBGFIFOSPACE_SPACE_AVAILABLE(reg);
173}
174
Felipe Balbi72246da2011-08-19 18:10:58 +0300175/**
Mayank Ranaa99689a2016-08-10 17:39:47 -0700176 * Peforms initialization of HS and SS PHYs.
177 * If used as a part of POR or init sequence it is recommended
178 * that we should perform hard reset of the PHYs prior to invoking
179 * this function.
Felipe Balbi72246da2011-08-19 18:10:58 +0300180 * @dwc: pointer to our context structure
Mayank Ranaa99689a2016-08-10 17:39:47 -0700181*/
182static int dwc3_init_usb_phys(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300183{
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530184 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300185
Mayank Ranaa99689a2016-08-10 17:39:47 -0700186 /* Bring up PHYs */
187 ret = usb_phy_init(dwc->usb2_phy);
188 if (ret) {
189 pr_err("%s: usb_phy_init(dwc->usb2_phy) returned %d\n",
190 __func__, ret);
191 return ret;
192 }
193
194 ret = usb_phy_init(dwc->usb3_phy);
195 if (ret == -EBUSY) {
196 /*
197 * Setting Max speed as high when USB3 PHY initialiation
198 * is failing and USB superspeed can't be supported.
199 */
200 dwc->maximum_speed = USB_SPEED_HIGH;
201 } else if (ret) {
202 pr_err("%s: usb_phy_init(dwc->usb3_phy) returned %d\n",
203 __func__, ret);
204 return ret;
205 }
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530206 ret = phy_init(dwc->usb2_generic_phy);
207 if (ret < 0)
208 return ret;
209
210 ret = phy_init(dwc->usb3_generic_phy);
211 if (ret < 0) {
212 phy_exit(dwc->usb2_generic_phy);
213 return ret;
214 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300215
Mayank Ranaa99689a2016-08-10 17:39:47 -0700216 return 0;
217}
Felipe Balbi72246da2011-08-19 18:10:58 +0300218
Mayank Ranaa99689a2016-08-10 17:39:47 -0700219/**
220 * dwc3_core_reset - Issues core soft reset and PHY reset
221 * @dwc: pointer to our context structure
222 */
223static int dwc3_core_reset(struct dwc3 *dwc)
224{
225 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300226
Mayank Ranaa99689a2016-08-10 17:39:47 -0700227 /* Reset PHYs */
228 usb_phy_reset(dwc->usb2_phy);
229 usb_phy_reset(dwc->usb3_phy);
Pratyush Anand45627ac2012-06-21 17:44:28 +0530230
Mayank Ranaa99689a2016-08-10 17:39:47 -0700231 /* Initialize PHYs */
232 ret = dwc3_init_usb_phys(dwc);
233 if (ret) {
234 pr_err("%s: dwc3_init_phys returned %d\n",
235 __func__, ret);
236 return ret;
237 }
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530238
Mayank Ranaa99689a2016-08-10 17:39:47 -0700239 dwc3_notify_event(dwc, DWC3_CONTROLLER_RESET_EVENT);
240
241 dwc3_notify_event(dwc, DWC3_CONTROLLER_POST_RESET_EVENT);
242
243 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300244}
245
246/**
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300247 * dwc3_soft_reset - Issue soft reset
248 * @dwc: Pointer to our controller context structure
249 */
250static int dwc3_soft_reset(struct dwc3 *dwc)
251{
252 unsigned long timeout;
253 u32 reg;
254
255 timeout = jiffies + msecs_to_jiffies(500);
256 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
257 do {
258 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
259 if (!(reg & DWC3_DCTL_CSFTRST))
260 break;
261
262 if (time_after(jiffies, timeout)) {
263 dev_err(dwc->dev, "Reset Timed Out\n");
264 return -ETIMEDOUT;
265 }
266
267 cpu_relax();
268 } while (true);
269
270 return 0;
271}
272
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530273/*
274 * dwc3_frame_length_adjustment - Adjusts frame length if required
275 * @dwc3: Pointer to our controller context structure
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530276 */
Felipe Balbibcdb3272016-05-16 10:42:23 +0300277static void dwc3_frame_length_adjustment(struct dwc3 *dwc)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530278{
279 u32 reg;
280 u32 dft;
281
282 if (dwc->revision < DWC3_REVISION_250A)
283 return;
284
Felipe Balbibcdb3272016-05-16 10:42:23 +0300285 if (dwc->fladj == 0)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530286 return;
287
288 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
289 dft = reg & DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300290 if (!dev_WARN_ONCE(dwc->dev, dft == dwc->fladj,
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530291 "request value same as default, ignoring\n")) {
292 reg &= ~DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300293 reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL | dwc->fladj;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530294 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
295 }
296}
297
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300298/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300299 * dwc3_free_one_event_buffer - Frees one event buffer
300 * @dwc: Pointer to our controller context structure
301 * @evt: Pointer to event buffer to be freed
302 */
303static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
304 struct dwc3_event_buffer *evt)
305{
306 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300307}
308
309/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800310 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300311 * @dwc: Pointer to our controller context structure
312 * @length: size of the event buffer
313 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800314 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300315 * otherwise ERR_PTR(errno).
316 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200317static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
318 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300319{
320 struct dwc3_event_buffer *evt;
321
Felipe Balbi380f0d22012-10-11 13:48:36 +0300322 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300323 if (!evt)
324 return ERR_PTR(-ENOMEM);
325
326 evt->dwc = dwc;
327 evt->length = length;
328 evt->buf = dma_alloc_coherent(dwc->dev, length,
329 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200330 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300331 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300332
333 return evt;
334}
335
336/**
337 * dwc3_free_event_buffers - frees all allocated event buffers
338 * @dwc: Pointer to our controller context structure
339 */
340static void dwc3_free_event_buffers(struct dwc3 *dwc)
341{
342 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300343
Felipe Balbi696c8b12016-03-30 09:37:03 +0300344 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300345 if (evt)
346 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300347}
348
349/**
350 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800351 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300352 * @length: size of event buffer
353 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800354 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300355 * may contain some buffers allocated but not all which were requested.
356 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500357static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300358{
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300359 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300360
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300361 evt = dwc3_alloc_one_event_buffer(dwc, length);
362 if (IS_ERR(evt)) {
363 dev_err(dwc->dev, "can't allocate event buffer\n");
364 return PTR_ERR(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300365 }
Felipe Balbi696c8b12016-03-30 09:37:03 +0300366 dwc->ev_buf = evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300367
368 return 0;
369}
370
371/**
372 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800373 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300374 *
375 * Returns 0 on success otherwise negative errno.
376 */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700377int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300378{
379 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300380
Felipe Balbi696c8b12016-03-30 09:37:03 +0300381 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300382 dwc3_trace(trace_dwc3_core,
383 "Event buf %p dma %08llx length %d\n",
384 evt->buf, (unsigned long long) evt->dma,
385 evt->length);
Felipe Balbi72246da2011-08-19 18:10:58 +0300386
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300387 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300388
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300389 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0),
390 lower_32_bits(evt->dma));
391 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0),
392 upper_32_bits(evt->dma));
393 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0),
394 DWC3_GEVNTSIZ_SIZE(evt->length));
395 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300396
397 return 0;
398}
399
400static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
401{
402 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300403
Felipe Balbi696c8b12016-03-30 09:37:03 +0300404 evt = dwc->ev_buf;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300405
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300406 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300407
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300408 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0), 0);
409 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0), 0);
410 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), DWC3_GEVNTSIZ_INTMASK
411 | DWC3_GEVNTSIZ_SIZE(0));
412 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300413}
414
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600415static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
416{
417 if (!dwc->has_hibernation)
418 return 0;
419
420 if (!dwc->nr_scratch)
421 return 0;
422
423 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
424 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
425 if (!dwc->scratchbuf)
426 return -ENOMEM;
427
428 return 0;
429}
430
431static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
432{
433 dma_addr_t scratch_addr;
434 u32 param;
435 int ret;
436
437 if (!dwc->has_hibernation)
438 return 0;
439
440 if (!dwc->nr_scratch)
441 return 0;
442
443 /* should never fall here */
444 if (!WARN_ON(dwc->scratchbuf))
445 return 0;
446
447 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
448 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
449 DMA_BIDIRECTIONAL);
450 if (dma_mapping_error(dwc->dev, scratch_addr)) {
451 dev_err(dwc->dev, "failed to map scratch buffer\n");
452 ret = -EFAULT;
453 goto err0;
454 }
455
456 dwc->scratch_addr = scratch_addr;
457
458 param = lower_32_bits(scratch_addr);
459
460 ret = dwc3_send_gadget_generic_command(dwc,
461 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
462 if (ret < 0)
463 goto err1;
464
465 param = upper_32_bits(scratch_addr);
466
467 ret = dwc3_send_gadget_generic_command(dwc,
468 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
469 if (ret < 0)
470 goto err1;
471
472 return 0;
473
474err1:
475 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
476 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
477
478err0:
479 return ret;
480}
481
482static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
483{
484 if (!dwc->has_hibernation)
485 return;
486
487 if (!dwc->nr_scratch)
488 return;
489
490 /* should never fall here */
491 if (!WARN_ON(dwc->scratchbuf))
492 return;
493
494 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
495 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
496 kfree(dwc->scratchbuf);
497}
498
Felipe Balbi789451f62011-05-05 15:53:10 +0300499static void dwc3_core_num_eps(struct dwc3 *dwc)
500{
501 struct dwc3_hwparams *parms = &dwc->hwparams;
502
503 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
504 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
505
Felipe Balbi73815282015-01-27 13:48:14 -0600506 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300507 dwc->num_in_eps, dwc->num_out_eps);
508}
509
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500510static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300511{
512 struct dwc3_hwparams *parms = &dwc->hwparams;
513
514 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
515 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
516 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
517 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
518 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
519 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
520 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
521 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
522 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
523}
524
Felipe Balbi72246da2011-08-19 18:10:58 +0300525/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800526 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
527 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300528 *
529 * Returns 0 on success. The USB PHY interfaces are configured but not
530 * initialized. The PHY interfaces and the PHYs get initialized together with
531 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800532 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300533static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800534{
535 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300536 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800537
538 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
539
Huang Rui2164a472014-10-28 19:54:35 +0800540 /*
541 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
542 * to '0' during coreConsultant configuration. So default value
543 * will be '0' when the core is reset. Application needs to set it
544 * to '1' after the core initialization is completed.
545 */
546 if (dwc->revision > DWC3_REVISION_194A)
547 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
548
Huang Ruib5a65c42014-10-28 19:54:28 +0800549 if (dwc->u2ss_inp3_quirk)
550 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
551
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530552 if (dwc->dis_rxdet_inp3_quirk)
553 reg |= DWC3_GUSB3PIPECTL_DISRXDETINP3;
554
Huang Ruidf31f5b2014-10-28 19:54:29 +0800555 if (dwc->req_p1p2p3_quirk)
556 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
557
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800558 if (dwc->del_p1p2p3_quirk)
559 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
560
Huang Rui41c06ff2014-10-28 19:54:31 +0800561 if (dwc->del_phy_power_chg_quirk)
562 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
563
Huang Ruifb67afc2014-10-28 19:54:32 +0800564 if (dwc->lfps_filter_quirk)
565 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
566
Huang Rui14f4ac52014-10-28 19:54:33 +0800567 if (dwc->rx_detect_poll_quirk)
568 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
569
Huang Rui6b6a0c92014-10-31 11:11:12 +0800570 if (dwc->tx_de_emphasis_quirk)
571 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
572
Felipe Balbicd72f892014-11-06 11:31:00 -0600573 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800574 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
575
William Wu00fe0812016-08-16 22:44:39 +0800576 if (dwc->dis_del_phy_power_chg_quirk)
577 reg &= ~DWC3_GUSB3PIPECTL_DEPOCHANGE;
578
Huang Ruib5a65c42014-10-28 19:54:28 +0800579 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
580
Huang Rui2164a472014-10-28 19:54:35 +0800581 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
582
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300583 /* Select the HS PHY interface */
584 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
585 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500586 if (dwc->hsphy_interface &&
587 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300588 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300589 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500590 } else if (dwc->hsphy_interface &&
591 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300592 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300593 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300594 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300595 /* Relying on default value. */
596 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
597 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300598 }
599 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300600 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
601 /* Making sure the interface and PHY are operational */
602 ret = dwc3_soft_reset(dwc);
603 if (ret)
604 return ret;
605
606 udelay(1);
607
608 ret = dwc3_ulpi_init(dwc);
609 if (ret)
610 return ret;
611 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300612 default:
613 break;
614 }
615
William Wu32f2ed82016-08-16 22:44:38 +0800616 switch (dwc->hsphy_mode) {
617 case USBPHY_INTERFACE_MODE_UTMI:
618 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
619 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
620 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_8_BIT) |
621 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_8_BIT);
622 break;
623 case USBPHY_INTERFACE_MODE_UTMIW:
624 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
625 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
626 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_16_BIT) |
627 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_16_BIT);
628 break;
629 default:
630 break;
631 }
632
Huang Rui2164a472014-10-28 19:54:35 +0800633 /*
634 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
635 * '0' during coreConsultant configuration. So default value will
636 * be '0' when the core is reset. Application needs to set it to
637 * '1' after the core initialization is completed.
638 */
639 if (dwc->revision > DWC3_REVISION_194A)
640 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
641
Felipe Balbicd72f892014-11-06 11:31:00 -0600642 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800643 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
644
John Younec791d12015-10-02 20:30:57 -0700645 if (dwc->dis_enblslpm_quirk)
646 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
647
William Wu16199f32016-08-16 22:44:37 +0800648 if (dwc->dis_u2_freeclk_exists_quirk)
649 reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
650
Huang Rui2164a472014-10-28 19:54:35 +0800651 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300652
653 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800654}
655
Felipe Balbic499ff72016-05-16 10:49:01 +0300656static void dwc3_core_exit(struct dwc3 *dwc)
657{
658 dwc3_event_buffers_cleanup(dwc);
659
660 usb_phy_shutdown(dwc->usb2_phy);
661 usb_phy_shutdown(dwc->usb3_phy);
662 phy_exit(dwc->usb2_generic_phy);
663 phy_exit(dwc->usb3_generic_phy);
664
665 usb_phy_set_suspend(dwc->usb2_phy, 1);
666 usb_phy_set_suspend(dwc->usb3_phy, 1);
667 phy_power_off(dwc->usb2_generic_phy);
668 phy_power_off(dwc->usb3_generic_phy);
669}
670
Huang Ruib5a65c42014-10-28 19:54:28 +0800671/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300672 * dwc3_core_init - Low-level initialization of DWC3 Core
673 * @dwc: Pointer to our controller context structure
674 *
675 * Returns 0 on success otherwise negative errno.
676 */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700677int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300678{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600679 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300680 u32 reg;
681 int ret;
682
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200683 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
684 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700685 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
686 /* Detected DWC_usb3 IP */
687 dwc->revision = reg;
688 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
689 /* Detected DWC_usb31 IP */
690 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
691 dwc->revision |= DWC3_REVISION_IS_DWC31;
692 } else {
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200693 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
694 ret = -ENODEV;
695 goto err0;
696 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200697
Felipe Balbifa0ea132014-09-19 15:51:11 -0500698 /*
699 * Write Linux Version Code to our GUID register so it's easy to figure
700 * out which kernel version a bug was found.
701 */
702 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
703
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700704 /* Handle USB2.0-only core configuration */
705 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
706 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
707 if (dwc->maximum_speed == USB_SPEED_SUPER)
708 dwc->maximum_speed = USB_SPEED_HIGH;
709 }
710
Felipe Balbi72246da2011-08-19 18:10:58 +0300711 /* issue device SoftReset too */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700712 ret = dwc3_core_reset(dwc);
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300713 if (ret)
714 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300715
Mayank Ranaa99689a2016-08-10 17:39:47 -0700716 /* issue device SoftReset too */
717 ret = dwc3_soft_reset(dwc);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530718 if (ret)
719 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530720
Felipe Balbic499ff72016-05-16 10:49:01 +0300721 ret = dwc3_phy_setup(dwc);
722 if (ret)
723 goto err0;
724
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100725 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800726 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100727
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100728 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100729 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600730 /**
731 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
732 * issue which would cause xHCI compliance tests to fail.
733 *
734 * Because of that we cannot enable clock gating on such
735 * configurations.
736 *
737 * Refers to:
738 *
739 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
740 * SOF/ITP Mode Used
741 */
742 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
743 dwc->dr_mode == USB_DR_MODE_OTG) &&
744 (dwc->revision >= DWC3_REVISION_210A &&
745 dwc->revision <= DWC3_REVISION_250A))
746 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
747 else
748 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100749 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600750 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
751 /* enable hibernation here */
752 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800753
754 /*
755 * REVISIT Enabling this bit so that host-mode hibernation
756 * will work. Device-mode hibernation is not yet implemented.
757 */
758 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600759 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100760 default:
Felipe Balbi1407bf12015-11-16 16:06:37 -0600761 dwc3_trace(trace_dwc3_core, "No power optimization available\n");
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100762 }
763
Huang Rui946bd572014-10-28 19:54:23 +0800764 /* check if current dwc3 is on simulation board */
765 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi1407bf12015-11-16 16:06:37 -0600766 dwc3_trace(trace_dwc3_core,
767 "running on FPGA platform\n");
Huang Rui946bd572014-10-28 19:54:23 +0800768 dwc->is_fpga = true;
769 }
770
Huang Rui3b812212014-10-28 19:54:25 +0800771 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
772 "disable_scramble cannot be used on non-FPGA builds\n");
773
774 if (dwc->disable_scramble_quirk && dwc->is_fpga)
775 reg |= DWC3_GCTL_DISSCRAMBLE;
776 else
777 reg &= ~DWC3_GCTL_DISSCRAMBLE;
778
Huang Rui9a5b2f32014-10-28 19:54:27 +0800779 if (dwc->u2exit_lfps_quirk)
780 reg |= DWC3_GCTL_U2EXIT_LFPS;
781
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100782 /*
783 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800784 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100785 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800786 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100787 */
788 if (dwc->revision < DWC3_REVISION_190A)
789 reg |= DWC3_GCTL_U2RSTECN;
790
Mayank Ranafb9cd932016-11-03 23:26:38 -0700791 ret = dwc3_get_dr_mode(dwc);
792 if (ret)
793 goto err0;
794
Mayank Ranaa99689a2016-08-10 17:39:47 -0700795 dwc3_core_num_eps(dwc);
796
797 /*
798 * Disable clock gating to work around a known HW bug that causes the
799 * internal RAM clock to get stuck when entering low power modes.
800 */
801 if (dwc->disable_clk_gating) {
802 dev_dbg(dwc->dev, "Disabling controller clock gating.\n");
803 reg |= DWC3_GCTL_DSBLCLKGTNG;
804 }
805
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100806 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
807
Mayank Ranaa99689a2016-08-10 17:39:47 -0700808 ret = dwc3_alloc_scratch_buffers(dwc);
809 if (ret)
810 goto err1;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600811
812 ret = dwc3_setup_scratch_buffers(dwc);
813 if (ret)
Mayank Ranaa99689a2016-08-10 17:39:47 -0700814 goto err2;
Felipe Balbic499ff72016-05-16 10:49:01 +0300815
816 /* Adjust Frame Length */
817 dwc3_frame_length_adjustment(dwc);
818
819 usb_phy_set_suspend(dwc->usb2_phy, 0);
820 usb_phy_set_suspend(dwc->usb3_phy, 0);
821 ret = phy_power_on(dwc->usb2_generic_phy);
822 if (ret < 0)
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600823 goto err2;
824
Mayank Ranaa99689a2016-08-10 17:39:47 -0700825 /*
826 * clear Elastic buffer mode in GUSBPIPE_CTRL(0) register, otherwise
827 * it results in high link errors and could cause SS mode transfer
828 * failure.
829 */
830 if (!dwc->nominal_elastic_buffer) {
831 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
832 reg &= ~DWC3_GUSB3PIPECTL_ELASTIC_BUF_MODE;
833 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
Felipe Balbic499ff72016-05-16 10:49:01 +0300834 }
835
Baolin Wang00af6232016-07-15 17:13:27 +0800836 switch (dwc->dr_mode) {
837 case USB_DR_MODE_PERIPHERAL:
838 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
839 break;
840 case USB_DR_MODE_HOST:
841 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
842 break;
843 case USB_DR_MODE_OTG:
844 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
845 break;
846 default:
847 dev_warn(dwc->dev, "Unsupported mode %d\n", dwc->dr_mode);
848 break;
849 }
850
John Youn06281d42016-08-22 15:39:13 -0700851 /*
852 * ENDXFER polling is available on version 3.10a and later of
853 * the DWC_usb3 controller. It is NOT available in the
854 * DWC_usb31 controller.
855 */
856 if (!dwc3_is_usb31(dwc) && dwc->revision >= DWC3_REVISION_310A) {
857 reg = dwc3_readl(dwc->regs, DWC3_GUCTL2);
858 reg |= DWC3_GUCTL2_RST_ACTBITLATER;
859 dwc3_writel(dwc->regs, DWC3_GUCTL2, reg);
860 }
861
Felipe Balbi72246da2011-08-19 18:10:58 +0300862 return 0;
863
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600864err2:
Mayank Ranaa99689a2016-08-10 17:39:47 -0700865 dwc3_free_scratch_buffers(dwc);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600866
867err1:
868 usb_phy_shutdown(dwc->usb2_phy);
869 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530870 phy_exit(dwc->usb2_generic_phy);
871 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600872
Felipe Balbi72246da2011-08-19 18:10:58 +0300873err0:
874 return ret;
875}
876
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500877static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300878{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500879 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300880 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500881 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300882
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530883 if (node) {
884 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
885 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500886 } else {
887 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
888 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530889 }
890
Felipe Balbid105e7f2013-03-15 10:52:08 +0200891 if (IS_ERR(dwc->usb2_phy)) {
892 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530893 if (ret == -ENXIO || ret == -ENODEV) {
894 dwc->usb2_phy = NULL;
895 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200896 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530897 } else {
898 dev_err(dev, "no usb2 phy configured\n");
899 return ret;
900 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300901 }
902
Felipe Balbid105e7f2013-03-15 10:52:08 +0200903 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500904 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530905 if (ret == -ENXIO || ret == -ENODEV) {
906 dwc->usb3_phy = NULL;
907 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200908 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530909 } else {
910 dev_err(dev, "no usb3 phy configured\n");
911 return ret;
912 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300913 }
914
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530915 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
916 if (IS_ERR(dwc->usb2_generic_phy)) {
917 ret = PTR_ERR(dwc->usb2_generic_phy);
918 if (ret == -ENOSYS || ret == -ENODEV) {
919 dwc->usb2_generic_phy = NULL;
920 } else if (ret == -EPROBE_DEFER) {
921 return ret;
922 } else {
923 dev_err(dev, "no usb2 phy configured\n");
924 return ret;
925 }
926 }
927
928 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
929 if (IS_ERR(dwc->usb3_generic_phy)) {
930 ret = PTR_ERR(dwc->usb3_generic_phy);
931 if (ret == -ENOSYS || ret == -ENODEV) {
932 dwc->usb3_generic_phy = NULL;
933 } else if (ret == -EPROBE_DEFER) {
934 return ret;
935 } else {
936 dev_err(dev, "no usb3 phy configured\n");
937 return ret;
938 }
939 }
940
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500941 return 0;
942}
943
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500944static int dwc3_core_init_mode(struct dwc3 *dwc)
945{
946 struct device *dev = dwc->dev;
947 int ret;
948
949 switch (dwc->dr_mode) {
950 case USB_DR_MODE_PERIPHERAL:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500951 ret = dwc3_gadget_init(dwc);
952 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300953 if (ret != -EPROBE_DEFER)
954 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500955 return ret;
956 }
957 break;
958 case USB_DR_MODE_HOST:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500959 ret = dwc3_host_init(dwc);
960 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300961 if (ret != -EPROBE_DEFER)
962 dev_err(dev, "failed to initialize host\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500963 return ret;
964 }
965 break;
966 case USB_DR_MODE_OTG:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500967 ret = dwc3_host_init(dwc);
968 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300969 if (ret != -EPROBE_DEFER)
970 dev_err(dev, "failed to initialize host\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500971 return ret;
972 }
973
974 ret = dwc3_gadget_init(dwc);
975 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300976 if (ret != -EPROBE_DEFER)
977 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500978 return ret;
979 }
980 break;
981 default:
982 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
983 return -EINVAL;
984 }
985
986 return 0;
987}
988
989static void dwc3_core_exit_mode(struct dwc3 *dwc)
990{
991 switch (dwc->dr_mode) {
992 case USB_DR_MODE_PERIPHERAL:
993 dwc3_gadget_exit(dwc);
994 break;
995 case USB_DR_MODE_HOST:
996 dwc3_host_exit(dwc);
997 break;
998 case USB_DR_MODE_OTG:
999 dwc3_host_exit(dwc);
1000 dwc3_gadget_exit(dwc);
1001 break;
1002 default:
1003 /* do nothing */
1004 break;
1005 }
1006}
1007
Mayank Ranaa99689a2016-08-10 17:39:47 -07001008/* XHCI reset, resets other CORE registers as well, re-init those */
1009void dwc3_post_host_reset_core_init(struct dwc3 *dwc)
1010{
1011 dwc3_core_init(dwc);
1012 dwc3_gadget_restart(dwc);
1013}
1014
1015static void (*notify_event)(struct dwc3 *, unsigned int);
1016void dwc3_set_notifier(void (*notify)(struct dwc3 *, unsigned int))
1017{
1018 notify_event = notify;
1019}
1020EXPORT_SYMBOL(dwc3_set_notifier);
1021
1022int dwc3_notify_event(struct dwc3 *dwc, unsigned int event)
1023{
1024 int ret = 0;
1025
1026 if (dwc->notify_event)
1027 dwc->notify_event(dwc, event);
1028 else
1029 ret = -ENODEV;
1030
1031 return ret;
1032}
1033EXPORT_SYMBOL(dwc3_notify_event);
1034
1035int dwc3_core_pre_init(struct dwc3 *dwc)
1036{
1037 int ret;
1038
1039 dwc3_cache_hwparams(dwc);
1040
1041 ret = dwc3_phy_setup(dwc);
1042 if (ret)
1043 goto err0;
1044
1045 if (!dwc->ev_buf) {
1046 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
1047 if (ret) {
1048 dev_err(dwc->dev, "failed to allocate event buffers\n");
1049 ret = -ENOMEM;
1050 goto err1;
1051 }
1052 }
1053
1054 ret = dwc3_core_init(dwc);
1055 if (ret) {
1056 dev_err(dwc->dev, "failed to initialize core\n");
1057 goto err2;
1058 }
1059
1060 ret = phy_power_on(dwc->usb2_generic_phy);
1061 if (ret < 0)
1062 goto err3;
1063
1064 ret = phy_power_on(dwc->usb3_generic_phy);
1065 if (ret < 0)
1066 goto err4;
1067
1068 ret = dwc3_event_buffers_setup(dwc);
1069 if (ret) {
1070 dev_err(dwc->dev, "failed to setup event buffers\n");
1071 goto err5;
1072 }
1073
Mayank Ranaa99689a2016-08-10 17:39:47 -07001074 return ret;
1075
Mayank Ranaa99689a2016-08-10 17:39:47 -07001076err5:
1077 phy_power_off(dwc->usb3_generic_phy);
1078err4:
1079 phy_power_off(dwc->usb2_generic_phy);
1080err3:
1081 dwc3_core_exit(dwc);
1082err2:
1083 dwc3_free_event_buffers(dwc);
1084err1:
1085 dwc3_ulpi_exit(dwc);
1086err0:
1087 return ret;
1088}
1089
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001090#define DWC3_ALIGN_MASK (16 - 1)
1091
1092static int dwc3_probe(struct platform_device *pdev)
1093{
1094 struct device *dev = &pdev->dev;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001095 struct resource *res;
1096 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +08001097 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +08001098 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +08001099 u8 hird_threshold;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001100 int irq;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001101
Andy Shevchenkob09e99e2014-05-15 15:53:32 +03001102 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001103
1104 void __iomem *regs;
1105 void *mem;
1106
1107 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +09001108 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001109 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +09001110
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001111 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
1112 dwc->mem = mem;
1113 dwc->dev = dev;
1114
Mayank Ranaa99689a2016-08-10 17:39:47 -07001115 dwc->notify_event = notify_event;
1116 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1117 if (!res) {
1118 dev_err(dev, "missing IRQ\n");
1119 return -ENODEV;
1120 }
1121 dwc->xhci_resources[1].start = res->start;
1122 dwc->xhci_resources[1].end = res->end;
1123 dwc->xhci_resources[1].flags = res->flags;
1124 dwc->xhci_resources[1].name = res->name;
1125
1126 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
1127
1128 /* will be enabled in dwc3_msm_resume() */
1129 irq_set_status_flags(irq, IRQ_NOAUTOEN);
1130 ret = devm_request_threaded_irq(dev, irq, NULL, dwc3_interrupt,
1131 IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc);
1132 if (ret) {
1133 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
1134 irq, ret);
1135 return -ENODEV;
1136 }
1137
1138 dwc->irq = irq;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001139 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1140 if (!res) {
1141 dev_err(dev, "missing memory resource\n");
1142 return -ENODEV;
1143 }
1144
Mayank Ranaa99689a2016-08-10 17:39:47 -07001145 dwc->reg_phys = res->start;
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301146 dwc->xhci_resources[0].start = res->start;
1147 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
1148 DWC3_XHCI_REGS_END;
1149 dwc->xhci_resources[0].flags = res->flags;
1150 dwc->xhci_resources[0].name = res->name;
1151
1152 res->start += DWC3_GLOBALS_REGS_START;
1153
1154 /*
1155 * Request memory region but exclude xHCI regs,
1156 * since it will be requested by the xhci-plat driver.
1157 */
1158 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001159 if (IS_ERR(regs)) {
1160 ret = PTR_ERR(regs);
1161 goto err0;
1162 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301163
1164 dwc->regs = regs;
1165 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301166
Huang Rui80caf7d2014-10-28 19:54:26 +08001167 /* default to highest possible threshold */
1168 lpm_nyet_threshold = 0xff;
1169
Huang Rui6b6a0c92014-10-31 11:11:12 +08001170 /* default to -3.5dB de-emphasis */
1171 tx_de_emphasis = 1;
1172
Huang Rui460d0982014-10-31 11:11:18 +08001173 /*
1174 * default to assert utmi_sleep_n and use maximum allowed HIRD
1175 * threshold value of 0b1100
1176 */
1177 hird_threshold = 12;
1178
Heikki Krogerus63863b92015-09-21 11:14:32 +03001179 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +03001180 dwc->dr_mode = usb_get_dr_mode(dev);
Mayank Ranafb9cd932016-11-03 23:26:38 -07001181
1182 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN) {
1183 dwc->dr_mode = USB_DR_MODE_OTG;
1184 dwc->is_drd = 1;
1185 }
1186
William Wu32f2ed82016-08-16 22:44:38 +08001187 dwc->hsphy_mode = of_usb_get_phy_mode(dev->of_node);
Heikki Krogerus63863b92015-09-21 11:14:32 +03001188
Heikki Krogerus3d128912015-09-21 11:14:35 +03001189 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +08001190 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001191 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +08001192 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001193 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +08001194 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001195 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +08001196 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001197 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +01001198 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001199
Heikki Krogerus3d128912015-09-21 11:14:35 +03001200 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +08001201 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001202 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +08001203 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001204 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +08001205 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001206 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +08001207 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001208 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +08001209 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001210 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +08001211 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001212 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +08001213 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001214 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +08001215 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001216 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +08001217 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001218 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +08001219 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -07001220 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
1221 "snps,dis_enblslpm_quirk");
Rajesh Bhagate58dd352016-03-14 14:40:50 +05301222 dwc->dis_rxdet_inp3_quirk = device_property_read_bool(dev,
1223 "snps,dis_rxdet_inp3_quirk");
William Wu16199f32016-08-16 22:44:37 +08001224 dwc->dis_u2_freeclk_exists_quirk = device_property_read_bool(dev,
1225 "snps,dis-u2-freeclk-exists-quirk");
William Wu00fe0812016-08-16 22:44:39 +08001226 dwc->dis_del_phy_power_chg_quirk = device_property_read_bool(dev,
1227 "snps,dis-del-phy-power-chg-quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +08001228
Heikki Krogerus3d128912015-09-21 11:14:35 +03001229 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +08001230 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001231 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +08001232 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001233 device_property_read_string(dev, "snps,hsphy_interface",
1234 &dwc->hsphy_interface);
1235 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
Felipe Balbibcdb3272016-05-16 10:42:23 +03001236 &dwc->fladj);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001237
Mayank Ranaa99689a2016-08-10 17:39:47 -07001238 if (dwc->enable_bus_suspend) {
1239 pm_runtime_set_autosuspend_delay(dev, 500);
1240 pm_runtime_use_autosuspend(dev);
1241 }
1242
Huang Rui80caf7d2014-10-28 19:54:26 +08001243 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +08001244 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +08001245
Huang Rui460d0982014-10-31 11:11:18 +08001246 dwc->hird_threshold = hird_threshold
1247 | (dwc->is_utmi_l1_suspend << 4);
1248
Mayank Ranaa99689a2016-08-10 17:39:47 -07001249 init_waitqueue_head(&dwc->wait_linkstate);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +03001250 platform_set_drvdata(pdev, dwc);
1251
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001252 ret = dwc3_core_get_phy(dwc);
1253 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001254 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001255
Felipe Balbi72246da2011-08-19 18:10:58 +03001256 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +03001257
Heikki Krogerus19bacdc2014-09-24 11:00:38 +03001258 if (!dev->dma_mask) {
1259 dev->dma_mask = dev->parent->dma_mask;
1260 dev->dma_parms = dev->parent->dma_parms;
1261 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
1262 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +05301263
Mayank Ranaa99689a2016-08-10 17:39:47 -07001264 pm_runtime_no_callbacks(dev);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001265 pm_runtime_set_active(dev);
Chanho Park802ca852012-02-15 18:27:55 +09001266 pm_runtime_enable(dev);
Chanho Park802ca852012-02-15 18:27:55 +09001267 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001268
John Youn77966eb2016-02-19 17:31:01 -08001269 /* Check the maximum_speed parameter */
1270 switch (dwc->maximum_speed) {
1271 case USB_SPEED_LOW:
1272 case USB_SPEED_FULL:
1273 case USB_SPEED_HIGH:
1274 case USB_SPEED_SUPER:
1275 case USB_SPEED_SUPER_PLUS:
1276 break;
1277 default:
1278 dev_err(dev, "invalid maximum_speed parameter %d\n",
1279 dwc->maximum_speed);
1280 /* fall through */
1281 case USB_SPEED_UNKNOWN:
1282 /* default to superspeed */
John Youn2c7f1bd2016-02-05 17:08:59 -08001283 dwc->maximum_speed = USB_SPEED_SUPER;
1284
1285 /*
1286 * default to superspeed plus if we are capable.
1287 */
1288 if (dwc3_is_usb31(dwc) &&
1289 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1290 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1291 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
John Youn77966eb2016-02-19 17:31:01 -08001292
1293 break;
John Youn2c7f1bd2016-02-05 17:08:59 -08001294 }
1295
Mayank Ranaa99689a2016-08-10 17:39:47 -07001296 /* Adjust Frame Length */
1297 dwc3_frame_length_adjustment(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001298
Mayank Ranaa99689a2016-08-10 17:39:47 -07001299 /* Hardcode number of eps */
1300 dwc->num_in_eps = 16;
1301 dwc->num_out_eps = 16;
Felipe Balbi72246da2011-08-19 18:10:58 +03001302
Felipe Balbi72246da2011-08-19 18:10:58 +03001303 ret = dwc3_core_init_mode(dwc);
1304 if (ret)
Kyle Yan65be4a52016-10-31 15:05:00 -07001305 goto err0;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001306
1307 ret = dwc3_debugfs_init(dwc);
1308 if (ret) {
1309 dev_err(dev, "failed to initialize debugfs\n");
Kyle Yan65be4a52016-10-31 15:05:00 -07001310 goto err_core_init;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001311 }
1312
1313 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001314 return 0;
1315
Kyle Yan65be4a52016-10-31 15:05:00 -07001316err_core_init:
1317 dwc3_core_exit_mode(dwc);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001318err0:
1319 /*
1320 * restore res->start back to its original value so that, in case the
1321 * probe is deferred, we don't end up getting error in request the
1322 * memory region the next time probe is called.
1323 */
1324 res->start -= DWC3_GLOBALS_REGS_START;
1325
Felipe Balbi72246da2011-08-19 18:10:58 +03001326 return ret;
1327}
1328
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001329static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001330{
Felipe Balbi72246da2011-08-19 18:10:58 +03001331 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001332 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1333
Felipe Balbifc8bb912016-05-16 13:14:48 +03001334 pm_runtime_get_sync(&pdev->dev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001335 /*
1336 * restore res->start back to its original value so that, in case the
1337 * probe is deferred, we don't end up getting error in request the
1338 * memory region the next time probe is called.
1339 */
1340 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001341
Felipe Balbidc99f162014-09-03 16:13:37 -05001342 dwc3_debugfs_exit(dwc);
1343 dwc3_core_exit_mode(dwc);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301344
Felipe Balbi72246da2011-08-19 18:10:58 +03001345 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001346 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001347
Felipe Balbifc8bb912016-05-16 13:14:48 +03001348 pm_runtime_put_sync(&pdev->dev);
1349 pm_runtime_allow(&pdev->dev);
1350 pm_runtime_disable(&pdev->dev);
1351
Felipe Balbic499ff72016-05-16 10:49:01 +03001352 dwc3_free_event_buffers(dwc);
1353 dwc3_free_scratch_buffers(dwc);
1354
Felipe Balbi72246da2011-08-19 18:10:58 +03001355 return 0;
1356}
1357
Felipe Balbifc8bb912016-05-16 13:14:48 +03001358#ifdef CONFIG_PM
1359static int dwc3_suspend_common(struct dwc3 *dwc)
Felipe Balbi7415f172012-04-30 14:56:33 +03001360{
Felipe Balbifc8bb912016-05-16 13:14:48 +03001361 unsigned long flags;
Felipe Balbi7415f172012-04-30 14:56:33 +03001362
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001363 switch (dwc->dr_mode) {
1364 case USB_DR_MODE_PERIPHERAL:
1365 case USB_DR_MODE_OTG:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001366 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7415f172012-04-30 14:56:33 +03001367 dwc3_gadget_suspend(dwc);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001368 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001369 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001370 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001371 default:
Felipe Balbi51f5d492016-05-16 10:52:58 +03001372 /* do nothing */
Felipe Balbi7415f172012-04-30 14:56:33 +03001373 break;
1374 }
1375
Felipe Balbi51f5d492016-05-16 10:52:58 +03001376 dwc3_core_exit(dwc);
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001377
Felipe Balbifc8bb912016-05-16 13:14:48 +03001378 return 0;
1379}
1380
1381static int dwc3_resume_common(struct dwc3 *dwc)
1382{
1383 unsigned long flags;
1384 int ret;
1385
1386 ret = dwc3_core_init(dwc);
1387 if (ret)
1388 return ret;
1389
1390 switch (dwc->dr_mode) {
1391 case USB_DR_MODE_PERIPHERAL:
1392 case USB_DR_MODE_OTG:
1393 spin_lock_irqsave(&dwc->lock, flags);
1394 dwc3_gadget_resume(dwc);
1395 spin_unlock_irqrestore(&dwc->lock, flags);
1396 /* FALLTHROUGH */
1397 case USB_DR_MODE_HOST:
1398 default:
1399 /* do nothing */
1400 break;
1401 }
1402
1403 return 0;
1404}
1405
1406static int dwc3_runtime_checks(struct dwc3 *dwc)
1407{
1408 switch (dwc->dr_mode) {
1409 case USB_DR_MODE_PERIPHERAL:
1410 case USB_DR_MODE_OTG:
1411 if (dwc->connected)
1412 return -EBUSY;
1413 break;
1414 case USB_DR_MODE_HOST:
1415 default:
1416 /* do nothing */
1417 break;
1418 }
1419
1420 return 0;
1421}
1422
1423static int dwc3_runtime_suspend(struct device *dev)
1424{
1425 struct dwc3 *dwc = dev_get_drvdata(dev);
1426 int ret;
1427
Mayank Ranaa99689a2016-08-10 17:39:47 -07001428 /* Check if platform glue driver handling PM, if not then handle here */
1429 if (!dwc3_notify_event(dwc, DWC3_CORE_PM_RESUME_EVENT))
1430 return 0;
Felipe Balbifc8bb912016-05-16 13:14:48 +03001431
1432 ret = dwc3_suspend_common(dwc);
1433 if (ret)
1434 return ret;
1435
1436 device_init_wakeup(dev, true);
1437
1438 return 0;
1439}
1440
1441static int dwc3_runtime_resume(struct device *dev)
1442{
1443 struct dwc3 *dwc = dev_get_drvdata(dev);
1444 int ret;
1445
Mayank Ranaa99689a2016-08-10 17:39:47 -07001446 /* Check if platform glue driver handling PM, if not then handle here */
1447 if (!dwc3_notify_event(dwc, DWC3_CORE_PM_RESUME_EVENT))
1448 return 0;
1449
Felipe Balbifc8bb912016-05-16 13:14:48 +03001450 device_init_wakeup(dev, false);
1451
1452 ret = dwc3_resume_common(dwc);
1453 if (ret)
1454 return ret;
1455
1456 switch (dwc->dr_mode) {
1457 case USB_DR_MODE_PERIPHERAL:
1458 case USB_DR_MODE_OTG:
1459 dwc3_gadget_process_pending_events(dwc);
1460 break;
1461 case USB_DR_MODE_HOST:
1462 default:
1463 /* do nothing */
1464 break;
1465 }
1466
1467 pm_runtime_mark_last_busy(dev);
Felipe Balbib74c2d82016-07-28 13:07:07 +03001468 pm_runtime_put(dev);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001469
1470 return 0;
1471}
1472
1473static int dwc3_runtime_idle(struct device *dev)
1474{
1475 struct dwc3 *dwc = dev_get_drvdata(dev);
1476
1477 switch (dwc->dr_mode) {
1478 case USB_DR_MODE_PERIPHERAL:
1479 case USB_DR_MODE_OTG:
1480 if (dwc3_runtime_checks(dwc))
1481 return -EBUSY;
1482 break;
1483 case USB_DR_MODE_HOST:
1484 default:
1485 /* do nothing */
1486 break;
1487 }
1488
1489 pm_runtime_mark_last_busy(dev);
1490 pm_runtime_autosuspend(dev);
1491
1492 return 0;
1493}
1494#endif /* CONFIG_PM */
1495
1496#ifdef CONFIG_PM_SLEEP
1497static int dwc3_suspend(struct device *dev)
1498{
1499 struct dwc3 *dwc = dev_get_drvdata(dev);
1500 int ret;
1501
1502 ret = dwc3_suspend_common(dwc);
1503 if (ret)
1504 return ret;
1505
Sekhar Nori63444752015-08-31 21:09:08 +05301506 pinctrl_pm_select_sleep_state(dev);
1507
Felipe Balbi7415f172012-04-30 14:56:33 +03001508 return 0;
1509}
1510
1511static int dwc3_resume(struct device *dev)
1512{
1513 struct dwc3 *dwc = dev_get_drvdata(dev);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301514 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001515
Sekhar Nori63444752015-08-31 21:09:08 +05301516 pinctrl_pm_select_default_state(dev);
1517
Felipe Balbifc8bb912016-05-16 13:14:48 +03001518 ret = dwc3_resume_common(dwc);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001519 if (ret)
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001520 return ret;
1521
Felipe Balbi7415f172012-04-30 14:56:33 +03001522 pm_runtime_disable(dev);
1523 pm_runtime_set_active(dev);
1524 pm_runtime_enable(dev);
1525
1526 return 0;
1527}
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001528#endif /* CONFIG_PM_SLEEP */
Felipe Balbi7415f172012-04-30 14:56:33 +03001529
1530static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001531 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
Felipe Balbifc8bb912016-05-16 13:14:48 +03001532 SET_RUNTIME_PM_OPS(dwc3_runtime_suspend, dwc3_runtime_resume,
1533 dwc3_runtime_idle)
Felipe Balbi7415f172012-04-30 14:56:33 +03001534};
1535
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301536#ifdef CONFIG_OF
1537static const struct of_device_id of_dwc3_match[] = {
1538 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001539 .compatible = "snps,dwc3"
1540 },
1541 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301542 .compatible = "synopsys,dwc3"
1543 },
1544 { },
1545};
1546MODULE_DEVICE_TABLE(of, of_dwc3_match);
1547#endif
1548
Heikki Krogerus404905a2014-09-25 10:57:02 +03001549#ifdef CONFIG_ACPI
1550
1551#define ACPI_ID_INTEL_BSW "808622B7"
1552
1553static const struct acpi_device_id dwc3_acpi_match[] = {
1554 { ACPI_ID_INTEL_BSW, 0 },
1555 { },
1556};
1557MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1558#endif
1559
Felipe Balbi72246da2011-08-19 18:10:58 +03001560static struct platform_driver dwc3_driver = {
1561 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001562 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001563 .driver = {
1564 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301565 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001566 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001567 .pm = &dwc3_dev_pm_ops,
Felipe Balbi72246da2011-08-19 18:10:58 +03001568 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001569};
1570
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001571module_platform_driver(dwc3_driver);
1572
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001573MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001574MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001575MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001576MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");