blob: 1b152a3ad76098e95250f09e0dde2d7e4b765bb8 [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
Hemant Kumarde1df692016-04-26 19:36:48 -0700194 if (dwc->maximum_speed == USB_SPEED_HIGH)
195 goto generic_phy_init;
196
Mayank Ranaa99689a2016-08-10 17:39:47 -0700197 ret = usb_phy_init(dwc->usb3_phy);
198 if (ret == -EBUSY) {
199 /*
200 * Setting Max speed as high when USB3 PHY initialiation
201 * is failing and USB superspeed can't be supported.
202 */
203 dwc->maximum_speed = USB_SPEED_HIGH;
204 } else if (ret) {
205 pr_err("%s: usb_phy_init(dwc->usb3_phy) returned %d\n",
206 __func__, ret);
207 return ret;
208 }
Hemant Kumarde1df692016-04-26 19:36:48 -0700209
210generic_phy_init:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530211 ret = phy_init(dwc->usb2_generic_phy);
212 if (ret < 0)
213 return ret;
214
215 ret = phy_init(dwc->usb3_generic_phy);
216 if (ret < 0) {
217 phy_exit(dwc->usb2_generic_phy);
218 return ret;
219 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300220
Mayank Ranaa99689a2016-08-10 17:39:47 -0700221 return 0;
222}
Felipe Balbi72246da2011-08-19 18:10:58 +0300223
Mayank Ranaa99689a2016-08-10 17:39:47 -0700224/**
225 * dwc3_core_reset - Issues core soft reset and PHY reset
226 * @dwc: pointer to our context structure
227 */
228static int dwc3_core_reset(struct dwc3 *dwc)
229{
230 int ret;
Mayank Ranaf8ebb7f2016-09-08 11:09:37 -0700231 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300232
Mayank Ranaa99689a2016-08-10 17:39:47 -0700233 /* Reset PHYs */
234 usb_phy_reset(dwc->usb2_phy);
Hemant Kumarde1df692016-04-26 19:36:48 -0700235
236 if (dwc->maximum_speed == USB_SPEED_SUPER)
237 usb_phy_reset(dwc->usb3_phy);
Pratyush Anand45627ac2012-06-21 17:44:28 +0530238
Mayank Ranaa99689a2016-08-10 17:39:47 -0700239 /* Initialize PHYs */
240 ret = dwc3_init_usb_phys(dwc);
241 if (ret) {
242 pr_err("%s: dwc3_init_phys returned %d\n",
243 __func__, ret);
244 return ret;
245 }
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530246
Mayank Ranaf8ebb7f2016-09-08 11:09:37 -0700247 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
248 reg &= ~DWC3_GUSB3PIPECTL_DELAYP1TRANS;
249 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
250
Mayank Ranaa99689a2016-08-10 17:39:47 -0700251 dwc3_notify_event(dwc, DWC3_CONTROLLER_RESET_EVENT);
252
253 dwc3_notify_event(dwc, DWC3_CONTROLLER_POST_RESET_EVENT);
254
255 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300256}
257
258/**
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300259 * dwc3_soft_reset - Issue soft reset
260 * @dwc: Pointer to our controller context structure
261 */
262static int dwc3_soft_reset(struct dwc3 *dwc)
263{
264 unsigned long timeout;
265 u32 reg;
266
267 timeout = jiffies + msecs_to_jiffies(500);
268 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
269 do {
270 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
271 if (!(reg & DWC3_DCTL_CSFTRST))
272 break;
273
274 if (time_after(jiffies, timeout)) {
275 dev_err(dwc->dev, "Reset Timed Out\n");
276 return -ETIMEDOUT;
277 }
278
279 cpu_relax();
280 } while (true);
281
282 return 0;
283}
284
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530285/*
286 * dwc3_frame_length_adjustment - Adjusts frame length if required
287 * @dwc3: Pointer to our controller context structure
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530288 */
Felipe Balbibcdb3272016-05-16 10:42:23 +0300289static void dwc3_frame_length_adjustment(struct dwc3 *dwc)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530290{
291 u32 reg;
292 u32 dft;
293
294 if (dwc->revision < DWC3_REVISION_250A)
295 return;
296
Felipe Balbibcdb3272016-05-16 10:42:23 +0300297 if (dwc->fladj == 0)
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530298 return;
299
300 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
301 dft = reg & DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300302 if (!dev_WARN_ONCE(dwc->dev, dft == dwc->fladj,
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530303 "request value same as default, ignoring\n")) {
304 reg &= ~DWC3_GFLADJ_30MHZ_MASK;
Felipe Balbibcdb3272016-05-16 10:42:23 +0300305 reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL | dwc->fladj;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530306 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
307 }
308}
309
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300310/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300311 * dwc3_free_one_event_buffer - Frees one event buffer
312 * @dwc: Pointer to our controller context structure
313 * @evt: Pointer to event buffer to be freed
314 */
315static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
316 struct dwc3_event_buffer *evt)
317{
318 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300319}
320
321/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800322 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300323 * @dwc: Pointer to our controller context structure
324 * @length: size of the event buffer
325 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800326 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300327 * otherwise ERR_PTR(errno).
328 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200329static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
330 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300331{
332 struct dwc3_event_buffer *evt;
333
Felipe Balbi380f0d22012-10-11 13:48:36 +0300334 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300335 if (!evt)
336 return ERR_PTR(-ENOMEM);
337
338 evt->dwc = dwc;
339 evt->length = length;
340 evt->buf = dma_alloc_coherent(dwc->dev, length,
341 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200342 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300343 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300344
345 return evt;
346}
347
348/**
349 * dwc3_free_event_buffers - frees all allocated event buffers
350 * @dwc: Pointer to our controller context structure
351 */
352static void dwc3_free_event_buffers(struct dwc3 *dwc)
353{
354 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300355
Felipe Balbi696c8b12016-03-30 09:37:03 +0300356 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300357 if (evt)
358 dwc3_free_one_event_buffer(dwc, evt);
Mayank Ranaf4918d32016-12-15 13:35:55 -0800359
360 /* free GSI related event buffers */
361 dwc3_notify_event(dwc, DWC3_GSI_EVT_BUF_FREE);
Felipe Balbi72246da2011-08-19 18:10:58 +0300362}
363
364/**
365 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800366 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300367 * @length: size of event buffer
368 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800369 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300370 * may contain some buffers allocated but not all which were requested.
371 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500372static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300373{
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300374 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300375
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300376 evt = dwc3_alloc_one_event_buffer(dwc, length);
377 if (IS_ERR(evt)) {
378 dev_err(dwc->dev, "can't allocate event buffer\n");
379 return PTR_ERR(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300380 }
Felipe Balbi696c8b12016-03-30 09:37:03 +0300381 dwc->ev_buf = evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300382
Mayank Ranaf4918d32016-12-15 13:35:55 -0800383 /* alloc GSI related event buffers */
384 dwc3_notify_event(dwc, DWC3_GSI_EVT_BUF_ALLOC);
Felipe Balbi72246da2011-08-19 18:10:58 +0300385 return 0;
386}
387
388/**
389 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800390 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300391 *
392 * Returns 0 on success otherwise negative errno.
393 */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700394int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300395{
396 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300397
Felipe Balbi696c8b12016-03-30 09:37:03 +0300398 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300399 dwc3_trace(trace_dwc3_core,
400 "Event buf %p dma %08llx length %d\n",
401 evt->buf, (unsigned long long) evt->dma,
402 evt->length);
Felipe Balbi72246da2011-08-19 18:10:58 +0300403
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300404 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300405
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300406 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0),
407 lower_32_bits(evt->dma));
408 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0),
409 upper_32_bits(evt->dma));
410 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0),
411 DWC3_GEVNTSIZ_SIZE(evt->length));
412 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300413
Mayank Ranaf4918d32016-12-15 13:35:55 -0800414 /* setup GSI related event buffers */
415 dwc3_notify_event(dwc, DWC3_GSI_EVT_BUF_SETUP);
Felipe Balbi72246da2011-08-19 18:10:58 +0300416 return 0;
417}
418
419static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
420{
421 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300422
Felipe Balbi696c8b12016-03-30 09:37:03 +0300423 evt = dwc->ev_buf;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300424
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300425 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300426
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300427 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0), 0);
428 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0), 0);
429 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), DWC3_GEVNTSIZ_INTMASK
430 | DWC3_GEVNTSIZ_SIZE(0));
431 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Mayank Ranaf4918d32016-12-15 13:35:55 -0800432
433 /* cleanup GSI related event buffers */
434 dwc3_notify_event(dwc, DWC3_GSI_EVT_BUF_CLEANUP);
Felipe Balbi72246da2011-08-19 18:10:58 +0300435}
436
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600437static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
438{
439 if (!dwc->has_hibernation)
440 return 0;
441
442 if (!dwc->nr_scratch)
443 return 0;
444
445 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
446 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
447 if (!dwc->scratchbuf)
448 return -ENOMEM;
449
450 return 0;
451}
452
453static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
454{
455 dma_addr_t scratch_addr;
456 u32 param;
457 int ret;
458
459 if (!dwc->has_hibernation)
460 return 0;
461
462 if (!dwc->nr_scratch)
463 return 0;
464
465 /* should never fall here */
466 if (!WARN_ON(dwc->scratchbuf))
467 return 0;
468
469 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
470 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
471 DMA_BIDIRECTIONAL);
472 if (dma_mapping_error(dwc->dev, scratch_addr)) {
473 dev_err(dwc->dev, "failed to map scratch buffer\n");
474 ret = -EFAULT;
475 goto err0;
476 }
477
478 dwc->scratch_addr = scratch_addr;
479
480 param = lower_32_bits(scratch_addr);
481
482 ret = dwc3_send_gadget_generic_command(dwc,
483 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
484 if (ret < 0)
485 goto err1;
486
487 param = upper_32_bits(scratch_addr);
488
489 ret = dwc3_send_gadget_generic_command(dwc,
490 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
491 if (ret < 0)
492 goto err1;
493
494 return 0;
495
496err1:
497 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
498 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
499
500err0:
501 return ret;
502}
503
504static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
505{
506 if (!dwc->has_hibernation)
507 return;
508
509 if (!dwc->nr_scratch)
510 return;
511
512 /* should never fall here */
513 if (!WARN_ON(dwc->scratchbuf))
514 return;
515
516 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
517 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
518 kfree(dwc->scratchbuf);
519}
520
Felipe Balbi789451f62011-05-05 15:53:10 +0300521static void dwc3_core_num_eps(struct dwc3 *dwc)
522{
523 struct dwc3_hwparams *parms = &dwc->hwparams;
524
525 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
526 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
527
Felipe Balbi73815282015-01-27 13:48:14 -0600528 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300529 dwc->num_in_eps, dwc->num_out_eps);
530}
531
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500532static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300533{
534 struct dwc3_hwparams *parms = &dwc->hwparams;
535
536 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
537 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
538 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
539 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
540 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
541 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
542 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
543 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
544 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
545}
546
Felipe Balbi72246da2011-08-19 18:10:58 +0300547/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800548 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
549 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300550 *
551 * Returns 0 on success. The USB PHY interfaces are configured but not
552 * initialized. The PHY interfaces and the PHYs get initialized together with
553 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800554 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300555static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800556{
557 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300558 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800559
560 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
561
Huang Rui2164a472014-10-28 19:54:35 +0800562 /*
563 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
564 * to '0' during coreConsultant configuration. So default value
565 * will be '0' when the core is reset. Application needs to set it
566 * to '1' after the core initialization is completed.
567 */
568 if (dwc->revision > DWC3_REVISION_194A)
569 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
570
Huang Ruib5a65c42014-10-28 19:54:28 +0800571 if (dwc->u2ss_inp3_quirk)
572 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
573
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530574 if (dwc->dis_rxdet_inp3_quirk)
575 reg |= DWC3_GUSB3PIPECTL_DISRXDETINP3;
576
Huang Ruidf31f5b2014-10-28 19:54:29 +0800577 if (dwc->req_p1p2p3_quirk)
578 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
579
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800580 if (dwc->del_p1p2p3_quirk)
581 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
582
Huang Rui41c06ff2014-10-28 19:54:31 +0800583 if (dwc->del_phy_power_chg_quirk)
584 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
585
Huang Ruifb67afc2014-10-28 19:54:32 +0800586 if (dwc->lfps_filter_quirk)
587 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
588
Huang Rui14f4ac52014-10-28 19:54:33 +0800589 if (dwc->rx_detect_poll_quirk)
590 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
591
Huang Rui6b6a0c92014-10-31 11:11:12 +0800592 if (dwc->tx_de_emphasis_quirk)
593 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
594
Felipe Balbicd72f892014-11-06 11:31:00 -0600595 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800596 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
597
William Wu00fe0812016-08-16 22:44:39 +0800598 if (dwc->dis_del_phy_power_chg_quirk)
599 reg &= ~DWC3_GUSB3PIPECTL_DEPOCHANGE;
600
Huang Ruib5a65c42014-10-28 19:54:28 +0800601 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
602
Huang Rui2164a472014-10-28 19:54:35 +0800603 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
604
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300605 /* Select the HS PHY interface */
606 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
607 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500608 if (dwc->hsphy_interface &&
609 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300610 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300611 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500612 } else if (dwc->hsphy_interface &&
613 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300614 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300615 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300616 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300617 /* Relying on default value. */
618 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
619 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300620 }
621 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300622 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
623 /* Making sure the interface and PHY are operational */
624 ret = dwc3_soft_reset(dwc);
625 if (ret)
626 return ret;
627
628 udelay(1);
629
630 ret = dwc3_ulpi_init(dwc);
631 if (ret)
632 return ret;
633 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300634 default:
635 break;
636 }
637
William Wu32f2ed82016-08-16 22:44:38 +0800638 switch (dwc->hsphy_mode) {
639 case USBPHY_INTERFACE_MODE_UTMI:
640 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
641 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
642 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_8_BIT) |
643 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_8_BIT);
644 break;
645 case USBPHY_INTERFACE_MODE_UTMIW:
646 reg &= ~(DWC3_GUSB2PHYCFG_PHYIF_MASK |
647 DWC3_GUSB2PHYCFG_USBTRDTIM_MASK);
648 reg |= DWC3_GUSB2PHYCFG_PHYIF(UTMI_PHYIF_16_BIT) |
649 DWC3_GUSB2PHYCFG_USBTRDTIM(USBTRDTIM_UTMI_16_BIT);
650 break;
651 default:
652 break;
653 }
654
Huang Rui2164a472014-10-28 19:54:35 +0800655 /*
656 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
657 * '0' during coreConsultant configuration. So default value will
658 * be '0' when the core is reset. Application needs to set it to
659 * '1' after the core initialization is completed.
660 */
661 if (dwc->revision > DWC3_REVISION_194A)
662 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
663
Felipe Balbicd72f892014-11-06 11:31:00 -0600664 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800665 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
666
John Younec791d12015-10-02 20:30:57 -0700667 if (dwc->dis_enblslpm_quirk)
668 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
669
William Wu16199f32016-08-16 22:44:37 +0800670 if (dwc->dis_u2_freeclk_exists_quirk)
671 reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
672
Huang Rui2164a472014-10-28 19:54:35 +0800673 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300674
675 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800676}
677
Felipe Balbic499ff72016-05-16 10:49:01 +0300678static void dwc3_core_exit(struct dwc3 *dwc)
679{
680 dwc3_event_buffers_cleanup(dwc);
681
682 usb_phy_shutdown(dwc->usb2_phy);
683 usb_phy_shutdown(dwc->usb3_phy);
684 phy_exit(dwc->usb2_generic_phy);
685 phy_exit(dwc->usb3_generic_phy);
686
687 usb_phy_set_suspend(dwc->usb2_phy, 1);
688 usb_phy_set_suspend(dwc->usb3_phy, 1);
689 phy_power_off(dwc->usb2_generic_phy);
690 phy_power_off(dwc->usb3_generic_phy);
691}
692
Huang Ruib5a65c42014-10-28 19:54:28 +0800693/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300694 * dwc3_core_init - Low-level initialization of DWC3 Core
695 * @dwc: Pointer to our controller context structure
696 *
697 * Returns 0 on success otherwise negative errno.
698 */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700699int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300700{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600701 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300702 u32 reg;
703 int ret;
704
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200705 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
706 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700707 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
708 /* Detected DWC_usb3 IP */
709 dwc->revision = reg;
710 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
711 /* Detected DWC_usb31 IP */
712 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
713 dwc->revision |= DWC3_REVISION_IS_DWC31;
714 } else {
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200715 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
716 ret = -ENODEV;
717 goto err0;
718 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200719
Felipe Balbifa0ea132014-09-19 15:51:11 -0500720 /*
721 * Write Linux Version Code to our GUID register so it's easy to figure
722 * out which kernel version a bug was found.
723 */
724 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
725
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700726 /* Handle USB2.0-only core configuration */
727 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
728 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
729 if (dwc->maximum_speed == USB_SPEED_SUPER)
730 dwc->maximum_speed = USB_SPEED_HIGH;
731 }
732
Felipe Balbi72246da2011-08-19 18:10:58 +0300733 /* issue device SoftReset too */
Mayank Ranaa99689a2016-08-10 17:39:47 -0700734 ret = dwc3_core_reset(dwc);
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300735 if (ret)
736 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300737
Mayank Ranaa99689a2016-08-10 17:39:47 -0700738 /* issue device SoftReset too */
739 ret = dwc3_soft_reset(dwc);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530740 if (ret)
741 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530742
Felipe Balbic499ff72016-05-16 10:49:01 +0300743 ret = dwc3_phy_setup(dwc);
744 if (ret)
745 goto err0;
746
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100747 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800748 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100749
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100750 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100751 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600752 /**
753 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
754 * issue which would cause xHCI compliance tests to fail.
755 *
756 * Because of that we cannot enable clock gating on such
757 * configurations.
758 *
759 * Refers to:
760 *
761 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
762 * SOF/ITP Mode Used
763 */
764 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
765 dwc->dr_mode == USB_DR_MODE_OTG) &&
766 (dwc->revision >= DWC3_REVISION_210A &&
767 dwc->revision <= DWC3_REVISION_250A))
768 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
769 else
770 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100771 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600772 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
773 /* enable hibernation here */
774 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800775
776 /*
777 * REVISIT Enabling this bit so that host-mode hibernation
778 * will work. Device-mode hibernation is not yet implemented.
779 */
780 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600781 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100782 default:
Felipe Balbi1407bf12015-11-16 16:06:37 -0600783 dwc3_trace(trace_dwc3_core, "No power optimization available\n");
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100784 }
785
Huang Rui946bd572014-10-28 19:54:23 +0800786 /* check if current dwc3 is on simulation board */
787 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi1407bf12015-11-16 16:06:37 -0600788 dwc3_trace(trace_dwc3_core,
789 "running on FPGA platform\n");
Huang Rui946bd572014-10-28 19:54:23 +0800790 dwc->is_fpga = true;
791 }
792
Huang Rui3b812212014-10-28 19:54:25 +0800793 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
794 "disable_scramble cannot be used on non-FPGA builds\n");
795
796 if (dwc->disable_scramble_quirk && dwc->is_fpga)
797 reg |= DWC3_GCTL_DISSCRAMBLE;
798 else
799 reg &= ~DWC3_GCTL_DISSCRAMBLE;
800
Huang Rui9a5b2f32014-10-28 19:54:27 +0800801 if (dwc->u2exit_lfps_quirk)
802 reg |= DWC3_GCTL_U2EXIT_LFPS;
803
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100804 /*
805 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800806 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100807 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800808 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100809 */
810 if (dwc->revision < DWC3_REVISION_190A)
811 reg |= DWC3_GCTL_U2RSTECN;
812
Mayank Ranafb9cd932016-11-03 23:26:38 -0700813 ret = dwc3_get_dr_mode(dwc);
814 if (ret)
815 goto err0;
816
Mayank Ranaa99689a2016-08-10 17:39:47 -0700817 dwc3_core_num_eps(dwc);
818
819 /*
820 * Disable clock gating to work around a known HW bug that causes the
821 * internal RAM clock to get stuck when entering low power modes.
822 */
823 if (dwc->disable_clk_gating) {
824 dev_dbg(dwc->dev, "Disabling controller clock gating.\n");
825 reg |= DWC3_GCTL_DSBLCLKGTNG;
826 }
827
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100828 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
829
Mayank Ranaa99689a2016-08-10 17:39:47 -0700830 ret = dwc3_alloc_scratch_buffers(dwc);
831 if (ret)
832 goto err1;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600833
834 ret = dwc3_setup_scratch_buffers(dwc);
835 if (ret)
Mayank Ranaa99689a2016-08-10 17:39:47 -0700836 goto err2;
Felipe Balbic499ff72016-05-16 10:49:01 +0300837
838 /* Adjust Frame Length */
839 dwc3_frame_length_adjustment(dwc);
840
841 usb_phy_set_suspend(dwc->usb2_phy, 0);
842 usb_phy_set_suspend(dwc->usb3_phy, 0);
843 ret = phy_power_on(dwc->usb2_generic_phy);
844 if (ret < 0)
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600845 goto err2;
846
Mayank Ranaa99689a2016-08-10 17:39:47 -0700847 /*
848 * clear Elastic buffer mode in GUSBPIPE_CTRL(0) register, otherwise
849 * it results in high link errors and could cause SS mode transfer
850 * failure.
851 */
852 if (!dwc->nominal_elastic_buffer) {
853 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
854 reg &= ~DWC3_GUSB3PIPECTL_ELASTIC_BUF_MODE;
855 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
Felipe Balbic499ff72016-05-16 10:49:01 +0300856 }
857
Baolin Wang00af6232016-07-15 17:13:27 +0800858 switch (dwc->dr_mode) {
859 case USB_DR_MODE_PERIPHERAL:
860 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
861 break;
862 case USB_DR_MODE_HOST:
863 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
864 break;
865 case USB_DR_MODE_OTG:
866 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
867 break;
868 default:
869 dev_warn(dwc->dev, "Unsupported mode %d\n", dwc->dr_mode);
870 break;
871 }
872
John Youn06281d42016-08-22 15:39:13 -0700873 /*
874 * ENDXFER polling is available on version 3.10a and later of
875 * the DWC_usb3 controller. It is NOT available in the
876 * DWC_usb31 controller.
877 */
878 if (!dwc3_is_usb31(dwc) && dwc->revision >= DWC3_REVISION_310A) {
879 reg = dwc3_readl(dwc->regs, DWC3_GUCTL2);
880 reg |= DWC3_GUCTL2_RST_ACTBITLATER;
881 dwc3_writel(dwc->regs, DWC3_GUCTL2, reg);
882 }
883
Felipe Balbi72246da2011-08-19 18:10:58 +0300884 return 0;
885
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600886err2:
Mayank Ranaa99689a2016-08-10 17:39:47 -0700887 dwc3_free_scratch_buffers(dwc);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600888err1:
889 usb_phy_shutdown(dwc->usb2_phy);
890 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530891 phy_exit(dwc->usb2_generic_phy);
892 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600893
Felipe Balbi72246da2011-08-19 18:10:58 +0300894err0:
895 return ret;
896}
897
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500898static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300899{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500900 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300901 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500902 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300903
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530904 if (node) {
905 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
906 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500907 } else {
908 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
909 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530910 }
911
Felipe Balbid105e7f2013-03-15 10:52:08 +0200912 if (IS_ERR(dwc->usb2_phy)) {
913 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530914 if (ret == -ENXIO || ret == -ENODEV) {
915 dwc->usb2_phy = NULL;
916 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200917 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530918 } else {
919 dev_err(dev, "no usb2 phy configured\n");
920 return ret;
921 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300922 }
923
Felipe Balbid105e7f2013-03-15 10:52:08 +0200924 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500925 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530926 if (ret == -ENXIO || ret == -ENODEV) {
927 dwc->usb3_phy = NULL;
928 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200929 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530930 } else {
931 dev_err(dev, "no usb3 phy configured\n");
932 return ret;
933 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300934 }
935
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530936 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
937 if (IS_ERR(dwc->usb2_generic_phy)) {
938 ret = PTR_ERR(dwc->usb2_generic_phy);
939 if (ret == -ENOSYS || ret == -ENODEV) {
940 dwc->usb2_generic_phy = NULL;
941 } else if (ret == -EPROBE_DEFER) {
942 return ret;
943 } else {
944 dev_err(dev, "no usb2 phy configured\n");
945 return ret;
946 }
947 }
948
949 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
950 if (IS_ERR(dwc->usb3_generic_phy)) {
951 ret = PTR_ERR(dwc->usb3_generic_phy);
952 if (ret == -ENOSYS || ret == -ENODEV) {
953 dwc->usb3_generic_phy = NULL;
954 } else if (ret == -EPROBE_DEFER) {
955 return ret;
956 } else {
957 dev_err(dev, "no usb3 phy configured\n");
958 return ret;
959 }
960 }
961
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500962 return 0;
963}
964
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500965static int dwc3_core_init_mode(struct dwc3 *dwc)
966{
967 struct device *dev = dwc->dev;
968 int ret;
969
970 switch (dwc->dr_mode) {
971 case USB_DR_MODE_PERIPHERAL:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500972 ret = dwc3_gadget_init(dwc);
973 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300974 if (ret != -EPROBE_DEFER)
975 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500976 return ret;
977 }
978 break;
979 case USB_DR_MODE_HOST:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500980 ret = dwc3_host_init(dwc);
981 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300982 if (ret != -EPROBE_DEFER)
983 dev_err(dev, "failed to initialize host\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500984 return ret;
985 }
986 break;
987 case USB_DR_MODE_OTG:
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500988 ret = dwc3_host_init(dwc);
989 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300990 if (ret != -EPROBE_DEFER)
991 dev_err(dev, "failed to initialize host\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500992 return ret;
993 }
994
995 ret = dwc3_gadget_init(dwc);
996 if (ret) {
Roger Quadros9522def2016-06-10 14:48:38 +0300997 if (ret != -EPROBE_DEFER)
998 dev_err(dev, "failed to initialize gadget\n");
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500999 return ret;
1000 }
1001 break;
1002 default:
1003 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
1004 return -EINVAL;
1005 }
1006
1007 return 0;
1008}
1009
1010static void dwc3_core_exit_mode(struct dwc3 *dwc)
1011{
1012 switch (dwc->dr_mode) {
1013 case USB_DR_MODE_PERIPHERAL:
1014 dwc3_gadget_exit(dwc);
1015 break;
1016 case USB_DR_MODE_HOST:
1017 dwc3_host_exit(dwc);
1018 break;
1019 case USB_DR_MODE_OTG:
1020 dwc3_host_exit(dwc);
1021 dwc3_gadget_exit(dwc);
1022 break;
1023 default:
1024 /* do nothing */
1025 break;
1026 }
1027}
1028
Mayank Ranaa99689a2016-08-10 17:39:47 -07001029/* XHCI reset, resets other CORE registers as well, re-init those */
1030void dwc3_post_host_reset_core_init(struct dwc3 *dwc)
1031{
1032 dwc3_core_init(dwc);
1033 dwc3_gadget_restart(dwc);
1034}
1035
1036static void (*notify_event)(struct dwc3 *, unsigned int);
1037void dwc3_set_notifier(void (*notify)(struct dwc3 *, unsigned int))
1038{
1039 notify_event = notify;
1040}
1041EXPORT_SYMBOL(dwc3_set_notifier);
1042
1043int dwc3_notify_event(struct dwc3 *dwc, unsigned int event)
1044{
1045 int ret = 0;
1046
1047 if (dwc->notify_event)
1048 dwc->notify_event(dwc, event);
1049 else
1050 ret = -ENODEV;
1051
1052 return ret;
1053}
1054EXPORT_SYMBOL(dwc3_notify_event);
1055
1056int dwc3_core_pre_init(struct dwc3 *dwc)
1057{
1058 int ret;
1059
1060 dwc3_cache_hwparams(dwc);
1061
1062 ret = dwc3_phy_setup(dwc);
1063 if (ret)
1064 goto err0;
1065
1066 if (!dwc->ev_buf) {
1067 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
1068 if (ret) {
1069 dev_err(dwc->dev, "failed to allocate event buffers\n");
1070 ret = -ENOMEM;
1071 goto err1;
1072 }
1073 }
1074
1075 ret = dwc3_core_init(dwc);
1076 if (ret) {
1077 dev_err(dwc->dev, "failed to initialize core\n");
1078 goto err2;
1079 }
1080
1081 ret = phy_power_on(dwc->usb2_generic_phy);
1082 if (ret < 0)
1083 goto err3;
1084
1085 ret = phy_power_on(dwc->usb3_generic_phy);
1086 if (ret < 0)
1087 goto err4;
1088
1089 ret = dwc3_event_buffers_setup(dwc);
1090 if (ret) {
1091 dev_err(dwc->dev, "failed to setup event buffers\n");
1092 goto err5;
1093 }
1094
Mayank Ranaa99689a2016-08-10 17:39:47 -07001095 return ret;
1096
Mayank Ranaa99689a2016-08-10 17:39:47 -07001097err5:
1098 phy_power_off(dwc->usb3_generic_phy);
1099err4:
1100 phy_power_off(dwc->usb2_generic_phy);
1101err3:
1102 dwc3_core_exit(dwc);
1103err2:
1104 dwc3_free_event_buffers(dwc);
1105err1:
1106 dwc3_ulpi_exit(dwc);
1107err0:
1108 return ret;
1109}
1110
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001111#define DWC3_ALIGN_MASK (16 - 1)
1112
1113static int dwc3_probe(struct platform_device *pdev)
1114{
1115 struct device *dev = &pdev->dev;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001116 struct resource *res;
1117 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +08001118 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +08001119 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +08001120 u8 hird_threshold;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001121 int irq;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001122
Andy Shevchenkob09e99e2014-05-15 15:53:32 +03001123 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001124
1125 void __iomem *regs;
1126 void *mem;
1127
1128 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +09001129 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001130 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +09001131
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001132 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
1133 dwc->mem = mem;
1134 dwc->dev = dev;
1135
Mayank Ranaa99689a2016-08-10 17:39:47 -07001136 dwc->notify_event = notify_event;
1137 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1138 if (!res) {
1139 dev_err(dev, "missing IRQ\n");
1140 return -ENODEV;
1141 }
1142 dwc->xhci_resources[1].start = res->start;
1143 dwc->xhci_resources[1].end = res->end;
1144 dwc->xhci_resources[1].flags = res->flags;
1145 dwc->xhci_resources[1].name = res->name;
1146
1147 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
1148
1149 /* will be enabled in dwc3_msm_resume() */
1150 irq_set_status_flags(irq, IRQ_NOAUTOEN);
1151 ret = devm_request_threaded_irq(dev, irq, NULL, dwc3_interrupt,
1152 IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc);
1153 if (ret) {
1154 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
1155 irq, ret);
1156 return -ENODEV;
1157 }
1158
1159 dwc->irq = irq;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001160 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1161 if (!res) {
1162 dev_err(dev, "missing memory resource\n");
1163 return -ENODEV;
1164 }
1165
Mayank Ranaa99689a2016-08-10 17:39:47 -07001166 dwc->reg_phys = res->start;
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301167 dwc->xhci_resources[0].start = res->start;
1168 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
1169 DWC3_XHCI_REGS_END;
1170 dwc->xhci_resources[0].flags = res->flags;
1171 dwc->xhci_resources[0].name = res->name;
1172
1173 res->start += DWC3_GLOBALS_REGS_START;
1174
1175 /*
1176 * Request memory region but exclude xHCI regs,
1177 * since it will be requested by the xhci-plat driver.
1178 */
1179 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001180 if (IS_ERR(regs)) {
1181 ret = PTR_ERR(regs);
1182 goto err0;
1183 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301184
1185 dwc->regs = regs;
1186 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +05301187
Huang Rui80caf7d2014-10-28 19:54:26 +08001188 /* default to highest possible threshold */
1189 lpm_nyet_threshold = 0xff;
1190
Huang Rui6b6a0c92014-10-31 11:11:12 +08001191 /* default to -3.5dB de-emphasis */
1192 tx_de_emphasis = 1;
1193
Huang Rui460d0982014-10-31 11:11:18 +08001194 /*
1195 * default to assert utmi_sleep_n and use maximum allowed HIRD
1196 * threshold value of 0b1100
1197 */
1198 hird_threshold = 12;
1199
Heikki Krogerus63863b92015-09-21 11:14:32 +03001200 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +03001201 dwc->dr_mode = usb_get_dr_mode(dev);
Mayank Ranafb9cd932016-11-03 23:26:38 -07001202
1203 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN) {
1204 dwc->dr_mode = USB_DR_MODE_OTG;
1205 dwc->is_drd = 1;
1206 }
1207
William Wu32f2ed82016-08-16 22:44:38 +08001208 dwc->hsphy_mode = of_usb_get_phy_mode(dev->of_node);
Heikki Krogerus63863b92015-09-21 11:14:32 +03001209
Heikki Krogerus3d128912015-09-21 11:14:35 +03001210 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +08001211 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001212 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +08001213 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001214 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +08001215 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001216 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +08001217 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001218 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +01001219 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001220
Mayank Ranaa8e4de62016-12-13 17:11:15 -08001221 dwc->needs_fifo_resize = device_property_read_bool(dev,
1222 "tx-fifo-resize");
1223
Heikki Krogerus3d128912015-09-21 11:14:35 +03001224 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +08001225 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001226 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +08001227 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001228 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +08001229 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001230 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +08001231 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001232 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +08001233 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001234 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +08001235 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001236 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +08001237 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001238 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +08001239 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001240 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +08001241 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001242 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +08001243 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -07001244 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
1245 "snps,dis_enblslpm_quirk");
Rajesh Bhagate58dd352016-03-14 14:40:50 +05301246 dwc->dis_rxdet_inp3_quirk = device_property_read_bool(dev,
1247 "snps,dis_rxdet_inp3_quirk");
William Wu16199f32016-08-16 22:44:37 +08001248 dwc->dis_u2_freeclk_exists_quirk = device_property_read_bool(dev,
1249 "snps,dis-u2-freeclk-exists-quirk");
William Wu00fe0812016-08-16 22:44:39 +08001250 dwc->dis_del_phy_power_chg_quirk = device_property_read_bool(dev,
1251 "snps,dis-del-phy-power-chg-quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +08001252
Heikki Krogerus3d128912015-09-21 11:14:35 +03001253 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +08001254 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001255 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +08001256 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +03001257 device_property_read_string(dev, "snps,hsphy_interface",
1258 &dwc->hsphy_interface);
1259 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
Felipe Balbibcdb3272016-05-16 10:42:23 +03001260 &dwc->fladj);
Mayank Rana00b03982015-06-10 11:43:09 -07001261 dwc->disable_clk_gating = device_property_read_bool(dev,
1262 "snps,disable-clk-gating");
Heikki Krogerus3d128912015-09-21 11:14:35 +03001263
Mayank Ranaa99689a2016-08-10 17:39:47 -07001264 if (dwc->enable_bus_suspend) {
1265 pm_runtime_set_autosuspend_delay(dev, 500);
1266 pm_runtime_use_autosuspend(dev);
1267 }
1268
Huang Rui80caf7d2014-10-28 19:54:26 +08001269 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +08001270 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +08001271
Huang Rui460d0982014-10-31 11:11:18 +08001272 dwc->hird_threshold = hird_threshold
1273 | (dwc->is_utmi_l1_suspend << 4);
1274
Mayank Ranaa99689a2016-08-10 17:39:47 -07001275 init_waitqueue_head(&dwc->wait_linkstate);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +03001276 platform_set_drvdata(pdev, dwc);
1277
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001278 ret = dwc3_core_get_phy(dwc);
1279 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001280 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -05001281
Felipe Balbi72246da2011-08-19 18:10:58 +03001282 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +03001283
Heikki Krogerus19bacdc2014-09-24 11:00:38 +03001284 if (!dev->dma_mask) {
1285 dev->dma_mask = dev->parent->dma_mask;
1286 dev->dma_parms = dev->parent->dma_parms;
1287 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
1288 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +05301289
Mayank Ranaa99689a2016-08-10 17:39:47 -07001290 pm_runtime_no_callbacks(dev);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001291 pm_runtime_set_active(dev);
Chanho Park802ca852012-02-15 18:27:55 +09001292 pm_runtime_enable(dev);
Chanho Park802ca852012-02-15 18:27:55 +09001293 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001294
John Youn77966eb2016-02-19 17:31:01 -08001295 /* Check the maximum_speed parameter */
1296 switch (dwc->maximum_speed) {
1297 case USB_SPEED_LOW:
1298 case USB_SPEED_FULL:
1299 case USB_SPEED_HIGH:
1300 case USB_SPEED_SUPER:
1301 case USB_SPEED_SUPER_PLUS:
1302 break;
1303 default:
1304 dev_err(dev, "invalid maximum_speed parameter %d\n",
1305 dwc->maximum_speed);
1306 /* fall through */
1307 case USB_SPEED_UNKNOWN:
1308 /* default to superspeed */
John Youn2c7f1bd2016-02-05 17:08:59 -08001309 dwc->maximum_speed = USB_SPEED_SUPER;
1310
1311 /*
1312 * default to superspeed plus if we are capable.
1313 */
1314 if (dwc3_is_usb31(dwc) &&
1315 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1316 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1317 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
John Youn77966eb2016-02-19 17:31:01 -08001318
1319 break;
John Youn2c7f1bd2016-02-05 17:08:59 -08001320 }
1321
Mayank Ranaa99689a2016-08-10 17:39:47 -07001322 /* Adjust Frame Length */
1323 dwc3_frame_length_adjustment(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001324
Mayank Ranaa99689a2016-08-10 17:39:47 -07001325 /* Hardcode number of eps */
1326 dwc->num_in_eps = 16;
1327 dwc->num_out_eps = 16;
Felipe Balbi72246da2011-08-19 18:10:58 +03001328
Felipe Balbi72246da2011-08-19 18:10:58 +03001329 ret = dwc3_core_init_mode(dwc);
1330 if (ret)
Kyle Yan65be4a52016-10-31 15:05:00 -07001331 goto err0;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001332
1333 ret = dwc3_debugfs_init(dwc);
1334 if (ret) {
1335 dev_err(dev, "failed to initialize debugfs\n");
Kyle Yan65be4a52016-10-31 15:05:00 -07001336 goto err_core_init;
Mayank Ranaa99689a2016-08-10 17:39:47 -07001337 }
1338
1339 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001340 return 0;
1341
Kyle Yan65be4a52016-10-31 15:05:00 -07001342err_core_init:
1343 dwc3_core_exit_mode(dwc);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001344err0:
1345 /*
1346 * restore res->start back to its original value so that, in case the
1347 * probe is deferred, we don't end up getting error in request the
1348 * memory region the next time probe is called.
1349 */
1350 res->start -= DWC3_GLOBALS_REGS_START;
1351
Felipe Balbi72246da2011-08-19 18:10:58 +03001352 return ret;
1353}
1354
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001355static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001356{
Felipe Balbi72246da2011-08-19 18:10:58 +03001357 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001358 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1359
Felipe Balbifc8bb912016-05-16 13:14:48 +03001360 pm_runtime_get_sync(&pdev->dev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001361 /*
1362 * restore res->start back to its original value so that, in case the
1363 * probe is deferred, we don't end up getting error in request the
1364 * memory region the next time probe is called.
1365 */
1366 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001367
Felipe Balbidc99f162014-09-03 16:13:37 -05001368 dwc3_debugfs_exit(dwc);
1369 dwc3_core_exit_mode(dwc);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301370
Felipe Balbi72246da2011-08-19 18:10:58 +03001371 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001372 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001373
Felipe Balbifc8bb912016-05-16 13:14:48 +03001374 pm_runtime_put_sync(&pdev->dev);
1375 pm_runtime_allow(&pdev->dev);
1376 pm_runtime_disable(&pdev->dev);
1377
Felipe Balbic499ff72016-05-16 10:49:01 +03001378 dwc3_free_event_buffers(dwc);
1379 dwc3_free_scratch_buffers(dwc);
1380
Felipe Balbi72246da2011-08-19 18:10:58 +03001381 return 0;
1382}
1383
Felipe Balbifc8bb912016-05-16 13:14:48 +03001384#ifdef CONFIG_PM
1385static int dwc3_suspend_common(struct dwc3 *dwc)
Felipe Balbi7415f172012-04-30 14:56:33 +03001386{
Felipe Balbifc8bb912016-05-16 13:14:48 +03001387 unsigned long flags;
Felipe Balbi7415f172012-04-30 14:56:33 +03001388
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001389 switch (dwc->dr_mode) {
1390 case USB_DR_MODE_PERIPHERAL:
1391 case USB_DR_MODE_OTG:
Felipe Balbifc8bb912016-05-16 13:14:48 +03001392 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7415f172012-04-30 14:56:33 +03001393 dwc3_gadget_suspend(dwc);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001394 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001395 break;
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001396 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001397 default:
Felipe Balbi51f5d492016-05-16 10:52:58 +03001398 /* do nothing */
Felipe Balbi7415f172012-04-30 14:56:33 +03001399 break;
1400 }
1401
Felipe Balbi51f5d492016-05-16 10:52:58 +03001402 dwc3_core_exit(dwc);
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001403
Felipe Balbifc8bb912016-05-16 13:14:48 +03001404 return 0;
1405}
1406
1407static int dwc3_resume_common(struct dwc3 *dwc)
1408{
1409 unsigned long flags;
1410 int ret;
1411
1412 ret = dwc3_core_init(dwc);
1413 if (ret)
1414 return ret;
1415
1416 switch (dwc->dr_mode) {
1417 case USB_DR_MODE_PERIPHERAL:
1418 case USB_DR_MODE_OTG:
1419 spin_lock_irqsave(&dwc->lock, flags);
1420 dwc3_gadget_resume(dwc);
1421 spin_unlock_irqrestore(&dwc->lock, flags);
1422 /* FALLTHROUGH */
1423 case USB_DR_MODE_HOST:
1424 default:
1425 /* do nothing */
1426 break;
1427 }
1428
1429 return 0;
1430}
1431
1432static int dwc3_runtime_checks(struct dwc3 *dwc)
1433{
1434 switch (dwc->dr_mode) {
1435 case USB_DR_MODE_PERIPHERAL:
1436 case USB_DR_MODE_OTG:
1437 if (dwc->connected)
1438 return -EBUSY;
1439 break;
1440 case USB_DR_MODE_HOST:
1441 default:
1442 /* do nothing */
1443 break;
1444 }
1445
1446 return 0;
1447}
1448
1449static int dwc3_runtime_suspend(struct device *dev)
1450{
1451 struct dwc3 *dwc = dev_get_drvdata(dev);
1452 int ret;
1453
Mayank Ranaa99689a2016-08-10 17:39:47 -07001454 /* Check if platform glue driver handling PM, if not then handle here */
1455 if (!dwc3_notify_event(dwc, DWC3_CORE_PM_RESUME_EVENT))
1456 return 0;
Felipe Balbifc8bb912016-05-16 13:14:48 +03001457
1458 ret = dwc3_suspend_common(dwc);
1459 if (ret)
1460 return ret;
1461
1462 device_init_wakeup(dev, true);
1463
1464 return 0;
1465}
1466
1467static int dwc3_runtime_resume(struct device *dev)
1468{
1469 struct dwc3 *dwc = dev_get_drvdata(dev);
1470 int ret;
1471
Mayank Ranaa99689a2016-08-10 17:39:47 -07001472 /* Check if platform glue driver handling PM, if not then handle here */
1473 if (!dwc3_notify_event(dwc, DWC3_CORE_PM_RESUME_EVENT))
1474 return 0;
1475
Felipe Balbifc8bb912016-05-16 13:14:48 +03001476 device_init_wakeup(dev, false);
1477
1478 ret = dwc3_resume_common(dwc);
1479 if (ret)
1480 return ret;
1481
1482 switch (dwc->dr_mode) {
1483 case USB_DR_MODE_PERIPHERAL:
1484 case USB_DR_MODE_OTG:
1485 dwc3_gadget_process_pending_events(dwc);
1486 break;
1487 case USB_DR_MODE_HOST:
1488 default:
1489 /* do nothing */
1490 break;
1491 }
1492
1493 pm_runtime_mark_last_busy(dev);
Felipe Balbib74c2d82016-07-28 13:07:07 +03001494 pm_runtime_put(dev);
Felipe Balbifc8bb912016-05-16 13:14:48 +03001495
1496 return 0;
1497}
1498
1499static int dwc3_runtime_idle(struct device *dev)
1500{
1501 struct dwc3 *dwc = dev_get_drvdata(dev);
1502
1503 switch (dwc->dr_mode) {
1504 case USB_DR_MODE_PERIPHERAL:
1505 case USB_DR_MODE_OTG:
1506 if (dwc3_runtime_checks(dwc))
1507 return -EBUSY;
1508 break;
1509 case USB_DR_MODE_HOST:
1510 default:
1511 /* do nothing */
1512 break;
1513 }
1514
1515 pm_runtime_mark_last_busy(dev);
1516 pm_runtime_autosuspend(dev);
1517
1518 return 0;
1519}
1520#endif /* CONFIG_PM */
1521
1522#ifdef CONFIG_PM_SLEEP
1523static int dwc3_suspend(struct device *dev)
1524{
1525 struct dwc3 *dwc = dev_get_drvdata(dev);
1526 int ret;
1527
1528 ret = dwc3_suspend_common(dwc);
1529 if (ret)
1530 return ret;
1531
Sekhar Nori63444752015-08-31 21:09:08 +05301532 pinctrl_pm_select_sleep_state(dev);
1533
Felipe Balbi7415f172012-04-30 14:56:33 +03001534 return 0;
1535}
1536
1537static int dwc3_resume(struct device *dev)
1538{
1539 struct dwc3 *dwc = dev_get_drvdata(dev);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301540 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001541
Sekhar Nori63444752015-08-31 21:09:08 +05301542 pinctrl_pm_select_default_state(dev);
1543
Felipe Balbifc8bb912016-05-16 13:14:48 +03001544 ret = dwc3_resume_common(dwc);
Felipe Balbi51f5d492016-05-16 10:52:58 +03001545 if (ret)
Felipe Balbi5c4ad3182016-04-11 17:12:34 +03001546 return ret;
1547
Felipe Balbi7415f172012-04-30 14:56:33 +03001548 pm_runtime_disable(dev);
1549 pm_runtime_set_active(dev);
1550 pm_runtime_enable(dev);
1551
1552 return 0;
1553}
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001554#endif /* CONFIG_PM_SLEEP */
Felipe Balbi7415f172012-04-30 14:56:33 +03001555
1556static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001557 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
Felipe Balbifc8bb912016-05-16 13:14:48 +03001558 SET_RUNTIME_PM_OPS(dwc3_runtime_suspend, dwc3_runtime_resume,
1559 dwc3_runtime_idle)
Felipe Balbi7415f172012-04-30 14:56:33 +03001560};
1561
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301562#ifdef CONFIG_OF
1563static const struct of_device_id of_dwc3_match[] = {
1564 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001565 .compatible = "snps,dwc3"
1566 },
1567 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301568 .compatible = "synopsys,dwc3"
1569 },
1570 { },
1571};
1572MODULE_DEVICE_TABLE(of, of_dwc3_match);
1573#endif
1574
Heikki Krogerus404905a2014-09-25 10:57:02 +03001575#ifdef CONFIG_ACPI
1576
1577#define ACPI_ID_INTEL_BSW "808622B7"
1578
1579static const struct acpi_device_id dwc3_acpi_match[] = {
1580 { ACPI_ID_INTEL_BSW, 0 },
1581 { },
1582};
1583MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1584#endif
1585
Felipe Balbi72246da2011-08-19 18:10:58 +03001586static struct platform_driver dwc3_driver = {
1587 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001588 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001589 .driver = {
1590 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301591 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001592 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7f370ed2016-05-09 15:27:01 +03001593 .pm = &dwc3_dev_pm_ops,
Felipe Balbi72246da2011-08-19 18:10:58 +03001594 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001595};
1596
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001597module_platform_driver(dwc3_driver);
1598
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001599MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001600MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001601MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001602MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");