blob: 7195366e26bf1f48b923a1395055ce04a8e862db [file] [log] [blame]
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001/*
2 * core.c - DesignWare HS OTG Controller common routines
3 *
4 * Copyright (C) 2004-2013 Synopsys, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The names of the above-listed copyright holders may not be used
16 * to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * ALTERNATIVELY, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") as published by the Free Software
21 * Foundation; either version 2 of the License, or (at your option) any
22 * later version.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37/*
38 * The Core code provides basic services for accessing and managing the
39 * DWC_otg hardware. These services are used by both the Host Controller
40 * Driver and the Peripheral Controller Driver.
41 */
42#include <linux/kernel.h>
43#include <linux/module.h>
44#include <linux/moduleparam.h>
45#include <linux/spinlock.h>
46#include <linux/interrupt.h>
47#include <linux/dma-mapping.h>
48#include <linux/delay.h>
49#include <linux/io.h>
50#include <linux/slab.h>
51#include <linux/usb.h>
52
53#include <linux/usb/hcd.h>
54#include <linux/usb/ch11.h>
55
56#include "core.h"
57#include "hcd.h"
58
Gregory Herrerod17ee772015-04-29 22:09:01 +020059/**
60 * dwc2_backup_global_registers() - Backup global controller registers.
61 * When suspending usb bus, registers needs to be backuped
62 * if controller power is disabled once suspended.
63 *
64 * @hsotg: Programming view of the DWC_otg controller
65 */
66static int dwc2_backup_global_registers(struct dwc2_hsotg *hsotg)
67{
68 struct dwc2_gregs_backup *gr;
69 int i;
70
71 /* Backup global regs */
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +020072 gr = &hsotg->gr_backup;
Gregory Herrerod17ee772015-04-29 22:09:01 +020073
Antti Seppälä95c8bc32015-08-20 21:41:07 +030074 gr->gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
75 gr->gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
76 gr->gahbcfg = dwc2_readl(hsotg->regs + GAHBCFG);
77 gr->gusbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
78 gr->grxfsiz = dwc2_readl(hsotg->regs + GRXFSIZ);
79 gr->gnptxfsiz = dwc2_readl(hsotg->regs + GNPTXFSIZ);
80 gr->hptxfsiz = dwc2_readl(hsotg->regs + HPTXFSIZ);
81 gr->gdfifocfg = dwc2_readl(hsotg->regs + GDFIFOCFG);
Gregory Herrerod17ee772015-04-29 22:09:01 +020082 for (i = 0; i < MAX_EPS_CHANNELS; i++)
Antti Seppälä95c8bc32015-08-20 21:41:07 +030083 gr->dtxfsiz[i] = dwc2_readl(hsotg->regs + DPTXFSIZN(i));
Gregory Herrerod17ee772015-04-29 22:09:01 +020084
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +020085 gr->valid = true;
Gregory Herrerod17ee772015-04-29 22:09:01 +020086 return 0;
87}
88
89/**
90 * dwc2_restore_global_registers() - Restore controller global registers.
91 * When resuming usb bus, device registers needs to be restored
92 * if controller power were disabled.
93 *
94 * @hsotg: Programming view of the DWC_otg controller
95 */
96static int dwc2_restore_global_registers(struct dwc2_hsotg *hsotg)
97{
98 struct dwc2_gregs_backup *gr;
99 int i;
100
101 dev_dbg(hsotg->dev, "%s\n", __func__);
102
103 /* Restore global regs */
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200104 gr = &hsotg->gr_backup;
105 if (!gr->valid) {
Gregory Herrerod17ee772015-04-29 22:09:01 +0200106 dev_err(hsotg->dev, "%s: no global registers to restore\n",
John Youn9da51972017-01-17 20:30:27 -0800107 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200108 return -EINVAL;
109 }
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200110 gr->valid = false;
Gregory Herrerod17ee772015-04-29 22:09:01 +0200111
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300112 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
113 dwc2_writel(gr->gotgctl, hsotg->regs + GOTGCTL);
114 dwc2_writel(gr->gintmsk, hsotg->regs + GINTMSK);
115 dwc2_writel(gr->gusbcfg, hsotg->regs + GUSBCFG);
116 dwc2_writel(gr->gahbcfg, hsotg->regs + GAHBCFG);
117 dwc2_writel(gr->grxfsiz, hsotg->regs + GRXFSIZ);
118 dwc2_writel(gr->gnptxfsiz, hsotg->regs + GNPTXFSIZ);
119 dwc2_writel(gr->hptxfsiz, hsotg->regs + HPTXFSIZ);
120 dwc2_writel(gr->gdfifocfg, hsotg->regs + GDFIFOCFG);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200121 for (i = 0; i < MAX_EPS_CHANNELS; i++)
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300122 dwc2_writel(gr->dtxfsiz[i], hsotg->regs + DPTXFSIZN(i));
Gregory Herrerod17ee772015-04-29 22:09:01 +0200123
124 return 0;
125}
126
127/**
128 * dwc2_exit_hibernation() - Exit controller from Partial Power Down.
129 *
130 * @hsotg: Programming view of the DWC_otg controller
131 * @restore: Controller registers need to be restored
132 */
133int dwc2_exit_hibernation(struct dwc2_hsotg *hsotg, bool restore)
134{
135 u32 pcgcctl;
136 int ret = 0;
137
John Younbea8e862016-11-03 17:55:53 -0700138 if (!hsotg->params.hibernation)
Gregory Herrero285046a2015-04-29 22:09:19 +0200139 return -ENOTSUPP;
140
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300141 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200142 pcgcctl &= ~PCGCTL_STOPPCLK;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300143 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200144
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300145 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200146 pcgcctl &= ~PCGCTL_PWRCLMP;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300147 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200148
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300149 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200150 pcgcctl &= ~PCGCTL_RSTPDWNMODULE;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300151 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200152
153 udelay(100);
154 if (restore) {
155 ret = dwc2_restore_global_registers(hsotg);
156 if (ret) {
157 dev_err(hsotg->dev, "%s: failed to restore registers\n",
John Youn9da51972017-01-17 20:30:27 -0800158 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200159 return ret;
160 }
161 if (dwc2_is_host_mode(hsotg)) {
162 ret = dwc2_restore_host_registers(hsotg);
163 if (ret) {
164 dev_err(hsotg->dev, "%s: failed to restore host registers\n",
John Youn9da51972017-01-17 20:30:27 -0800165 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200166 return ret;
167 }
168 } else {
169 ret = dwc2_restore_device_registers(hsotg);
170 if (ret) {
171 dev_err(hsotg->dev, "%s: failed to restore device registers\n",
John Youn9da51972017-01-17 20:30:27 -0800172 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200173 return ret;
174 }
175 }
176 }
177
178 return ret;
179}
180
181/**
182 * dwc2_enter_hibernation() - Put controller in Partial Power Down.
183 *
184 * @hsotg: Programming view of the DWC_otg controller
185 */
186int dwc2_enter_hibernation(struct dwc2_hsotg *hsotg)
187{
188 u32 pcgcctl;
189 int ret = 0;
190
John Younbea8e862016-11-03 17:55:53 -0700191 if (!hsotg->params.hibernation)
Gregory Herrero285046a2015-04-29 22:09:19 +0200192 return -ENOTSUPP;
193
Gregory Herrerod17ee772015-04-29 22:09:01 +0200194 /* Backup all registers */
195 ret = dwc2_backup_global_registers(hsotg);
196 if (ret) {
197 dev_err(hsotg->dev, "%s: failed to backup global registers\n",
John Youn9da51972017-01-17 20:30:27 -0800198 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200199 return ret;
200 }
201
202 if (dwc2_is_host_mode(hsotg)) {
203 ret = dwc2_backup_host_registers(hsotg);
204 if (ret) {
205 dev_err(hsotg->dev, "%s: failed to backup host registers\n",
John Youn9da51972017-01-17 20:30:27 -0800206 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200207 return ret;
208 }
209 } else {
210 ret = dwc2_backup_device_registers(hsotg);
211 if (ret) {
212 dev_err(hsotg->dev, "%s: failed to backup device registers\n",
John Youn9da51972017-01-17 20:30:27 -0800213 __func__);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200214 return ret;
215 }
216 }
217
Gregory Herrerocad73da2015-09-22 15:16:49 +0200218 /*
219 * Clear any pending interrupts since dwc2 will not be able to
220 * clear them after entering hibernation.
221 */
222 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
223
Gregory Herrerod17ee772015-04-29 22:09:01 +0200224 /* Put the controller in low power state */
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300225 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200226
227 pcgcctl |= PCGCTL_PWRCLMP;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300228 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200229 ndelay(20);
230
231 pcgcctl |= PCGCTL_RSTPDWNMODULE;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300232 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200233 ndelay(20);
234
235 pcgcctl |= PCGCTL_STOPPCLK;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300236 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200237
238 return ret;
239}
240
John Younfef6bc32016-09-07 19:39:40 -0700241/**
242 * dwc2_wait_for_mode() - Waits for the controller mode.
243 * @hsotg: Programming view of the DWC_otg controller.
244 * @host_mode: If true, waits for host mode, otherwise device mode.
245 */
246static void dwc2_wait_for_mode(struct dwc2_hsotg *hsotg,
247 bool host_mode)
248{
249 ktime_t start;
250 ktime_t end;
251 unsigned int timeout = 110;
252
253 dev_vdbg(hsotg->dev, "Waiting for %s mode\n",
254 host_mode ? "host" : "device");
255
256 start = ktime_get();
257
258 while (1) {
259 s64 ms;
260
261 if (dwc2_is_host_mode(hsotg) == host_mode) {
262 dev_vdbg(hsotg->dev, "%s mode set\n",
263 host_mode ? "Host" : "Device");
264 break;
265 }
266
267 end = ktime_get();
268 ms = ktime_to_ms(ktime_sub(end, start));
269
270 if (ms >= (s64)timeout) {
271 dev_warn(hsotg->dev, "%s: Couldn't set %s mode\n",
272 __func__, host_mode ? "host" : "device");
273 break;
274 }
275
276 usleep_range(1000, 2000);
277 }
278}
279
280/**
281 * dwc2_iddig_filter_enabled() - Returns true if the IDDIG debounce
282 * filter is enabled.
283 */
284static bool dwc2_iddig_filter_enabled(struct dwc2_hsotg *hsotg)
285{
286 u32 gsnpsid;
287 u32 ghwcfg4;
288
289 if (!dwc2_hw_is_otg(hsotg))
290 return false;
291
292 /* Check if core configuration includes the IDDIG filter. */
293 ghwcfg4 = dwc2_readl(hsotg->regs + GHWCFG4);
294 if (!(ghwcfg4 & GHWCFG4_IDDIG_FILT_EN))
295 return false;
296
297 /*
298 * Check if the IDDIG debounce filter is bypassed. Available
299 * in core version >= 3.10a.
300 */
301 gsnpsid = dwc2_readl(hsotg->regs + GSNPSID);
302 if (gsnpsid >= DWC2_CORE_REV_3_10a) {
303 u32 gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
304
305 if (gotgctl & GOTGCTL_DBNCE_FLTR_BYPASS)
306 return false;
307 }
308
309 return true;
310}
311
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700312/*
313 * Do core a soft reset of the core. Be careful with this because it
314 * resets all the internal state machines of the core.
315 */
John Stultz6e6360b2017-01-23 14:59:14 -0800316int dwc2_core_reset(struct dwc2_hsotg *hsotg, bool skip_wait)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700317{
318 u32 greset;
319 int count = 0;
John Younfef6bc32016-09-07 19:39:40 -0700320 bool wait_for_host_mode = false;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700321
322 dev_vdbg(hsotg->dev, "%s()\n", __func__);
323
John Younfef6bc32016-09-07 19:39:40 -0700324 /*
325 * If the current mode is host, either due to the force mode
326 * bit being set (which persists after core reset) or the
327 * connector id pin, a core soft reset will temporarily reset
328 * the mode to device. A delay from the IDDIG debounce filter
329 * will occur before going back to host mode.
330 *
331 * Determine whether we will go back into host mode after a
332 * reset and account for this delay after the reset.
333 */
334 if (dwc2_iddig_filter_enabled(hsotg)) {
335 u32 gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
336 u32 gusbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
337
338 if (!(gotgctl & GOTGCTL_CONID_B) ||
339 (gusbcfg & GUSBCFG_FORCEHOSTMODE)) {
340 wait_for_host_mode = true;
341 }
342 }
343
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700344 /* Core Soft Reset */
John Younb8ccc592015-12-17 11:15:35 -0800345 greset = dwc2_readl(hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700346 greset |= GRSTCTL_CSFTRST;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300347 dwc2_writel(greset, hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700348 do {
Yunzhi Li20bde642015-12-17 11:15:08 -0800349 udelay(1);
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300350 greset = dwc2_readl(hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700351 if (++count > 50) {
352 dev_warn(hsotg->dev,
353 "%s() HANG! Soft Reset GRSTCTL=%0x\n",
354 __func__, greset);
Julien DELACOUbeb7e592013-11-20 17:29:49 +0100355 return -EBUSY;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700356 }
357 } while (greset & GRSTCTL_CSFTRST);
358
John Younb8ccc592015-12-17 11:15:35 -0800359 /* Wait for AHB master IDLE state */
360 count = 0;
361 do {
362 udelay(1);
363 greset = dwc2_readl(hsotg->regs + GRSTCTL);
364 if (++count > 50) {
365 dev_warn(hsotg->dev,
366 "%s() HANG! AHB Idle GRSTCTL=%0x\n",
367 __func__, greset);
368 return -EBUSY;
369 }
370 } while (!(greset & GRSTCTL_AHBIDLE));
371
John Stultz6e6360b2017-01-23 14:59:14 -0800372 if (wait_for_host_mode && !skip_wait)
John Younfef6bc32016-09-07 19:39:40 -0700373 dwc2_wait_for_mode(hsotg, true);
374
John Younb5d308a2015-12-17 11:16:03 -0800375 return 0;
376}
377
378/*
John Youn09c96982015-12-17 11:17:12 -0800379 * Force the mode of the controller.
380 *
381 * Forcing the mode is needed for two cases:
382 *
383 * 1) If the dr_mode is set to either HOST or PERIPHERAL we force the
384 * controller to stay in a particular mode regardless of ID pin
385 * changes. We do this usually after a core reset.
386 *
387 * 2) During probe we want to read reset values of the hw
388 * configuration registers that are only available in either host or
389 * device mode. We may need to force the mode if the current mode does
390 * not allow us to access the register in the mode that we want.
391 *
392 * In either case it only makes sense to force the mode if the
393 * controller hardware is OTG capable.
394 *
395 * Checks are done in this function to determine whether doing a force
396 * would be valid or not.
397 *
John Youn2938fc62016-09-07 19:39:43 -0700398 * If a force is done, it requires a IDDIG debounce filter delay if
399 * the filter is configured and enabled. We poll the current mode of
400 * the controller to account for this delay.
John Youn09c96982015-12-17 11:17:12 -0800401 */
402static bool dwc2_force_mode(struct dwc2_hsotg *hsotg, bool host)
403{
404 u32 gusbcfg;
405 u32 set;
406 u32 clear;
407
408 dev_dbg(hsotg->dev, "Forcing mode to %s\n", host ? "host" : "device");
409
410 /*
411 * Force mode has no effect if the hardware is not OTG.
412 */
413 if (!dwc2_hw_is_otg(hsotg))
414 return false;
415
416 /*
417 * If dr_mode is either peripheral or host only, there is no
418 * need to ever force the mode to the opposite mode.
419 */
420 if (WARN_ON(host && hsotg->dr_mode == USB_DR_MODE_PERIPHERAL))
421 return false;
422
423 if (WARN_ON(!host && hsotg->dr_mode == USB_DR_MODE_HOST))
424 return false;
425
426 gusbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
427
428 set = host ? GUSBCFG_FORCEHOSTMODE : GUSBCFG_FORCEDEVMODE;
429 clear = host ? GUSBCFG_FORCEDEVMODE : GUSBCFG_FORCEHOSTMODE;
430
John Youn09c96982015-12-17 11:17:12 -0800431 gusbcfg &= ~clear;
432 gusbcfg |= set;
433 dwc2_writel(gusbcfg, hsotg->regs + GUSBCFG);
434
John Youn2938fc62016-09-07 19:39:43 -0700435 dwc2_wait_for_mode(hsotg, host);
John Youn09c96982015-12-17 11:17:12 -0800436 return true;
437}
438
John Youn2938fc62016-09-07 19:39:43 -0700439/**
440 * dwc2_clear_force_mode() - Clears the force mode bits.
441 *
442 * After clearing the bits, wait up to 100 ms to account for any
443 * potential IDDIG filter delay. We can't know if we expect this delay
444 * or not because the value of the connector ID status is affected by
445 * the force mode. We only need to call this once during probe if
446 * dr_mode == OTG.
John Youn09c96982015-12-17 11:17:12 -0800447 */
John Youn323230e2016-11-03 17:55:50 -0700448void dwc2_clear_force_mode(struct dwc2_hsotg *hsotg)
John Youn09c96982015-12-17 11:17:12 -0800449{
450 u32 gusbcfg;
451
452 gusbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
453 gusbcfg &= ~GUSBCFG_FORCEHOSTMODE;
454 gusbcfg &= ~GUSBCFG_FORCEDEVMODE;
455 dwc2_writel(gusbcfg, hsotg->regs + GUSBCFG);
456
John Youn2938fc62016-09-07 19:39:43 -0700457 if (dwc2_iddig_filter_enabled(hsotg))
458 usleep_range(100000, 110000);
John Youn09c96982015-12-17 11:17:12 -0800459}
460
461/*
462 * Sets or clears force mode based on the dr_mode parameter.
463 */
464void dwc2_force_dr_mode(struct dwc2_hsotg *hsotg)
465{
Heiko Stuebnera07ce8d2016-10-14 10:47:24 -0700466 bool ret;
467
John Youn09c96982015-12-17 11:17:12 -0800468 switch (hsotg->dr_mode) {
469 case USB_DR_MODE_HOST:
Heiko Stuebnera07ce8d2016-10-14 10:47:24 -0700470 ret = dwc2_force_mode(hsotg, true);
471 /*
472 * NOTE: This is required for some rockchip soc based
473 * platforms on their host-only dwc2.
474 */
475 if (!ret)
476 msleep(50);
477
John Youn09c96982015-12-17 11:17:12 -0800478 break;
479 case USB_DR_MODE_PERIPHERAL:
480 dwc2_force_mode(hsotg, false);
481 break;
482 case USB_DR_MODE_OTG:
483 dwc2_clear_force_mode(hsotg);
484 break;
485 default:
486 dev_warn(hsotg->dev, "%s() Invalid dr_mode=%d\n",
487 __func__, hsotg->dr_mode);
488 break;
489 }
490}
491
492/*
John Younb5d308a2015-12-17 11:16:03 -0800493 * Do core a soft reset of the core. Be careful with this because it
494 * resets all the internal state machines of the core.
495 *
496 * Additionally this will apply force mode as per the hsotg->dr_mode
497 * parameter.
498 */
499int dwc2_core_reset_and_force_dr_mode(struct dwc2_hsotg *hsotg)
500{
501 int retval;
John Younb5d308a2015-12-17 11:16:03 -0800502
John Stultz6e6360b2017-01-23 14:59:14 -0800503 retval = dwc2_core_reset(hsotg, false);
John Younb5d308a2015-12-17 11:16:03 -0800504 if (retval)
505 return retval;
506
John Youn09c96982015-12-17 11:17:12 -0800507 dwc2_force_dr_mode(hsotg);
Julien DELACOUbeb7e592013-11-20 17:29:49 +0100508 return 0;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700509}
510
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700511/**
512 * dwc2_dump_host_registers() - Prints the host registers
513 *
514 * @hsotg: Programming view of DWC_otg controller
515 *
516 * NOTE: This function will be removed once the peripheral controller code
517 * is integrated and the driver is stable
518 */
519void dwc2_dump_host_registers(struct dwc2_hsotg *hsotg)
520{
521#ifdef DEBUG
522 u32 __iomem *addr;
523 int i;
524
525 dev_dbg(hsotg->dev, "Host Global Registers\n");
526 addr = hsotg->regs + HCFG;
527 dev_dbg(hsotg->dev, "HCFG @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300528 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700529 addr = hsotg->regs + HFIR;
530 dev_dbg(hsotg->dev, "HFIR @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300531 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700532 addr = hsotg->regs + HFNUM;
533 dev_dbg(hsotg->dev, "HFNUM @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300534 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700535 addr = hsotg->regs + HPTXSTS;
536 dev_dbg(hsotg->dev, "HPTXSTS @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300537 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700538 addr = hsotg->regs + HAINT;
539 dev_dbg(hsotg->dev, "HAINT @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300540 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700541 addr = hsotg->regs + HAINTMSK;
542 dev_dbg(hsotg->dev, "HAINTMSK @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300543 (unsigned long)addr, dwc2_readl(addr));
John Youn95832c02017-01-23 14:57:26 -0800544 if (hsotg->params.dma_desc_enable) {
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700545 addr = hsotg->regs + HFLBADDR;
546 dev_dbg(hsotg->dev, "HFLBADDR @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300547 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700548 }
549
550 addr = hsotg->regs + HPRT0;
551 dev_dbg(hsotg->dev, "HPRT0 @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300552 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700553
John Younbea8e862016-11-03 17:55:53 -0700554 for (i = 0; i < hsotg->params.host_channels; i++) {
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700555 dev_dbg(hsotg->dev, "Host Channel %d Specific Registers\n", i);
556 addr = hsotg->regs + HCCHAR(i);
557 dev_dbg(hsotg->dev, "HCCHAR @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300558 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700559 addr = hsotg->regs + HCSPLT(i);
560 dev_dbg(hsotg->dev, "HCSPLT @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300561 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700562 addr = hsotg->regs + HCINT(i);
563 dev_dbg(hsotg->dev, "HCINT @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300564 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700565 addr = hsotg->regs + HCINTMSK(i);
566 dev_dbg(hsotg->dev, "HCINTMSK @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300567 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700568 addr = hsotg->regs + HCTSIZ(i);
569 dev_dbg(hsotg->dev, "HCTSIZ @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300570 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700571 addr = hsotg->regs + HCDMA(i);
572 dev_dbg(hsotg->dev, "HCDMA @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300573 (unsigned long)addr, dwc2_readl(addr));
John Youn95832c02017-01-23 14:57:26 -0800574 if (hsotg->params.dma_desc_enable) {
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700575 addr = hsotg->regs + HCDMAB(i);
576 dev_dbg(hsotg->dev, "HCDMAB @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300577 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700578 }
579 }
580#endif
581}
582
583/**
584 * dwc2_dump_global_registers() - Prints the core global registers
585 *
586 * @hsotg: Programming view of DWC_otg controller
587 *
588 * NOTE: This function will be removed once the peripheral controller code
589 * is integrated and the driver is stable
590 */
591void dwc2_dump_global_registers(struct dwc2_hsotg *hsotg)
592{
593#ifdef DEBUG
594 u32 __iomem *addr;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700595
596 dev_dbg(hsotg->dev, "Core Global Registers\n");
597 addr = hsotg->regs + GOTGCTL;
598 dev_dbg(hsotg->dev, "GOTGCTL @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300599 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700600 addr = hsotg->regs + GOTGINT;
601 dev_dbg(hsotg->dev, "GOTGINT @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300602 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700603 addr = hsotg->regs + GAHBCFG;
604 dev_dbg(hsotg->dev, "GAHBCFG @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300605 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700606 addr = hsotg->regs + GUSBCFG;
607 dev_dbg(hsotg->dev, "GUSBCFG @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300608 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700609 addr = hsotg->regs + GRSTCTL;
610 dev_dbg(hsotg->dev, "GRSTCTL @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300611 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700612 addr = hsotg->regs + GINTSTS;
613 dev_dbg(hsotg->dev, "GINTSTS @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300614 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700615 addr = hsotg->regs + GINTMSK;
616 dev_dbg(hsotg->dev, "GINTMSK @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300617 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700618 addr = hsotg->regs + GRXSTSR;
619 dev_dbg(hsotg->dev, "GRXSTSR @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300620 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700621 addr = hsotg->regs + GRXFSIZ;
622 dev_dbg(hsotg->dev, "GRXFSIZ @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300623 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700624 addr = hsotg->regs + GNPTXFSIZ;
625 dev_dbg(hsotg->dev, "GNPTXFSIZ @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300626 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700627 addr = hsotg->regs + GNPTXSTS;
628 dev_dbg(hsotg->dev, "GNPTXSTS @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300629 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700630 addr = hsotg->regs + GI2CCTL;
631 dev_dbg(hsotg->dev, "GI2CCTL @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300632 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700633 addr = hsotg->regs + GPVNDCTL;
634 dev_dbg(hsotg->dev, "GPVNDCTL @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300635 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700636 addr = hsotg->regs + GGPIO;
637 dev_dbg(hsotg->dev, "GGPIO @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300638 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700639 addr = hsotg->regs + GUID;
640 dev_dbg(hsotg->dev, "GUID @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300641 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700642 addr = hsotg->regs + GSNPSID;
643 dev_dbg(hsotg->dev, "GSNPSID @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300644 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700645 addr = hsotg->regs + GHWCFG1;
646 dev_dbg(hsotg->dev, "GHWCFG1 @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300647 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700648 addr = hsotg->regs + GHWCFG2;
649 dev_dbg(hsotg->dev, "GHWCFG2 @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300650 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700651 addr = hsotg->regs + GHWCFG3;
652 dev_dbg(hsotg->dev, "GHWCFG3 @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300653 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700654 addr = hsotg->regs + GHWCFG4;
655 dev_dbg(hsotg->dev, "GHWCFG4 @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300656 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700657 addr = hsotg->regs + GLPMCFG;
658 dev_dbg(hsotg->dev, "GLPMCFG @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300659 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700660 addr = hsotg->regs + GPWRDN;
661 dev_dbg(hsotg->dev, "GPWRDN @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300662 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700663 addr = hsotg->regs + GDFIFOCFG;
664 dev_dbg(hsotg->dev, "GDFIFOCFG @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300665 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700666 addr = hsotg->regs + HPTXFSIZ;
667 dev_dbg(hsotg->dev, "HPTXFSIZ @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300668 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700669
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700670 addr = hsotg->regs + PCGCTL;
671 dev_dbg(hsotg->dev, "PCGCTL @0x%08lX : 0x%08X\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300672 (unsigned long)addr, dwc2_readl(addr));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700673#endif
674}
675
676/**
677 * dwc2_flush_tx_fifo() - Flushes a Tx FIFO
678 *
679 * @hsotg: Programming view of DWC_otg controller
680 * @num: Tx FIFO to flush
681 */
682void dwc2_flush_tx_fifo(struct dwc2_hsotg *hsotg, const int num)
683{
684 u32 greset;
685 int count = 0;
686
687 dev_vdbg(hsotg->dev, "Flush Tx FIFO %d\n", num);
688
689 greset = GRSTCTL_TXFFLSH;
690 greset |= num << GRSTCTL_TXFNUM_SHIFT & GRSTCTL_TXFNUM_MASK;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300691 dwc2_writel(greset, hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700692
693 do {
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300694 greset = dwc2_readl(hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700695 if (++count > 10000) {
696 dev_warn(hsotg->dev,
697 "%s() HANG! GRSTCTL=%0x GNPTXSTS=0x%08x\n",
698 __func__, greset,
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300699 dwc2_readl(hsotg->regs + GNPTXSTS));
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700700 break;
701 }
702 udelay(1);
703 } while (greset & GRSTCTL_TXFFLSH);
704
705 /* Wait for at least 3 PHY Clocks */
706 udelay(1);
707}
708
709/**
710 * dwc2_flush_rx_fifo() - Flushes the Rx FIFO
711 *
712 * @hsotg: Programming view of DWC_otg controller
713 */
714void dwc2_flush_rx_fifo(struct dwc2_hsotg *hsotg)
715{
716 u32 greset;
717 int count = 0;
718
719 dev_vdbg(hsotg->dev, "%s()\n", __func__);
720
721 greset = GRSTCTL_RXFFLSH;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300722 dwc2_writel(greset, hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700723
724 do {
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300725 greset = dwc2_readl(hsotg->regs + GRSTCTL);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700726 if (++count > 10000) {
727 dev_warn(hsotg->dev, "%s() HANG! GRSTCTL=%0x\n",
728 __func__, greset);
729 break;
730 }
731 udelay(1);
732 } while (greset & GRSTCTL_RXFFLSH);
733
734 /* Wait for at least 3 PHY Clocks */
735 udelay(1);
736}
737
John Youn09c96982015-12-17 11:17:12 -0800738/*
739 * Forces either host or device mode if the controller is not
740 * currently in that mode.
741 *
742 * Returns true if the mode was forced.
743 */
John Youn323230e2016-11-03 17:55:50 -0700744bool dwc2_force_mode_if_needed(struct dwc2_hsotg *hsotg, bool host)
John Youn09c96982015-12-17 11:17:12 -0800745{
746 if (host && dwc2_is_host_mode(hsotg))
747 return false;
748 else if (!host && dwc2_is_device_mode(hsotg))
749 return false;
750
751 return dwc2_force_mode(hsotg, host);
752}
753
Paul Zimmerman057715f2013-11-22 16:43:51 -0800754bool dwc2_is_controller_alive(struct dwc2_hsotg *hsotg)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700755{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300756 if (dwc2_readl(hsotg->regs + GSNPSID) == 0xffffffff)
Paul Zimmerman057715f2013-11-22 16:43:51 -0800757 return false;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700758 else
Paul Zimmerman057715f2013-11-22 16:43:51 -0800759 return true;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700760}
761
762/**
763 * dwc2_enable_global_interrupts() - Enables the controller's Global
764 * Interrupt in the AHB Config register
765 *
766 * @hsotg: Programming view of DWC_otg controller
767 */
768void dwc2_enable_global_interrupts(struct dwc2_hsotg *hsotg)
769{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300770 u32 ahbcfg = dwc2_readl(hsotg->regs + GAHBCFG);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700771
772 ahbcfg |= GAHBCFG_GLBL_INTR_EN;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300773 dwc2_writel(ahbcfg, hsotg->regs + GAHBCFG);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700774}
775
776/**
777 * dwc2_disable_global_interrupts() - Disables the controller's Global
778 * Interrupt in the AHB Config register
779 *
780 * @hsotg: Programming view of DWC_otg controller
781 */
782void dwc2_disable_global_interrupts(struct dwc2_hsotg *hsotg)
783{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300784 u32 ahbcfg = dwc2_readl(hsotg->regs + GAHBCFG);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700785
786 ahbcfg &= ~GAHBCFG_GLBL_INTR_EN;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300787 dwc2_writel(ahbcfg, hsotg->regs + GAHBCFG);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700788}
789
John Youn6bea9622015-12-17 11:16:17 -0800790/* Returns the controller's GHWCFG2.OTG_MODE. */
John Youn9da51972017-01-17 20:30:27 -0800791unsigned int dwc2_op_mode(struct dwc2_hsotg *hsotg)
John Youn6bea9622015-12-17 11:16:17 -0800792{
793 u32 ghwcfg2 = dwc2_readl(hsotg->regs + GHWCFG2);
794
795 return (ghwcfg2 & GHWCFG2_OP_MODE_MASK) >>
796 GHWCFG2_OP_MODE_SHIFT;
797}
798
799/* Returns true if the controller is capable of DRD. */
800bool dwc2_hw_is_otg(struct dwc2_hsotg *hsotg)
801{
John Youn9da51972017-01-17 20:30:27 -0800802 unsigned int op_mode = dwc2_op_mode(hsotg);
John Youn6bea9622015-12-17 11:16:17 -0800803
804 return (op_mode == GHWCFG2_OP_MODE_HNP_SRP_CAPABLE) ||
805 (op_mode == GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE) ||
806 (op_mode == GHWCFG2_OP_MODE_NO_HNP_SRP_CAPABLE);
807}
808
809/* Returns true if the controller is host-only. */
810bool dwc2_hw_is_host(struct dwc2_hsotg *hsotg)
811{
John Youn9da51972017-01-17 20:30:27 -0800812 unsigned int op_mode = dwc2_op_mode(hsotg);
John Youn6bea9622015-12-17 11:16:17 -0800813
814 return (op_mode == GHWCFG2_OP_MODE_SRP_CAPABLE_HOST) ||
815 (op_mode == GHWCFG2_OP_MODE_NO_SRP_CAPABLE_HOST);
816}
817
818/* Returns true if the controller is device-only. */
819bool dwc2_hw_is_device(struct dwc2_hsotg *hsotg)
820{
John Youn9da51972017-01-17 20:30:27 -0800821 unsigned int op_mode = dwc2_op_mode(hsotg);
John Youn6bea9622015-12-17 11:16:17 -0800822
823 return (op_mode == GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE) ||
824 (op_mode == GHWCFG2_OP_MODE_NO_SRP_CAPABLE_DEVICE);
825}
826
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700827MODULE_DESCRIPTION("DESIGNWARE HS OTG Core");
828MODULE_AUTHOR("Synopsys, Inc.");
829MODULE_LICENSE("Dual BSD/GPL");