blob: 940489c1d1bdd4e43103f9491af6e9060d8ea693 [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>
Felipe Balbi72246da2011-08-19 18:10:58 +030038
39#include <linux/usb/ch9.h>
40#include <linux/usb/gadget.h>
Felipe Balbif7e846f2013-06-30 14:29:51 +030041#include <linux/usb/of.h>
Ruchika Kharwara45c82b82013-07-06 07:52:49 -050042#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030043
Felipe Balbi6462cbd2013-06-30 14:19:33 +030044#include "platform_data.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030045#include "core.h"
46#include "gadget.h"
47#include "io.h"
48
49#include "debug.h"
50
Felipe Balbi8300dd22011-10-18 13:54:01 +030051/* -------------------------------------------------------------------------- */
52
Sebastian Andrzej Siewior3140e8c2011-10-31 22:25:40 +010053void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
54{
55 u32 reg;
56
57 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
58 reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG));
59 reg |= DWC3_GCTL_PRTCAPDIR(mode);
60 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
61}
Felipe Balbi8300dd22011-10-18 13:54:01 +030062
Felipe Balbi72246da2011-08-19 18:10:58 +030063/**
64 * dwc3_core_soft_reset - Issues core soft reset and PHY reset
65 * @dwc: pointer to our context structure
66 */
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053067static int dwc3_core_soft_reset(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +030068{
69 u32 reg;
Felipe Balbif59dcab2016-03-11 10:51:52 +020070 int retries = 1000;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053071 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +030072
Felipe Balbi51e1e7b2012-07-19 14:09:48 +030073 usb_phy_init(dwc->usb2_phy);
74 usb_phy_init(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +053075 ret = phy_init(dwc->usb2_generic_phy);
76 if (ret < 0)
77 return ret;
78
79 ret = phy_init(dwc->usb3_generic_phy);
80 if (ret < 0) {
81 phy_exit(dwc->usb2_generic_phy);
82 return ret;
83 }
Felipe Balbi72246da2011-08-19 18:10:58 +030084
Felipe Balbif59dcab2016-03-11 10:51:52 +020085 /*
86 * We're resetting only the device side because, if we're in host mode,
87 * XHCI driver will reset the host block. If dwc3 was configured for
88 * host-only mode, then we can return early.
89 */
90 if (dwc->dr_mode == USB_DR_MODE_HOST)
91 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +030092
Felipe Balbif59dcab2016-03-11 10:51:52 +020093 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
94 reg |= DWC3_DCTL_CSFTRST;
95 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +030096
Felipe Balbif59dcab2016-03-11 10:51:52 +020097 do {
98 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
99 if (!(reg & DWC3_DCTL_CSFTRST))
100 return 0;
Pratyush Anand45627ac2012-06-21 17:44:28 +0530101
Felipe Balbif59dcab2016-03-11 10:51:52 +0200102 udelay(1);
103 } while (--retries);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530104
Felipe Balbif59dcab2016-03-11 10:51:52 +0200105 return -ETIMEDOUT;
Felipe Balbi72246da2011-08-19 18:10:58 +0300106}
107
108/**
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300109 * dwc3_soft_reset - Issue soft reset
110 * @dwc: Pointer to our controller context structure
111 */
112static int dwc3_soft_reset(struct dwc3 *dwc)
113{
114 unsigned long timeout;
115 u32 reg;
116
117 timeout = jiffies + msecs_to_jiffies(500);
118 dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST);
119 do {
120 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
121 if (!(reg & DWC3_DCTL_CSFTRST))
122 break;
123
124 if (time_after(jiffies, timeout)) {
125 dev_err(dwc->dev, "Reset Timed Out\n");
126 return -ETIMEDOUT;
127 }
128
129 cpu_relax();
130 } while (true);
131
132 return 0;
133}
134
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530135/*
136 * dwc3_frame_length_adjustment - Adjusts frame length if required
137 * @dwc3: Pointer to our controller context structure
138 * @fladj: Value of GFLADJ_30MHZ to adjust frame length
139 */
140static void dwc3_frame_length_adjustment(struct dwc3 *dwc, u32 fladj)
141{
142 u32 reg;
143 u32 dft;
144
145 if (dwc->revision < DWC3_REVISION_250A)
146 return;
147
148 if (fladj == 0)
149 return;
150
151 reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
152 dft = reg & DWC3_GFLADJ_30MHZ_MASK;
153 if (!dev_WARN_ONCE(dwc->dev, dft == fladj,
154 "request value same as default, ignoring\n")) {
155 reg &= ~DWC3_GFLADJ_30MHZ_MASK;
156 reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL | fladj;
157 dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
158 }
159}
160
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300161/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300162 * dwc3_free_one_event_buffer - Frees one event buffer
163 * @dwc: Pointer to our controller context structure
164 * @evt: Pointer to event buffer to be freed
165 */
166static void dwc3_free_one_event_buffer(struct dwc3 *dwc,
167 struct dwc3_event_buffer *evt)
168{
169 dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300170}
171
172/**
Paul Zimmerman1d046792012-02-15 18:56:56 -0800173 * dwc3_alloc_one_event_buffer - Allocates one event buffer structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300174 * @dwc: Pointer to our controller context structure
175 * @length: size of the event buffer
176 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800177 * Returns a pointer to the allocated event buffer structure on success
Felipe Balbi72246da2011-08-19 18:10:58 +0300178 * otherwise ERR_PTR(errno).
179 */
Felipe Balbi67d0b502013-02-22 16:31:07 +0200180static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
181 unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300182{
183 struct dwc3_event_buffer *evt;
184
Felipe Balbi380f0d22012-10-11 13:48:36 +0300185 evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +0300186 if (!evt)
187 return ERR_PTR(-ENOMEM);
188
189 evt->dwc = dwc;
190 evt->length = length;
191 evt->buf = dma_alloc_coherent(dwc->dev, length,
192 &evt->dma, GFP_KERNEL);
Felipe Balbie32672f2012-11-08 15:26:41 +0200193 if (!evt->buf)
Felipe Balbi72246da2011-08-19 18:10:58 +0300194 return ERR_PTR(-ENOMEM);
Felipe Balbi72246da2011-08-19 18:10:58 +0300195
196 return evt;
197}
198
199/**
200 * dwc3_free_event_buffers - frees all allocated event buffers
201 * @dwc: Pointer to our controller context structure
202 */
203static void dwc3_free_event_buffers(struct dwc3 *dwc)
204{
205 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300206
Felipe Balbi696c8b12016-03-30 09:37:03 +0300207 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300208 if (evt)
209 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300210}
211
212/**
213 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800214 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300215 * @length: size of event buffer
216 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800217 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300218 * may contain some buffers allocated but not all which were requested.
219 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500220static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300221{
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300222 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300223
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300224 evt = dwc3_alloc_one_event_buffer(dwc, length);
225 if (IS_ERR(evt)) {
226 dev_err(dwc->dev, "can't allocate event buffer\n");
227 return PTR_ERR(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300228 }
Felipe Balbi696c8b12016-03-30 09:37:03 +0300229 dwc->ev_buf = evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300230
231 return 0;
232}
233
234/**
235 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800236 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300237 *
238 * Returns 0 on success otherwise negative errno.
239 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300240static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300241{
242 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300243
Felipe Balbi696c8b12016-03-30 09:37:03 +0300244 evt = dwc->ev_buf;
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300245 dwc3_trace(trace_dwc3_core,
246 "Event buf %p dma %08llx length %d\n",
247 evt->buf, (unsigned long long) evt->dma,
248 evt->length);
Felipe Balbi72246da2011-08-19 18:10:58 +0300249
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300250 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300251
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300252 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0),
253 lower_32_bits(evt->dma));
254 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0),
255 upper_32_bits(evt->dma));
256 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0),
257 DWC3_GEVNTSIZ_SIZE(evt->length));
258 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300259
260 return 0;
261}
262
263static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
264{
265 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +0300266
Felipe Balbi696c8b12016-03-30 09:37:03 +0300267 evt = dwc->ev_buf;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300268
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300269 evt->lpos = 0;
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300270
Felipe Balbi660e9bd2016-03-30 09:26:24 +0300271 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(0), 0);
272 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(0), 0);
273 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), DWC3_GEVNTSIZ_INTMASK
274 | DWC3_GEVNTSIZ_SIZE(0));
275 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300276}
277
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600278static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
279{
280 if (!dwc->has_hibernation)
281 return 0;
282
283 if (!dwc->nr_scratch)
284 return 0;
285
286 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
287 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
288 if (!dwc->scratchbuf)
289 return -ENOMEM;
290
291 return 0;
292}
293
294static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
295{
296 dma_addr_t scratch_addr;
297 u32 param;
298 int ret;
299
300 if (!dwc->has_hibernation)
301 return 0;
302
303 if (!dwc->nr_scratch)
304 return 0;
305
306 /* should never fall here */
307 if (!WARN_ON(dwc->scratchbuf))
308 return 0;
309
310 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
311 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
312 DMA_BIDIRECTIONAL);
313 if (dma_mapping_error(dwc->dev, scratch_addr)) {
314 dev_err(dwc->dev, "failed to map scratch buffer\n");
315 ret = -EFAULT;
316 goto err0;
317 }
318
319 dwc->scratch_addr = scratch_addr;
320
321 param = lower_32_bits(scratch_addr);
322
323 ret = dwc3_send_gadget_generic_command(dwc,
324 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
325 if (ret < 0)
326 goto err1;
327
328 param = upper_32_bits(scratch_addr);
329
330 ret = dwc3_send_gadget_generic_command(dwc,
331 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
332 if (ret < 0)
333 goto err1;
334
335 return 0;
336
337err1:
338 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
339 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
340
341err0:
342 return ret;
343}
344
345static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
346{
347 if (!dwc->has_hibernation)
348 return;
349
350 if (!dwc->nr_scratch)
351 return;
352
353 /* should never fall here */
354 if (!WARN_ON(dwc->scratchbuf))
355 return;
356
357 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
358 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
359 kfree(dwc->scratchbuf);
360}
361
Felipe Balbi789451f62011-05-05 15:53:10 +0300362static void dwc3_core_num_eps(struct dwc3 *dwc)
363{
364 struct dwc3_hwparams *parms = &dwc->hwparams;
365
366 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
367 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
368
Felipe Balbi73815282015-01-27 13:48:14 -0600369 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300370 dwc->num_in_eps, dwc->num_out_eps);
371}
372
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500373static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300374{
375 struct dwc3_hwparams *parms = &dwc->hwparams;
376
377 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
378 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
379 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
380 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
381 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
382 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
383 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
384 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
385 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
386}
387
Felipe Balbi72246da2011-08-19 18:10:58 +0300388/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800389 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
390 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300391 *
392 * Returns 0 on success. The USB PHY interfaces are configured but not
393 * initialized. The PHY interfaces and the PHYs get initialized together with
394 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800395 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300396static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800397{
398 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300399 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800400
401 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
402
Huang Rui2164a472014-10-28 19:54:35 +0800403 /*
404 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
405 * to '0' during coreConsultant configuration. So default value
406 * will be '0' when the core is reset. Application needs to set it
407 * to '1' after the core initialization is completed.
408 */
409 if (dwc->revision > DWC3_REVISION_194A)
410 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
411
Huang Ruib5a65c42014-10-28 19:54:28 +0800412 if (dwc->u2ss_inp3_quirk)
413 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
414
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530415 if (dwc->dis_rxdet_inp3_quirk)
416 reg |= DWC3_GUSB3PIPECTL_DISRXDETINP3;
417
Huang Ruidf31f5b2014-10-28 19:54:29 +0800418 if (dwc->req_p1p2p3_quirk)
419 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
420
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800421 if (dwc->del_p1p2p3_quirk)
422 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
423
Huang Rui41c06ff2014-10-28 19:54:31 +0800424 if (dwc->del_phy_power_chg_quirk)
425 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
426
Huang Ruifb67afc2014-10-28 19:54:32 +0800427 if (dwc->lfps_filter_quirk)
428 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
429
Huang Rui14f4ac52014-10-28 19:54:33 +0800430 if (dwc->rx_detect_poll_quirk)
431 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
432
Huang Rui6b6a0c92014-10-31 11:11:12 +0800433 if (dwc->tx_de_emphasis_quirk)
434 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
435
Felipe Balbicd72f892014-11-06 11:31:00 -0600436 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800437 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
438
Huang Ruib5a65c42014-10-28 19:54:28 +0800439 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
440
Huang Rui2164a472014-10-28 19:54:35 +0800441 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
442
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300443 /* Select the HS PHY interface */
444 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
445 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500446 if (dwc->hsphy_interface &&
447 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300448 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300449 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500450 } else if (dwc->hsphy_interface &&
451 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300452 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300453 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300454 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300455 /* Relying on default value. */
456 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
457 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300458 }
459 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300460 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
461 /* Making sure the interface and PHY are operational */
462 ret = dwc3_soft_reset(dwc);
463 if (ret)
464 return ret;
465
466 udelay(1);
467
468 ret = dwc3_ulpi_init(dwc);
469 if (ret)
470 return ret;
471 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300472 default:
473 break;
474 }
475
Huang Rui2164a472014-10-28 19:54:35 +0800476 /*
477 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
478 * '0' during coreConsultant configuration. So default value will
479 * be '0' when the core is reset. Application needs to set it to
480 * '1' after the core initialization is completed.
481 */
482 if (dwc->revision > DWC3_REVISION_194A)
483 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
484
Felipe Balbicd72f892014-11-06 11:31:00 -0600485 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800486 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
487
John Younec791d12015-10-02 20:30:57 -0700488 if (dwc->dis_enblslpm_quirk)
489 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
490
Huang Rui2164a472014-10-28 19:54:35 +0800491 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300492
493 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800494}
495
496/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300497 * dwc3_core_init - Low-level initialization of DWC3 Core
498 * @dwc: Pointer to our controller context structure
499 *
500 * Returns 0 on success otherwise negative errno.
501 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500502static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300503{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600504 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300505 u32 reg;
506 int ret;
507
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200508 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
509 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700510 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
511 /* Detected DWC_usb3 IP */
512 dwc->revision = reg;
513 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
514 /* Detected DWC_usb31 IP */
515 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
516 dwc->revision |= DWC3_REVISION_IS_DWC31;
517 } else {
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200518 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
519 ret = -ENODEV;
520 goto err0;
521 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200522
Felipe Balbifa0ea132014-09-19 15:51:11 -0500523 /*
524 * Write Linux Version Code to our GUID register so it's easy to figure
525 * out which kernel version a bug was found.
526 */
527 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
528
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700529 /* Handle USB2.0-only core configuration */
530 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
531 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
532 if (dwc->maximum_speed == USB_SPEED_SUPER)
533 dwc->maximum_speed = USB_SPEED_HIGH;
534 }
535
Felipe Balbi72246da2011-08-19 18:10:58 +0300536 /* issue device SoftReset too */
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300537 ret = dwc3_soft_reset(dwc);
538 if (ret)
539 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300540
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530541 ret = dwc3_core_soft_reset(dwc);
542 if (ret)
543 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530544
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100545 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800546 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100547
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100548 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100549 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600550 /**
551 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
552 * issue which would cause xHCI compliance tests to fail.
553 *
554 * Because of that we cannot enable clock gating on such
555 * configurations.
556 *
557 * Refers to:
558 *
559 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
560 * SOF/ITP Mode Used
561 */
562 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
563 dwc->dr_mode == USB_DR_MODE_OTG) &&
564 (dwc->revision >= DWC3_REVISION_210A &&
565 dwc->revision <= DWC3_REVISION_250A))
566 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
567 else
568 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100569 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600570 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
571 /* enable hibernation here */
572 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800573
574 /*
575 * REVISIT Enabling this bit so that host-mode hibernation
576 * will work. Device-mode hibernation is not yet implemented.
577 */
578 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600579 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100580 default:
Felipe Balbi1407bf12015-11-16 16:06:37 -0600581 dwc3_trace(trace_dwc3_core, "No power optimization available\n");
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100582 }
583
Huang Rui946bd572014-10-28 19:54:23 +0800584 /* check if current dwc3 is on simulation board */
585 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi1407bf12015-11-16 16:06:37 -0600586 dwc3_trace(trace_dwc3_core,
587 "running on FPGA platform\n");
Huang Rui946bd572014-10-28 19:54:23 +0800588 dwc->is_fpga = true;
589 }
590
Huang Rui3b812212014-10-28 19:54:25 +0800591 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
592 "disable_scramble cannot be used on non-FPGA builds\n");
593
594 if (dwc->disable_scramble_quirk && dwc->is_fpga)
595 reg |= DWC3_GCTL_DISSCRAMBLE;
596 else
597 reg &= ~DWC3_GCTL_DISSCRAMBLE;
598
Huang Rui9a5b2f32014-10-28 19:54:27 +0800599 if (dwc->u2exit_lfps_quirk)
600 reg |= DWC3_GCTL_U2EXIT_LFPS;
601
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100602 /*
603 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800604 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100605 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800606 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100607 */
608 if (dwc->revision < DWC3_REVISION_190A)
609 reg |= DWC3_GCTL_U2RSTECN;
610
Felipe Balbi789451f62011-05-05 15:53:10 +0300611 dwc3_core_num_eps(dwc);
612
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100613 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
614
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600615 ret = dwc3_alloc_scratch_buffers(dwc);
616 if (ret)
617 goto err1;
618
619 ret = dwc3_setup_scratch_buffers(dwc);
620 if (ret)
621 goto err2;
622
Felipe Balbi72246da2011-08-19 18:10:58 +0300623 return 0;
624
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600625err2:
626 dwc3_free_scratch_buffers(dwc);
627
628err1:
629 usb_phy_shutdown(dwc->usb2_phy);
630 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530631 phy_exit(dwc->usb2_generic_phy);
632 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600633
Felipe Balbi72246da2011-08-19 18:10:58 +0300634err0:
635 return ret;
636}
637
638static void dwc3_core_exit(struct dwc3 *dwc)
639{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600640 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530641 usb_phy_shutdown(dwc->usb2_phy);
642 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530643 phy_exit(dwc->usb2_generic_phy);
644 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300645}
646
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500647static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300648{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500649 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300650 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500651 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300652
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530653 if (node) {
654 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
655 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500656 } else {
657 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
658 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530659 }
660
Felipe Balbid105e7f2013-03-15 10:52:08 +0200661 if (IS_ERR(dwc->usb2_phy)) {
662 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530663 if (ret == -ENXIO || ret == -ENODEV) {
664 dwc->usb2_phy = NULL;
665 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200666 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530667 } else {
668 dev_err(dev, "no usb2 phy configured\n");
669 return ret;
670 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300671 }
672
Felipe Balbid105e7f2013-03-15 10:52:08 +0200673 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500674 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530675 if (ret == -ENXIO || ret == -ENODEV) {
676 dwc->usb3_phy = NULL;
677 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200678 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530679 } else {
680 dev_err(dev, "no usb3 phy configured\n");
681 return ret;
682 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300683 }
684
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530685 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
686 if (IS_ERR(dwc->usb2_generic_phy)) {
687 ret = PTR_ERR(dwc->usb2_generic_phy);
688 if (ret == -ENOSYS || ret == -ENODEV) {
689 dwc->usb2_generic_phy = NULL;
690 } else if (ret == -EPROBE_DEFER) {
691 return ret;
692 } else {
693 dev_err(dev, "no usb2 phy configured\n");
694 return ret;
695 }
696 }
697
698 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
699 if (IS_ERR(dwc->usb3_generic_phy)) {
700 ret = PTR_ERR(dwc->usb3_generic_phy);
701 if (ret == -ENOSYS || ret == -ENODEV) {
702 dwc->usb3_generic_phy = NULL;
703 } else if (ret == -EPROBE_DEFER) {
704 return ret;
705 } else {
706 dev_err(dev, "no usb3 phy configured\n");
707 return ret;
708 }
709 }
710
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500711 return 0;
712}
713
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500714static int dwc3_core_init_mode(struct dwc3 *dwc)
715{
716 struct device *dev = dwc->dev;
717 int ret;
718
719 switch (dwc->dr_mode) {
720 case USB_DR_MODE_PERIPHERAL:
721 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
722 ret = dwc3_gadget_init(dwc);
723 if (ret) {
724 dev_err(dev, "failed to initialize gadget\n");
725 return ret;
726 }
727 break;
728 case USB_DR_MODE_HOST:
729 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
730 ret = dwc3_host_init(dwc);
731 if (ret) {
732 dev_err(dev, "failed to initialize host\n");
733 return ret;
734 }
735 break;
736 case USB_DR_MODE_OTG:
737 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
738 ret = dwc3_host_init(dwc);
739 if (ret) {
740 dev_err(dev, "failed to initialize host\n");
741 return ret;
742 }
743
744 ret = dwc3_gadget_init(dwc);
745 if (ret) {
746 dev_err(dev, "failed to initialize gadget\n");
747 return ret;
748 }
749 break;
750 default:
751 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
752 return -EINVAL;
753 }
754
755 return 0;
756}
757
758static void dwc3_core_exit_mode(struct dwc3 *dwc)
759{
760 switch (dwc->dr_mode) {
761 case USB_DR_MODE_PERIPHERAL:
762 dwc3_gadget_exit(dwc);
763 break;
764 case USB_DR_MODE_HOST:
765 dwc3_host_exit(dwc);
766 break;
767 case USB_DR_MODE_OTG:
768 dwc3_host_exit(dwc);
769 dwc3_gadget_exit(dwc);
770 break;
771 default:
772 /* do nothing */
773 break;
774 }
775}
776
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500777#define DWC3_ALIGN_MASK (16 - 1)
778
779static int dwc3_probe(struct platform_device *pdev)
780{
781 struct device *dev = &pdev->dev;
782 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500783 struct resource *res;
784 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800785 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800786 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800787 u8 hird_threshold;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530788 u32 fladj = 0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500789
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300790 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500791
792 void __iomem *regs;
793 void *mem;
794
795 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900796 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500797 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900798
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500799 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
800 dwc->mem = mem;
801 dwc->dev = dev;
802
803 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
804 if (!res) {
805 dev_err(dev, "missing IRQ\n");
806 return -ENODEV;
807 }
808 dwc->xhci_resources[1].start = res->start;
809 dwc->xhci_resources[1].end = res->end;
810 dwc->xhci_resources[1].flags = res->flags;
811 dwc->xhci_resources[1].name = res->name;
812
813 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
814 if (!res) {
815 dev_err(dev, "missing memory resource\n");
816 return -ENODEV;
817 }
818
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530819 dwc->xhci_resources[0].start = res->start;
820 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
821 DWC3_XHCI_REGS_END;
822 dwc->xhci_resources[0].flags = res->flags;
823 dwc->xhci_resources[0].name = res->name;
824
825 res->start += DWC3_GLOBALS_REGS_START;
826
827 /*
828 * Request memory region but exclude xHCI regs,
829 * since it will be requested by the xhci-plat driver.
830 */
831 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500832 if (IS_ERR(regs)) {
833 ret = PTR_ERR(regs);
834 goto err0;
835 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530836
837 dwc->regs = regs;
838 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530839
Huang Rui80caf7d2014-10-28 19:54:26 +0800840 /* default to highest possible threshold */
841 lpm_nyet_threshold = 0xff;
842
Huang Rui6b6a0c92014-10-31 11:11:12 +0800843 /* default to -3.5dB de-emphasis */
844 tx_de_emphasis = 1;
845
Huang Rui460d0982014-10-31 11:11:18 +0800846 /*
847 * default to assert utmi_sleep_n and use maximum allowed HIRD
848 * threshold value of 0b1100
849 */
850 hird_threshold = 12;
851
Heikki Krogerus63863b92015-09-21 11:14:32 +0300852 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +0300853 dwc->dr_mode = usb_get_dr_mode(dev);
Heikki Krogerus63863b92015-09-21 11:14:32 +0300854
Heikki Krogerus3d128912015-09-21 11:14:35 +0300855 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +0800856 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300857 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +0800858 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300859 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +0800860 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300861 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +0800862 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300863 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +0100864 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500865
Heikki Krogerus3d128912015-09-21 11:14:35 +0300866 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +0800867 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300868 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +0800869 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300870 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +0800871 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300872 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +0800873 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300874 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800875 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300876 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +0800877 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300878 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +0800879 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300880 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +0800881 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300882 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +0800883 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300884 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +0800885 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -0700886 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
887 "snps,dis_enblslpm_quirk");
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530888 dwc->dis_rxdet_inp3_quirk = device_property_read_bool(dev,
889 "snps,dis_rxdet_inp3_quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +0800890
Heikki Krogerus3d128912015-09-21 11:14:35 +0300891 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +0800892 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300893 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +0800894 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300895 device_property_read_string(dev, "snps,hsphy_interface",
896 &dwc->hsphy_interface);
897 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
898 &fladj);
899
900 if (pdata) {
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500901 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800902 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
903 if (pdata->lpm_nyet_threshold)
904 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Huang Rui460d0982014-10-31 11:11:18 +0800905 dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
906 if (pdata->hird_threshold)
907 hird_threshold = pdata->hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500908
Robert Baldygaeac68e82015-03-09 15:06:12 +0100909 dwc->usb3_lpm_capable = pdata->usb3_lpm_capable;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500910 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800911
912 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800913 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800914 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800915 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800916 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800917 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800918 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Huang Rui14f4ac52014-10-28 19:54:33 +0800919 dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk;
Huang Rui59acfa22014-10-31 11:11:13 +0800920 dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk;
Huang Rui0effe0a2014-10-31 11:11:14 +0800921 dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk;
John Younec791d12015-10-02 20:30:57 -0700922 dwc->dis_enblslpm_quirk = pdata->dis_enblslpm_quirk;
Rajesh Bhagate58dd352016-03-14 14:40:50 +0530923 dwc->dis_rxdet_inp3_quirk = pdata->dis_rxdet_inp3_quirk;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800924
925 dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk;
926 if (pdata->tx_de_emphasis)
927 tx_de_emphasis = pdata->tx_de_emphasis;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300928
929 dwc->hsphy_interface = pdata->hsphy_interface;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530930 fladj = pdata->fladj_value;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500931 }
932
Huang Rui80caf7d2014-10-28 19:54:26 +0800933 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800934 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +0800935
Huang Rui460d0982014-10-31 11:11:18 +0800936 dwc->hird_threshold = hird_threshold
937 | (dwc->is_utmi_l1_suspend << 4);
938
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300939 platform_set_drvdata(pdev, dwc);
Heikki Krogerus2917e712015-05-13 15:26:46 +0300940 dwc3_cache_hwparams(dwc);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300941
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300942 ret = dwc3_phy_setup(dwc);
943 if (ret)
944 goto err0;
Heikki Krogerus45bb7de2015-05-13 15:26:48 +0300945
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500946 ret = dwc3_core_get_phy(dwc);
947 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500948 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500949
Felipe Balbi72246da2011-08-19 18:10:58 +0300950 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +0300951
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300952 if (!dev->dma_mask) {
953 dev->dma_mask = dev->parent->dma_mask;
954 dev->dma_parms = dev->parent->dma_parms;
955 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
956 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530957
Chanho Park802ca852012-02-15 18:27:55 +0900958 pm_runtime_enable(dev);
959 pm_runtime_get_sync(dev);
960 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300961
Felipe Balbi39214262012-10-11 13:54:36 +0300962 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
963 if (ret) {
964 dev_err(dwc->dev, "failed to allocate event buffers\n");
965 ret = -ENOMEM;
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500966 goto err1;
Felipe Balbi39214262012-10-11 13:54:36 +0300967 }
968
Felipe Balbi32a4a132014-02-25 14:00:13 -0600969 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
970 dwc->dr_mode = USB_DR_MODE_HOST;
971 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
972 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
973
974 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
975 dwc->dr_mode = USB_DR_MODE_OTG;
976
Felipe Balbi72246da2011-08-19 18:10:58 +0300977 ret = dwc3_core_init(dwc);
978 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900979 dev_err(dev, "failed to initialize core\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500980 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +0300981 }
982
John Youn77966eb2016-02-19 17:31:01 -0800983 /* Check the maximum_speed parameter */
984 switch (dwc->maximum_speed) {
985 case USB_SPEED_LOW:
986 case USB_SPEED_FULL:
987 case USB_SPEED_HIGH:
988 case USB_SPEED_SUPER:
989 case USB_SPEED_SUPER_PLUS:
990 break;
991 default:
992 dev_err(dev, "invalid maximum_speed parameter %d\n",
993 dwc->maximum_speed);
994 /* fall through */
995 case USB_SPEED_UNKNOWN:
996 /* default to superspeed */
John Youn2c7f1bd2016-02-05 17:08:59 -0800997 dwc->maximum_speed = USB_SPEED_SUPER;
998
999 /*
1000 * default to superspeed plus if we are capable.
1001 */
1002 if (dwc3_is_usb31(dwc) &&
1003 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1004 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1005 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
John Youn77966eb2016-02-19 17:31:01 -08001006
1007 break;
John Youn2c7f1bd2016-02-05 17:08:59 -08001008 }
1009
Nikhil Badoladb2be4e2015-09-04 10:15:58 +05301010 /* Adjust Frame Length */
1011 dwc3_frame_length_adjustment(dwc, fladj);
1012
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301013 usb_phy_set_suspend(dwc->usb2_phy, 0);
1014 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301015 ret = phy_power_on(dwc->usb2_generic_phy);
1016 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001017 goto err2;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301018
1019 ret = phy_power_on(dwc->usb3_generic_phy);
1020 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001021 goto err3;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301022
Felipe Balbif122d332013-02-08 15:15:11 +02001023 ret = dwc3_event_buffers_setup(dwc);
1024 if (ret) {
1025 dev_err(dwc->dev, "failed to setup event buffers\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001026 goto err4;
Felipe Balbif122d332013-02-08 15:15:11 +02001027 }
1028
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001029 ret = dwc3_core_init_mode(dwc);
1030 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001031 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03001032
1033 ret = dwc3_debugfs_init(dwc);
1034 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +09001035 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001036 goto err6;
Felipe Balbi72246da2011-08-19 18:10:58 +03001037 }
1038
Chanho Park802ca852012-02-15 18:27:55 +09001039 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001040
1041 return 0;
1042
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001043err6:
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001044 dwc3_core_exit_mode(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001045
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001046err5:
Felipe Balbif122d332013-02-08 15:15:11 +02001047 dwc3_event_buffers_cleanup(dwc);
1048
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001049err4:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301050 phy_power_off(dwc->usb3_generic_phy);
1051
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001052err3:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301053 phy_power_off(dwc->usb2_generic_phy);
1054
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001055err2:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +05301056 usb_phy_set_suspend(dwc->usb2_phy, 1);
1057 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001058 dwc3_core_exit(dwc);
1059
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001060err1:
Felipe Balbi39214262012-10-11 13:54:36 +03001061 dwc3_free_event_buffers(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001062 dwc3_ulpi_exit(dwc);
Felipe Balbi39214262012-10-11 13:54:36 +03001063
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001064err0:
1065 /*
1066 * restore res->start back to its original value so that, in case the
1067 * probe is deferred, we don't end up getting error in request the
1068 * memory region the next time probe is called.
1069 */
1070 res->start -= DWC3_GLOBALS_REGS_START;
1071
Felipe Balbi72246da2011-08-19 18:10:58 +03001072 return ret;
1073}
1074
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001075static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001076{
Felipe Balbi72246da2011-08-19 18:10:58 +03001077 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001078 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1079
1080 /*
1081 * restore res->start back to its original value so that, in case the
1082 * probe is deferred, we don't end up getting error in request the
1083 * memory region the next time probe is called.
1084 */
1085 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001086
Felipe Balbidc99f162014-09-03 16:13:37 -05001087 dwc3_debugfs_exit(dwc);
1088 dwc3_core_exit_mode(dwc);
1089 dwc3_event_buffers_cleanup(dwc);
1090 dwc3_free_event_buffers(dwc);
1091
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301092 usb_phy_set_suspend(dwc->usb2_phy, 1);
1093 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301094 phy_power_off(dwc->usb2_generic_phy);
1095 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301096
Felipe Balbi72246da2011-08-19 18:10:58 +03001097 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001098 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001099
Felipe Balbi7415f172012-04-30 14:56:33 +03001100 pm_runtime_put_sync(&pdev->dev);
1101 pm_runtime_disable(&pdev->dev);
1102
Felipe Balbi72246da2011-08-19 18:10:58 +03001103 return 0;
1104}
1105
Felipe Balbi7415f172012-04-30 14:56:33 +03001106#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +03001107static int dwc3_suspend(struct device *dev)
1108{
1109 struct dwc3 *dwc = dev_get_drvdata(dev);
1110 unsigned long flags;
1111
1112 spin_lock_irqsave(&dwc->lock, flags);
1113
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001114 switch (dwc->dr_mode) {
1115 case USB_DR_MODE_PERIPHERAL:
1116 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001117 dwc3_gadget_suspend(dwc);
1118 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001119 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001120 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001121 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001122 break;
1123 }
1124
1125 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
1126 spin_unlock_irqrestore(&dwc->lock, flags);
1127
1128 usb_phy_shutdown(dwc->usb3_phy);
1129 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301130 phy_exit(dwc->usb2_generic_phy);
1131 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +03001132
Sekhar Nori63444752015-08-31 21:09:08 +05301133 pinctrl_pm_select_sleep_state(dev);
1134
Felipe Balbi7415f172012-04-30 14:56:33 +03001135 return 0;
1136}
1137
1138static int dwc3_resume(struct device *dev)
1139{
1140 struct dwc3 *dwc = dev_get_drvdata(dev);
1141 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301142 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001143
Sekhar Nori63444752015-08-31 21:09:08 +05301144 pinctrl_pm_select_default_state(dev);
1145
Felipe Balbi7415f172012-04-30 14:56:33 +03001146 usb_phy_init(dwc->usb3_phy);
1147 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301148 ret = phy_init(dwc->usb2_generic_phy);
1149 if (ret < 0)
1150 return ret;
1151
1152 ret = phy_init(dwc->usb3_generic_phy);
1153 if (ret < 0)
1154 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +03001155
1156 spin_lock_irqsave(&dwc->lock, flags);
1157
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001158 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001159 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
1160
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001161 switch (dwc->dr_mode) {
1162 case USB_DR_MODE_PERIPHERAL:
1163 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001164 dwc3_gadget_resume(dwc);
1165 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001166 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001167 default:
1168 /* do nothing */
1169 break;
1170 }
1171
1172 spin_unlock_irqrestore(&dwc->lock, flags);
1173
1174 pm_runtime_disable(dev);
1175 pm_runtime_set_active(dev);
1176 pm_runtime_enable(dev);
1177
1178 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301179
1180err_usb2phy_init:
1181 phy_exit(dwc->usb2_generic_phy);
1182
1183 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001184}
1185
1186static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001187 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
1188};
1189
1190#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
1191#else
1192#define DWC3_PM_OPS NULL
1193#endif
1194
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301195#ifdef CONFIG_OF
1196static const struct of_device_id of_dwc3_match[] = {
1197 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001198 .compatible = "snps,dwc3"
1199 },
1200 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301201 .compatible = "synopsys,dwc3"
1202 },
1203 { },
1204};
1205MODULE_DEVICE_TABLE(of, of_dwc3_match);
1206#endif
1207
Heikki Krogerus404905a2014-09-25 10:57:02 +03001208#ifdef CONFIG_ACPI
1209
1210#define ACPI_ID_INTEL_BSW "808622B7"
1211
1212static const struct acpi_device_id dwc3_acpi_match[] = {
1213 { ACPI_ID_INTEL_BSW, 0 },
1214 { },
1215};
1216MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1217#endif
1218
Felipe Balbi72246da2011-08-19 18:10:58 +03001219static struct platform_driver dwc3_driver = {
1220 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001221 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001222 .driver = {
1223 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301224 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001225 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001226 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001227 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001228};
1229
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001230module_platform_driver(dwc3_driver);
1231
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001232MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001233MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001234MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001235MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");