blob: fa20f5a99d125aad27d28717683b5447a419fedf [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 Siewior3140e8cb2011-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;
206 int i;
207
Felipe Balbi9f622b22011-10-12 10:31:04 +0300208 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300209 evt = dwc->ev_buffs[i];
Anton Tikhomirov64b6c8a2012-03-06 17:05:15 +0900210 if (evt)
Felipe Balbi72246da2011-08-19 18:10:58 +0300211 dwc3_free_one_event_buffer(dwc, evt);
Felipe Balbi72246da2011-08-19 18:10:58 +0300212 }
213}
214
215/**
216 * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
Paul Zimmerman1d046792012-02-15 18:56:56 -0800217 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300218 * @length: size of event buffer
219 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800220 * Returns 0 on success otherwise negative errno. In the error case, dwc
Felipe Balbi72246da2011-08-19 18:10:58 +0300221 * may contain some buffers allocated but not all which were requested.
222 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500223static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
Felipe Balbi72246da2011-08-19 18:10:58 +0300224{
Felipe Balbi9f622b22011-10-12 10:31:04 +0300225 int num;
Felipe Balbi72246da2011-08-19 18:10:58 +0300226 int i;
227
Felipe Balbi9f622b22011-10-12 10:31:04 +0300228 num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
229 dwc->num_event_buffers = num;
230
Felipe Balbi380f0d22012-10-11 13:48:36 +0300231 dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num,
232 GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900233 if (!dwc->ev_buffs)
Felipe Balbi457d3f22011-10-24 12:03:13 +0300234 return -ENOMEM;
Felipe Balbi457d3f22011-10-24 12:03:13 +0300235
Felipe Balbi72246da2011-08-19 18:10:58 +0300236 for (i = 0; i < num; i++) {
237 struct dwc3_event_buffer *evt;
238
239 evt = dwc3_alloc_one_event_buffer(dwc, length);
240 if (IS_ERR(evt)) {
241 dev_err(dwc->dev, "can't allocate event buffer\n");
242 return PTR_ERR(evt);
243 }
244 dwc->ev_buffs[i] = evt;
245 }
246
247 return 0;
248}
249
250/**
251 * dwc3_event_buffers_setup - setup our allocated event buffers
Paul Zimmerman1d046792012-02-15 18:56:56 -0800252 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +0300253 *
254 * Returns 0 on success otherwise negative errno.
255 */
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300256static int dwc3_event_buffers_setup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300257{
258 struct dwc3_event_buffer *evt;
259 int n;
260
Felipe Balbi9f622b22011-10-12 10:31:04 +0300261 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300262 evt = dwc->ev_buffs[n];
Felipe Balbi1407bf12015-11-16 16:06:37 -0600263 dwc3_trace(trace_dwc3_core,
264 "Event buf %p dma %08llx length %d\n",
Felipe Balbi72246da2011-08-19 18:10:58 +0300265 evt->buf, (unsigned long long) evt->dma,
266 evt->length);
267
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300268 evt->lpos = 0;
269
Felipe Balbi72246da2011-08-19 18:10:58 +0300270 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n),
271 lower_32_bits(evt->dma));
272 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n),
273 upper_32_bits(evt->dma));
274 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n),
Felipe Balbi68d6a012013-06-12 21:09:26 +0300275 DWC3_GEVNTSIZ_SIZE(evt->length));
Felipe Balbi72246da2011-08-19 18:10:58 +0300276 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
277 }
278
279 return 0;
280}
281
282static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
283{
284 struct dwc3_event_buffer *evt;
285 int n;
286
Felipe Balbi9f622b22011-10-12 10:31:04 +0300287 for (n = 0; n < dwc->num_event_buffers; n++) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300288 evt = dwc->ev_buffs[n];
Paul Zimmerman7acd85e2012-04-27 14:28:02 +0300289
290 evt->lpos = 0;
291
Felipe Balbi72246da2011-08-19 18:10:58 +0300292 dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
293 dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
Felipe Balbi68d6a012013-06-12 21:09:26 +0300294 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK
295 | DWC3_GEVNTSIZ_SIZE(0));
Felipe Balbi72246da2011-08-19 18:10:58 +0300296 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0);
297 }
298}
299
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600300static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc)
301{
302 if (!dwc->has_hibernation)
303 return 0;
304
305 if (!dwc->nr_scratch)
306 return 0;
307
308 dwc->scratchbuf = kmalloc_array(dwc->nr_scratch,
309 DWC3_SCRATCHBUF_SIZE, GFP_KERNEL);
310 if (!dwc->scratchbuf)
311 return -ENOMEM;
312
313 return 0;
314}
315
316static int dwc3_setup_scratch_buffers(struct dwc3 *dwc)
317{
318 dma_addr_t scratch_addr;
319 u32 param;
320 int ret;
321
322 if (!dwc->has_hibernation)
323 return 0;
324
325 if (!dwc->nr_scratch)
326 return 0;
327
328 /* should never fall here */
329 if (!WARN_ON(dwc->scratchbuf))
330 return 0;
331
332 scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf,
333 dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE,
334 DMA_BIDIRECTIONAL);
335 if (dma_mapping_error(dwc->dev, scratch_addr)) {
336 dev_err(dwc->dev, "failed to map scratch buffer\n");
337 ret = -EFAULT;
338 goto err0;
339 }
340
341 dwc->scratch_addr = scratch_addr;
342
343 param = lower_32_bits(scratch_addr);
344
345 ret = dwc3_send_gadget_generic_command(dwc,
346 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param);
347 if (ret < 0)
348 goto err1;
349
350 param = upper_32_bits(scratch_addr);
351
352 ret = dwc3_send_gadget_generic_command(dwc,
353 DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param);
354 if (ret < 0)
355 goto err1;
356
357 return 0;
358
359err1:
360 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
361 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
362
363err0:
364 return ret;
365}
366
367static void dwc3_free_scratch_buffers(struct dwc3 *dwc)
368{
369 if (!dwc->has_hibernation)
370 return;
371
372 if (!dwc->nr_scratch)
373 return;
374
375 /* should never fall here */
376 if (!WARN_ON(dwc->scratchbuf))
377 return;
378
379 dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch *
380 DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL);
381 kfree(dwc->scratchbuf);
382}
383
Felipe Balbi789451f62011-05-05 15:53:10 +0300384static void dwc3_core_num_eps(struct dwc3 *dwc)
385{
386 struct dwc3_hwparams *parms = &dwc->hwparams;
387
388 dwc->num_in_eps = DWC3_NUM_IN_EPS(parms);
389 dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps;
390
Felipe Balbi73815282015-01-27 13:48:14 -0600391 dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints",
Felipe Balbi789451f62011-05-05 15:53:10 +0300392 dwc->num_in_eps, dwc->num_out_eps);
393}
394
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500395static void dwc3_cache_hwparams(struct dwc3 *dwc)
Felipe Balbi26ceca92011-09-30 10:58:49 +0300396{
397 struct dwc3_hwparams *parms = &dwc->hwparams;
398
399 parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0);
400 parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1);
401 parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2);
402 parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3);
403 parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4);
404 parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5);
405 parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6);
406 parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7);
407 parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8);
408}
409
Felipe Balbi72246da2011-08-19 18:10:58 +0300410/**
Huang Ruib5a65c42014-10-28 19:54:28 +0800411 * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core
412 * @dwc: Pointer to our controller context structure
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300413 *
414 * Returns 0 on success. The USB PHY interfaces are configured but not
415 * initialized. The PHY interfaces and the PHYs get initialized together with
416 * the core in dwc3_core_init.
Huang Ruib5a65c42014-10-28 19:54:28 +0800417 */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300418static int dwc3_phy_setup(struct dwc3 *dwc)
Huang Ruib5a65c42014-10-28 19:54:28 +0800419{
420 u32 reg;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300421 int ret;
Huang Ruib5a65c42014-10-28 19:54:28 +0800422
423 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
424
Huang Rui2164a472014-10-28 19:54:35 +0800425 /*
426 * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY
427 * to '0' during coreConsultant configuration. So default value
428 * will be '0' when the core is reset. Application needs to set it
429 * to '1' after the core initialization is completed.
430 */
431 if (dwc->revision > DWC3_REVISION_194A)
432 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
433
Huang Ruib5a65c42014-10-28 19:54:28 +0800434 if (dwc->u2ss_inp3_quirk)
435 reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK;
436
Huang Ruidf31f5b2014-10-28 19:54:29 +0800437 if (dwc->req_p1p2p3_quirk)
438 reg |= DWC3_GUSB3PIPECTL_REQP1P2P3;
439
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800440 if (dwc->del_p1p2p3_quirk)
441 reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN;
442
Huang Rui41c06ff2014-10-28 19:54:31 +0800443 if (dwc->del_phy_power_chg_quirk)
444 reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE;
445
Huang Ruifb67afc2014-10-28 19:54:32 +0800446 if (dwc->lfps_filter_quirk)
447 reg |= DWC3_GUSB3PIPECTL_LFPSFILT;
448
Huang Rui14f4ac52014-10-28 19:54:33 +0800449 if (dwc->rx_detect_poll_quirk)
450 reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL;
451
Huang Rui6b6a0c92014-10-31 11:11:12 +0800452 if (dwc->tx_de_emphasis_quirk)
453 reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis);
454
Felipe Balbicd72f892014-11-06 11:31:00 -0600455 if (dwc->dis_u3_susphy_quirk)
Huang Rui59acfa22014-10-31 11:11:13 +0800456 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
457
Huang Ruib5a65c42014-10-28 19:54:28 +0800458 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
459
Huang Rui2164a472014-10-28 19:54:35 +0800460 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
461
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300462 /* Select the HS PHY interface */
463 switch (DWC3_GHWPARAMS3_HSPHY_IFC(dwc->hwparams.hwparams3)) {
464 case DWC3_GHWPARAMS3_HSPHY_IFC_UTMI_ULPI:
Felipe Balbi43cacb02015-07-01 22:03:09 -0500465 if (dwc->hsphy_interface &&
466 !strncmp(dwc->hsphy_interface, "utmi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300467 reg &= ~DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300468 break;
Felipe Balbi43cacb02015-07-01 22:03:09 -0500469 } else if (dwc->hsphy_interface &&
470 !strncmp(dwc->hsphy_interface, "ulpi", 4)) {
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300471 reg |= DWC3_GUSB2PHYCFG_ULPI_UTMI;
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300472 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300473 } else {
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300474 /* Relying on default value. */
475 if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))
476 break;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300477 }
478 /* FALLTHROUGH */
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300479 case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI:
480 /* Making sure the interface and PHY are operational */
481 ret = dwc3_soft_reset(dwc);
482 if (ret)
483 return ret;
484
485 udelay(1);
486
487 ret = dwc3_ulpi_init(dwc);
488 if (ret)
489 return ret;
490 /* FALLTHROUGH */
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300491 default:
492 break;
493 }
494
Huang Rui2164a472014-10-28 19:54:35 +0800495 /*
496 * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to
497 * '0' during coreConsultant configuration. So default value will
498 * be '0' when the core is reset. Application needs to set it to
499 * '1' after the core initialization is completed.
500 */
501 if (dwc->revision > DWC3_REVISION_194A)
502 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
503
Felipe Balbicd72f892014-11-06 11:31:00 -0600504 if (dwc->dis_u2_susphy_quirk)
Huang Rui0effe0a2014-10-31 11:11:14 +0800505 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
506
John Younec791d12015-10-02 20:30:57 -0700507 if (dwc->dis_enblslpm_quirk)
508 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
509
Huang Rui2164a472014-10-28 19:54:35 +0800510 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300511
512 return 0;
Huang Ruib5a65c42014-10-28 19:54:28 +0800513}
514
515/**
Felipe Balbi72246da2011-08-19 18:10:58 +0300516 * dwc3_core_init - Low-level initialization of DWC3 Core
517 * @dwc: Pointer to our controller context structure
518 *
519 * Returns 0 on success otherwise negative errno.
520 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500521static int dwc3_core_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300522{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600523 u32 hwparams4 = dwc->hwparams.hwparams4;
Felipe Balbi72246da2011-08-19 18:10:58 +0300524 u32 reg;
525 int ret;
526
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200527 reg = dwc3_readl(dwc->regs, DWC3_GSNPSID);
528 /* This should read as U3 followed by revision number */
John Youn690fb372015-09-04 19:15:10 -0700529 if ((reg & DWC3_GSNPSID_MASK) == 0x55330000) {
530 /* Detected DWC_usb3 IP */
531 dwc->revision = reg;
532 } else if ((reg & DWC3_GSNPSID_MASK) == 0x33310000) {
533 /* Detected DWC_usb31 IP */
534 dwc->revision = dwc3_readl(dwc->regs, DWC3_VER_NUMBER);
535 dwc->revision |= DWC3_REVISION_IS_DWC31;
536 } else {
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200537 dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n");
538 ret = -ENODEV;
539 goto err0;
540 }
Sebastian Andrzej Siewior7650bd72011-08-29 13:56:36 +0200541
Felipe Balbifa0ea132014-09-19 15:51:11 -0500542 /*
543 * Write Linux Version Code to our GUID register so it's easy to figure
544 * out which kernel version a bug was found.
545 */
546 dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE);
547
Paul Zimmerman0e1e5c42014-05-23 11:39:24 -0700548 /* Handle USB2.0-only core configuration */
549 if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
550 DWC3_GHWPARAMS3_SSPHY_IFC_DIS) {
551 if (dwc->maximum_speed == USB_SPEED_SUPER)
552 dwc->maximum_speed = USB_SPEED_HIGH;
553 }
554
Felipe Balbi72246da2011-08-19 18:10:58 +0300555 /* issue device SoftReset too */
Heikki Krogerusc5cc74e2015-05-13 15:26:47 +0300556 ret = dwc3_soft_reset(dwc);
557 if (ret)
558 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300559
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530560 ret = dwc3_core_soft_reset(dwc);
561 if (ret)
562 goto err0;
Pratyush Anand58a0f232012-06-21 17:44:29 +0530563
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100564 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
Paul Zimmerman3e87c422012-02-24 17:32:13 -0800565 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100566
Sebastian Andrzej Siewior164d7732011-11-24 11:22:05 +0100567 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100568 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
Felipe Balbi32a4a132014-02-25 14:00:13 -0600569 /**
570 * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
571 * issue which would cause xHCI compliance tests to fail.
572 *
573 * Because of that we cannot enable clock gating on such
574 * configurations.
575 *
576 * Refers to:
577 *
578 * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based
579 * SOF/ITP Mode Used
580 */
581 if ((dwc->dr_mode == USB_DR_MODE_HOST ||
582 dwc->dr_mode == USB_DR_MODE_OTG) &&
583 (dwc->revision >= DWC3_REVISION_210A &&
584 dwc->revision <= DWC3_REVISION_250A))
585 reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC;
586 else
587 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100588 break;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600589 case DWC3_GHWPARAMS1_EN_PWROPT_HIB:
590 /* enable hibernation here */
591 dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4);
Huang Rui2eac3992014-10-28 19:54:22 +0800592
593 /*
594 * REVISIT Enabling this bit so that host-mode hibernation
595 * will work. Device-mode hibernation is not yet implemented.
596 */
597 reg |= DWC3_GCTL_GBLHIBERNATIONEN;
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600598 break;
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100599 default:
Felipe Balbi1407bf12015-11-16 16:06:37 -0600600 dwc3_trace(trace_dwc3_core, "No power optimization available\n");
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100601 }
602
Huang Rui946bd572014-10-28 19:54:23 +0800603 /* check if current dwc3 is on simulation board */
604 if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
Felipe Balbi1407bf12015-11-16 16:06:37 -0600605 dwc3_trace(trace_dwc3_core,
606 "running on FPGA platform\n");
Huang Rui946bd572014-10-28 19:54:23 +0800607 dwc->is_fpga = true;
608 }
609
Huang Rui3b812212014-10-28 19:54:25 +0800610 WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga,
611 "disable_scramble cannot be used on non-FPGA builds\n");
612
613 if (dwc->disable_scramble_quirk && dwc->is_fpga)
614 reg |= DWC3_GCTL_DISSCRAMBLE;
615 else
616 reg &= ~DWC3_GCTL_DISSCRAMBLE;
617
Huang Rui9a5b2f32014-10-28 19:54:27 +0800618 if (dwc->u2exit_lfps_quirk)
619 reg |= DWC3_GCTL_U2EXIT_LFPS;
620
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100621 /*
622 * WORKAROUND: DWC3 revisions <1.90a have a bug
Paul Zimmerman1d046792012-02-15 18:56:56 -0800623 * where the device can fail to connect at SuperSpeed
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100624 * and falls back to high-speed mode which causes
Paul Zimmerman1d046792012-02-15 18:56:56 -0800625 * the device to enter a Connect/Disconnect loop
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100626 */
627 if (dwc->revision < DWC3_REVISION_190A)
628 reg |= DWC3_GCTL_U2RSTECN;
629
Felipe Balbi789451f62011-05-05 15:53:10 +0300630 dwc3_core_num_eps(dwc);
631
Sebastian Andrzej Siewior4878a022011-10-31 22:25:41 +0100632 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
633
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600634 ret = dwc3_alloc_scratch_buffers(dwc);
635 if (ret)
636 goto err1;
637
638 ret = dwc3_setup_scratch_buffers(dwc);
639 if (ret)
640 goto err2;
641
Felipe Balbi72246da2011-08-19 18:10:58 +0300642 return 0;
643
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600644err2:
645 dwc3_free_scratch_buffers(dwc);
646
647err1:
648 usb_phy_shutdown(dwc->usb2_phy);
649 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530650 phy_exit(dwc->usb2_generic_phy);
651 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600652
Felipe Balbi72246da2011-08-19 18:10:58 +0300653err0:
654 return ret;
655}
656
657static void dwc3_core_exit(struct dwc3 *dwc)
658{
Felipe Balbi0ffcaf32013-12-19 13:04:28 -0600659 dwc3_free_scratch_buffers(dwc);
Vivek Gautam01b8daf2012-10-13 19:20:18 +0530660 usb_phy_shutdown(dwc->usb2_phy);
661 usb_phy_shutdown(dwc->usb3_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530662 phy_exit(dwc->usb2_generic_phy);
663 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi72246da2011-08-19 18:10:58 +0300664}
665
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500666static int dwc3_core_get_phy(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300667{
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500668 struct device *dev = dwc->dev;
Felipe Balbi941ea362013-07-31 09:21:25 +0300669 struct device_node *node = dev->of_node;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500670 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300671
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530672 if (node) {
673 dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0);
674 dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1);
Felipe Balbibb674902013-08-14 13:21:23 -0500675 } else {
676 dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
677 dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3);
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +0530678 }
679
Felipe Balbid105e7f2013-03-15 10:52:08 +0200680 if (IS_ERR(dwc->usb2_phy)) {
681 ret = PTR_ERR(dwc->usb2_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530682 if (ret == -ENXIO || ret == -ENODEV) {
683 dwc->usb2_phy = NULL;
684 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200685 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530686 } else {
687 dev_err(dev, "no usb2 phy configured\n");
688 return ret;
689 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300690 }
691
Felipe Balbid105e7f2013-03-15 10:52:08 +0200692 if (IS_ERR(dwc->usb3_phy)) {
Ruchika Kharwar315955d72013-07-04 00:59:34 -0500693 ret = PTR_ERR(dwc->usb3_phy);
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530694 if (ret == -ENXIO || ret == -ENODEV) {
695 dwc->usb3_phy = NULL;
696 } else if (ret == -EPROBE_DEFER) {
Felipe Balbid105e7f2013-03-15 10:52:08 +0200697 return ret;
Kishon Vijay Abraham I122f06e2014-03-03 17:08:10 +0530698 } else {
699 dev_err(dev, "no usb3 phy configured\n");
700 return ret;
701 }
Felipe Balbi51e1e7b2012-07-19 14:09:48 +0300702 }
703
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +0530704 dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy");
705 if (IS_ERR(dwc->usb2_generic_phy)) {
706 ret = PTR_ERR(dwc->usb2_generic_phy);
707 if (ret == -ENOSYS || ret == -ENODEV) {
708 dwc->usb2_generic_phy = NULL;
709 } else if (ret == -EPROBE_DEFER) {
710 return ret;
711 } else {
712 dev_err(dev, "no usb2 phy configured\n");
713 return ret;
714 }
715 }
716
717 dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy");
718 if (IS_ERR(dwc->usb3_generic_phy)) {
719 ret = PTR_ERR(dwc->usb3_generic_phy);
720 if (ret == -ENOSYS || ret == -ENODEV) {
721 dwc->usb3_generic_phy = NULL;
722 } else if (ret == -EPROBE_DEFER) {
723 return ret;
724 } else {
725 dev_err(dev, "no usb3 phy configured\n");
726 return ret;
727 }
728 }
729
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500730 return 0;
731}
732
Felipe Balbi5f94adf2014-04-16 15:13:45 -0500733static int dwc3_core_init_mode(struct dwc3 *dwc)
734{
735 struct device *dev = dwc->dev;
736 int ret;
737
738 switch (dwc->dr_mode) {
739 case USB_DR_MODE_PERIPHERAL:
740 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE);
741 ret = dwc3_gadget_init(dwc);
742 if (ret) {
743 dev_err(dev, "failed to initialize gadget\n");
744 return ret;
745 }
746 break;
747 case USB_DR_MODE_HOST:
748 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST);
749 ret = dwc3_host_init(dwc);
750 if (ret) {
751 dev_err(dev, "failed to initialize host\n");
752 return ret;
753 }
754 break;
755 case USB_DR_MODE_OTG:
756 dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG);
757 ret = dwc3_host_init(dwc);
758 if (ret) {
759 dev_err(dev, "failed to initialize host\n");
760 return ret;
761 }
762
763 ret = dwc3_gadget_init(dwc);
764 if (ret) {
765 dev_err(dev, "failed to initialize gadget\n");
766 return ret;
767 }
768 break;
769 default:
770 dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode);
771 return -EINVAL;
772 }
773
774 return 0;
775}
776
777static void dwc3_core_exit_mode(struct dwc3 *dwc)
778{
779 switch (dwc->dr_mode) {
780 case USB_DR_MODE_PERIPHERAL:
781 dwc3_gadget_exit(dwc);
782 break;
783 case USB_DR_MODE_HOST:
784 dwc3_host_exit(dwc);
785 break;
786 case USB_DR_MODE_OTG:
787 dwc3_host_exit(dwc);
788 dwc3_gadget_exit(dwc);
789 break;
790 default:
791 /* do nothing */
792 break;
793 }
794}
795
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500796#define DWC3_ALIGN_MASK (16 - 1)
797
798static int dwc3_probe(struct platform_device *pdev)
799{
800 struct device *dev = &pdev->dev;
801 struct dwc3_platform_data *pdata = dev_get_platdata(dev);
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500802 struct resource *res;
803 struct dwc3 *dwc;
Huang Rui80caf7d2014-10-28 19:54:26 +0800804 u8 lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800805 u8 tx_de_emphasis;
Huang Rui460d0982014-10-31 11:11:18 +0800806 u8 hird_threshold;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530807 u32 fladj = 0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500808
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300809 int ret;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500810
811 void __iomem *regs;
812 void *mem;
813
814 mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900815 if (!mem)
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500816 return -ENOMEM;
Jingoo Han734d5a52014-07-17 12:45:11 +0900817
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500818 dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
819 dwc->mem = mem;
820 dwc->dev = dev;
821
822 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
823 if (!res) {
824 dev_err(dev, "missing IRQ\n");
825 return -ENODEV;
826 }
827 dwc->xhci_resources[1].start = res->start;
828 dwc->xhci_resources[1].end = res->end;
829 dwc->xhci_resources[1].flags = res->flags;
830 dwc->xhci_resources[1].name = res->name;
831
832 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
833 if (!res) {
834 dev_err(dev, "missing memory resource\n");
835 return -ENODEV;
836 }
837
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530838 dwc->xhci_resources[0].start = res->start;
839 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
840 DWC3_XHCI_REGS_END;
841 dwc->xhci_resources[0].flags = res->flags;
842 dwc->xhci_resources[0].name = res->name;
843
844 res->start += DWC3_GLOBALS_REGS_START;
845
846 /*
847 * Request memory region but exclude xHCI regs,
848 * since it will be requested by the xhci-plat driver.
849 */
850 regs = devm_ioremap_resource(dev, res);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500851 if (IS_ERR(regs)) {
852 ret = PTR_ERR(regs);
853 goto err0;
854 }
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530855
856 dwc->regs = regs;
857 dwc->regs_size = resource_size(res);
Vivek Gautamf32a5e22014-06-04 14:34:52 +0530858
Huang Rui80caf7d2014-10-28 19:54:26 +0800859 /* default to highest possible threshold */
860 lpm_nyet_threshold = 0xff;
861
Huang Rui6b6a0c92014-10-31 11:11:12 +0800862 /* default to -3.5dB de-emphasis */
863 tx_de_emphasis = 1;
864
Huang Rui460d0982014-10-31 11:11:18 +0800865 /*
866 * default to assert utmi_sleep_n and use maximum allowed HIRD
867 * threshold value of 0b1100
868 */
869 hird_threshold = 12;
870
Heikki Krogerus63863b92015-09-21 11:14:32 +0300871 dwc->maximum_speed = usb_get_maximum_speed(dev);
Heikki Krogerus06e71142015-09-21 11:14:34 +0300872 dwc->dr_mode = usb_get_dr_mode(dev);
Heikki Krogerus63863b92015-09-21 11:14:32 +0300873
Heikki Krogerus3d128912015-09-21 11:14:35 +0300874 dwc->has_lpm_erratum = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +0800875 "snps,has-lpm-erratum");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300876 device_property_read_u8(dev, "snps,lpm-nyet-threshold",
Huang Rui80caf7d2014-10-28 19:54:26 +0800877 &lpm_nyet_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300878 dwc->is_utmi_l1_suspend = device_property_read_bool(dev,
Huang Rui460d0982014-10-31 11:11:18 +0800879 "snps,is-utmi-l1-suspend");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300880 device_property_read_u8(dev, "snps,hird-threshold",
Huang Rui460d0982014-10-31 11:11:18 +0800881 &hird_threshold);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300882 dwc->usb3_lpm_capable = device_property_read_bool(dev,
Robert Baldygaeac68e82015-03-09 15:06:12 +0100883 "snps,usb3_lpm_capable");
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500884
Heikki Krogerus3d128912015-09-21 11:14:35 +0300885 dwc->needs_fifo_resize = device_property_read_bool(dev,
Huang Rui80caf7d2014-10-28 19:54:26 +0800886 "tx-fifo-resize");
Huang Rui3b812212014-10-28 19:54:25 +0800887
Heikki Krogerus3d128912015-09-21 11:14:35 +0300888 dwc->disable_scramble_quirk = device_property_read_bool(dev,
Huang Rui3b812212014-10-28 19:54:25 +0800889 "snps,disable_scramble_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300890 dwc->u2exit_lfps_quirk = device_property_read_bool(dev,
Huang Rui9a5b2f32014-10-28 19:54:27 +0800891 "snps,u2exit_lfps_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300892 dwc->u2ss_inp3_quirk = device_property_read_bool(dev,
Huang Ruib5a65c42014-10-28 19:54:28 +0800893 "snps,u2ss_inp3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300894 dwc->req_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruidf31f5b2014-10-28 19:54:29 +0800895 "snps,req_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300896 dwc->del_p1p2p3_quirk = device_property_read_bool(dev,
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800897 "snps,del_p1p2p3_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300898 dwc->del_phy_power_chg_quirk = device_property_read_bool(dev,
Huang Rui41c06ff2014-10-28 19:54:31 +0800899 "snps,del_phy_power_chg_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300900 dwc->lfps_filter_quirk = device_property_read_bool(dev,
Huang Ruifb67afc2014-10-28 19:54:32 +0800901 "snps,lfps_filter_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300902 dwc->rx_detect_poll_quirk = device_property_read_bool(dev,
Huang Rui14f4ac52014-10-28 19:54:33 +0800903 "snps,rx_detect_poll_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300904 dwc->dis_u3_susphy_quirk = device_property_read_bool(dev,
Huang Rui59acfa22014-10-31 11:11:13 +0800905 "snps,dis_u3_susphy_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300906 dwc->dis_u2_susphy_quirk = device_property_read_bool(dev,
Huang Rui0effe0a2014-10-31 11:11:14 +0800907 "snps,dis_u2_susphy_quirk");
John Younec791d12015-10-02 20:30:57 -0700908 dwc->dis_enblslpm_quirk = device_property_read_bool(dev,
909 "snps,dis_enblslpm_quirk");
Huang Rui6b6a0c92014-10-31 11:11:12 +0800910
Heikki Krogerus3d128912015-09-21 11:14:35 +0300911 dwc->tx_de_emphasis_quirk = device_property_read_bool(dev,
Huang Rui6b6a0c92014-10-31 11:11:12 +0800912 "snps,tx_de_emphasis_quirk");
Heikki Krogerus3d128912015-09-21 11:14:35 +0300913 device_property_read_u8(dev, "snps,tx_de_emphasis",
Huang Rui6b6a0c92014-10-31 11:11:12 +0800914 &tx_de_emphasis);
Heikki Krogerus3d128912015-09-21 11:14:35 +0300915 device_property_read_string(dev, "snps,hsphy_interface",
916 &dwc->hsphy_interface);
917 device_property_read_u32(dev, "snps,quirk-frame-length-adjustment",
918 &fladj);
919
920 if (pdata) {
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500921 dwc->maximum_speed = pdata->maximum_speed;
Huang Rui80caf7d2014-10-28 19:54:26 +0800922 dwc->has_lpm_erratum = pdata->has_lpm_erratum;
923 if (pdata->lpm_nyet_threshold)
924 lpm_nyet_threshold = pdata->lpm_nyet_threshold;
Huang Rui460d0982014-10-31 11:11:18 +0800925 dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
926 if (pdata->hird_threshold)
927 hird_threshold = pdata->hird_threshold;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500928
929 dwc->needs_fifo_resize = pdata->tx_fifo_resize;
Robert Baldygaeac68e82015-03-09 15:06:12 +0100930 dwc->usb3_lpm_capable = pdata->usb3_lpm_capable;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500931 dwc->dr_mode = pdata->dr_mode;
Huang Rui3b812212014-10-28 19:54:25 +0800932
933 dwc->disable_scramble_quirk = pdata->disable_scramble_quirk;
Huang Rui9a5b2f32014-10-28 19:54:27 +0800934 dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
Huang Ruib5a65c42014-10-28 19:54:28 +0800935 dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
Huang Ruidf31f5b2014-10-28 19:54:29 +0800936 dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
Huang Ruia2a1d0f2014-10-28 19:54:30 +0800937 dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
Huang Rui41c06ff2014-10-28 19:54:31 +0800938 dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk;
Huang Ruifb67afc2014-10-28 19:54:32 +0800939 dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
Huang Rui14f4ac52014-10-28 19:54:33 +0800940 dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk;
Huang Rui59acfa22014-10-31 11:11:13 +0800941 dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk;
Huang Rui0effe0a2014-10-31 11:11:14 +0800942 dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk;
John Younec791d12015-10-02 20:30:57 -0700943 dwc->dis_enblslpm_quirk = pdata->dis_enblslpm_quirk;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800944
945 dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk;
946 if (pdata->tx_de_emphasis)
947 tx_de_emphasis = pdata->tx_de_emphasis;
Heikki Krogerus3e10a2c2015-05-13 15:26:49 +0300948
949 dwc->hsphy_interface = pdata->hsphy_interface;
Nikhil Badoladb2be4e2015-09-04 10:15:58 +0530950 fladj = pdata->fladj_value;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500951 }
952
Huang Rui80caf7d2014-10-28 19:54:26 +0800953 dwc->lpm_nyet_threshold = lpm_nyet_threshold;
Huang Rui6b6a0c92014-10-31 11:11:12 +0800954 dwc->tx_de_emphasis = tx_de_emphasis;
Huang Rui80caf7d2014-10-28 19:54:26 +0800955
Huang Rui460d0982014-10-31 11:11:18 +0800956 dwc->hird_threshold = hird_threshold
957 | (dwc->is_utmi_l1_suspend << 4);
958
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300959 platform_set_drvdata(pdev, dwc);
Heikki Krogerus2917e712015-05-13 15:26:46 +0300960 dwc3_cache_hwparams(dwc);
Heikki Krogerus6c89cce02015-05-13 15:26:45 +0300961
Heikki Krogerus88bc9d12015-05-13 15:26:51 +0300962 ret = dwc3_phy_setup(dwc);
963 if (ret)
964 goto err0;
Heikki Krogerus45bb7de2015-05-13 15:26:48 +0300965
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500966 ret = dwc3_core_get_phy(dwc);
967 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500968 goto err0;
Felipe Balbi3c9f94a2014-04-16 15:08:29 -0500969
Felipe Balbi72246da2011-08-19 18:10:58 +0300970 spin_lock_init(&dwc->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +0300971
Heikki Krogerus19bacdc2014-09-24 11:00:38 +0300972 if (!dev->dma_mask) {
973 dev->dma_mask = dev->parent->dma_mask;
974 dev->dma_parms = dev->parent->dma_parms;
975 dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
976 }
Kishon Vijay Abraham Iddff14f2013-03-07 18:51:43 +0530977
Chanho Park802ca852012-02-15 18:27:55 +0900978 pm_runtime_enable(dev);
979 pm_runtime_get_sync(dev);
980 pm_runtime_forbid(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +0300981
Felipe Balbi39214262012-10-11 13:54:36 +0300982 ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
983 if (ret) {
984 dev_err(dwc->dev, "failed to allocate event buffers\n");
985 ret = -ENOMEM;
Felipe Balbi3da1f6e2014-09-02 15:19:43 -0500986 goto err1;
Felipe Balbi39214262012-10-11 13:54:36 +0300987 }
988
Felipe Balbi32a4a132014-02-25 14:00:13 -0600989 if (IS_ENABLED(CONFIG_USB_DWC3_HOST))
990 dwc->dr_mode = USB_DR_MODE_HOST;
991 else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET))
992 dwc->dr_mode = USB_DR_MODE_PERIPHERAL;
993
994 if (dwc->dr_mode == USB_DR_MODE_UNKNOWN)
995 dwc->dr_mode = USB_DR_MODE_OTG;
996
Felipe Balbi72246da2011-08-19 18:10:58 +0300997 ret = dwc3_core_init(dwc);
998 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900999 dev_err(dev, "failed to initialize core\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001000 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001001 }
1002
John Youn77966eb2016-02-19 17:31:01 -08001003 /* Check the maximum_speed parameter */
1004 switch (dwc->maximum_speed) {
1005 case USB_SPEED_LOW:
1006 case USB_SPEED_FULL:
1007 case USB_SPEED_HIGH:
1008 case USB_SPEED_SUPER:
1009 case USB_SPEED_SUPER_PLUS:
1010 break;
1011 default:
1012 dev_err(dev, "invalid maximum_speed parameter %d\n",
1013 dwc->maximum_speed);
1014 /* fall through */
1015 case USB_SPEED_UNKNOWN:
1016 /* default to superspeed */
John Youn2c7f1bd2016-02-05 17:08:59 -08001017 dwc->maximum_speed = USB_SPEED_SUPER;
1018
1019 /*
1020 * default to superspeed plus if we are capable.
1021 */
1022 if (dwc3_is_usb31(dwc) &&
1023 (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) ==
1024 DWC3_GHWPARAMS3_SSPHY_IFC_GEN2))
1025 dwc->maximum_speed = USB_SPEED_SUPER_PLUS;
John Youn77966eb2016-02-19 17:31:01 -08001026
1027 break;
John Youn2c7f1bd2016-02-05 17:08:59 -08001028 }
1029
Nikhil Badoladb2be4e2015-09-04 10:15:58 +05301030 /* Adjust Frame Length */
1031 dwc3_frame_length_adjustment(dwc, fladj);
1032
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301033 usb_phy_set_suspend(dwc->usb2_phy, 0);
1034 usb_phy_set_suspend(dwc->usb3_phy, 0);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301035 ret = phy_power_on(dwc->usb2_generic_phy);
1036 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001037 goto err2;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301038
1039 ret = phy_power_on(dwc->usb3_generic_phy);
1040 if (ret < 0)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001041 goto err3;
Kishon Vijay Abraham I3088f102013-11-25 15:31:21 +05301042
Felipe Balbif122d332013-02-08 15:15:11 +02001043 ret = dwc3_event_buffers_setup(dwc);
1044 if (ret) {
1045 dev_err(dwc->dev, "failed to setup event buffers\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001046 goto err4;
Felipe Balbif122d332013-02-08 15:15:11 +02001047 }
1048
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001049 ret = dwc3_core_init_mode(dwc);
1050 if (ret)
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001051 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03001052
1053 ret = dwc3_debugfs_init(dwc);
1054 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +09001055 dev_err(dev, "failed to initialize debugfs\n");
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001056 goto err6;
Felipe Balbi72246da2011-08-19 18:10:58 +03001057 }
1058
Chanho Park802ca852012-02-15 18:27:55 +09001059 pm_runtime_allow(dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03001060
1061 return 0;
1062
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001063err6:
Felipe Balbi5f94adf2014-04-16 15:13:45 -05001064 dwc3_core_exit_mode(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001065
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001066err5:
Felipe Balbif122d332013-02-08 15:15:11 +02001067 dwc3_event_buffers_cleanup(dwc);
1068
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001069err4:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301070 phy_power_off(dwc->usb3_generic_phy);
1071
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001072err3:
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301073 phy_power_off(dwc->usb2_generic_phy);
1074
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001075err2:
Kishon Vijay Abraham I501fae52013-11-25 15:31:22 +05301076 usb_phy_set_suspend(dwc->usb2_phy, 1);
1077 usb_phy_set_suspend(dwc->usb3_phy, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001078 dwc3_core_exit(dwc);
1079
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001080err1:
Felipe Balbi39214262012-10-11 13:54:36 +03001081 dwc3_free_event_buffers(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001082 dwc3_ulpi_exit(dwc);
Felipe Balbi39214262012-10-11 13:54:36 +03001083
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001084err0:
1085 /*
1086 * restore res->start back to its original value so that, in case the
1087 * probe is deferred, we don't end up getting error in request the
1088 * memory region the next time probe is called.
1089 */
1090 res->start -= DWC3_GLOBALS_REGS_START;
1091
Felipe Balbi72246da2011-08-19 18:10:58 +03001092 return ret;
1093}
1094
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001095static int dwc3_remove(struct platform_device *pdev)
Felipe Balbi72246da2011-08-19 18:10:58 +03001096{
Felipe Balbi72246da2011-08-19 18:10:58 +03001097 struct dwc3 *dwc = platform_get_drvdata(pdev);
Felipe Balbi3da1f6e2014-09-02 15:19:43 -05001098 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1099
1100 /*
1101 * restore res->start back to its original value so that, in case the
1102 * probe is deferred, we don't end up getting error in request the
1103 * memory region the next time probe is called.
1104 */
1105 res->start -= DWC3_GLOBALS_REGS_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001106
Felipe Balbidc99f162014-09-03 16:13:37 -05001107 dwc3_debugfs_exit(dwc);
1108 dwc3_core_exit_mode(dwc);
1109 dwc3_event_buffers_cleanup(dwc);
1110 dwc3_free_event_buffers(dwc);
1111
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301112 usb_phy_set_suspend(dwc->usb2_phy, 1);
1113 usb_phy_set_suspend(dwc->usb3_phy, 1);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301114 phy_power_off(dwc->usb2_generic_phy);
1115 phy_power_off(dwc->usb3_generic_phy);
Kishon Vijay Abraham I8ba007a2013-01-25 08:30:54 +05301116
Felipe Balbi72246da2011-08-19 18:10:58 +03001117 dwc3_core_exit(dwc);
Heikki Krogerus88bc9d12015-05-13 15:26:51 +03001118 dwc3_ulpi_exit(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001119
Felipe Balbi7415f172012-04-30 14:56:33 +03001120 pm_runtime_put_sync(&pdev->dev);
1121 pm_runtime_disable(&pdev->dev);
1122
Felipe Balbi72246da2011-08-19 18:10:58 +03001123 return 0;
1124}
1125
Felipe Balbi7415f172012-04-30 14:56:33 +03001126#ifdef CONFIG_PM_SLEEP
Felipe Balbi7415f172012-04-30 14:56:33 +03001127static int dwc3_suspend(struct device *dev)
1128{
1129 struct dwc3 *dwc = dev_get_drvdata(dev);
1130 unsigned long flags;
1131
1132 spin_lock_irqsave(&dwc->lock, flags);
1133
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001134 switch (dwc->dr_mode) {
1135 case USB_DR_MODE_PERIPHERAL:
1136 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001137 dwc3_gadget_suspend(dwc);
1138 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001139 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001140 default:
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001141 dwc3_event_buffers_cleanup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001142 break;
1143 }
1144
1145 dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL);
1146 spin_unlock_irqrestore(&dwc->lock, flags);
1147
1148 usb_phy_shutdown(dwc->usb3_phy);
1149 usb_phy_shutdown(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301150 phy_exit(dwc->usb2_generic_phy);
1151 phy_exit(dwc->usb3_generic_phy);
Felipe Balbi7415f172012-04-30 14:56:33 +03001152
Sekhar Nori63444752015-08-31 21:09:08 +05301153 pinctrl_pm_select_sleep_state(dev);
1154
Felipe Balbi7415f172012-04-30 14:56:33 +03001155 return 0;
1156}
1157
1158static int dwc3_resume(struct device *dev)
1159{
1160 struct dwc3 *dwc = dev_get_drvdata(dev);
1161 unsigned long flags;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301162 int ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001163
Sekhar Nori63444752015-08-31 21:09:08 +05301164 pinctrl_pm_select_default_state(dev);
1165
Felipe Balbi7415f172012-04-30 14:56:33 +03001166 usb_phy_init(dwc->usb3_phy);
1167 usb_phy_init(dwc->usb2_phy);
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301168 ret = phy_init(dwc->usb2_generic_phy);
1169 if (ret < 0)
1170 return ret;
1171
1172 ret = phy_init(dwc->usb3_generic_phy);
1173 if (ret < 0)
1174 goto err_usb2phy_init;
Felipe Balbi7415f172012-04-30 14:56:33 +03001175
1176 spin_lock_irqsave(&dwc->lock, flags);
1177
Felipe Balbi0b0231a2014-10-07 10:19:23 -05001178 dwc3_event_buffers_setup(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03001179 dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl);
1180
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001181 switch (dwc->dr_mode) {
1182 case USB_DR_MODE_PERIPHERAL:
1183 case USB_DR_MODE_OTG:
Felipe Balbi7415f172012-04-30 14:56:33 +03001184 dwc3_gadget_resume(dwc);
1185 /* FALLTHROUGH */
Ruchika Kharwara45c82b82013-07-06 07:52:49 -05001186 case USB_DR_MODE_HOST:
Felipe Balbi7415f172012-04-30 14:56:33 +03001187 default:
1188 /* do nothing */
1189 break;
1190 }
1191
1192 spin_unlock_irqrestore(&dwc->lock, flags);
1193
1194 pm_runtime_disable(dev);
1195 pm_runtime_set_active(dev);
1196 pm_runtime_enable(dev);
1197
1198 return 0;
Kishon Vijay Abraham I57303482014-03-03 17:08:11 +05301199
1200err_usb2phy_init:
1201 phy_exit(dwc->usb2_generic_phy);
1202
1203 return ret;
Felipe Balbi7415f172012-04-30 14:56:33 +03001204}
1205
1206static const struct dev_pm_ops dwc3_dev_pm_ops = {
Felipe Balbi7415f172012-04-30 14:56:33 +03001207 SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume)
1208};
1209
1210#define DWC3_PM_OPS &(dwc3_dev_pm_ops)
1211#else
1212#define DWC3_PM_OPS NULL
1213#endif
1214
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301215#ifdef CONFIG_OF
1216static const struct of_device_id of_dwc3_match[] = {
1217 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +03001218 .compatible = "snps,dwc3"
1219 },
1220 {
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301221 .compatible = "synopsys,dwc3"
1222 },
1223 { },
1224};
1225MODULE_DEVICE_TABLE(of, of_dwc3_match);
1226#endif
1227
Heikki Krogerus404905a2014-09-25 10:57:02 +03001228#ifdef CONFIG_ACPI
1229
1230#define ACPI_ID_INTEL_BSW "808622B7"
1231
1232static const struct acpi_device_id dwc3_acpi_match[] = {
1233 { ACPI_ID_INTEL_BSW, 0 },
1234 { },
1235};
1236MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
1237#endif
1238
Felipe Balbi72246da2011-08-19 18:10:58 +03001239static struct platform_driver dwc3_driver = {
1240 .probe = dwc3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05001241 .remove = dwc3_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +03001242 .driver = {
1243 .name = "dwc3",
Kishon Vijay Abraham I5088b6f2013-01-25 16:36:53 +05301244 .of_match_table = of_match_ptr(of_dwc3_match),
Heikki Krogerus404905a2014-09-25 10:57:02 +03001245 .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
Felipe Balbi7415f172012-04-30 14:56:33 +03001246 .pm = DWC3_PM_OPS,
Felipe Balbi72246da2011-08-19 18:10:58 +03001247 },
Felipe Balbi72246da2011-08-19 18:10:58 +03001248};
1249
Tobias Klauserb1116dc2012-02-28 12:57:20 +01001250module_platform_driver(dwc3_driver);
1251
Sebastian Andrzej Siewior7ae4fc42011-10-19 19:39:50 +02001252MODULE_ALIAS("platform:dwc3");
Felipe Balbi72246da2011-08-19 18:10:58 +03001253MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +03001254MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +03001255MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");