2 * core.c - DesignWare HS OTG Controller common routines
4 * Copyright (C) 2004-2013 Synopsys, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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.
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
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.
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.
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>
50 #include <linux/slab.h>
51 #include <linux/usb.h>
53 #include <linux/usb/hcd.h>
54 #include <linux/usb/ch11.h>
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.
64 * @hsotg: Programming view of the DWC_otg controller
66 static int dwc2_backup_global_registers(struct dwc2_hsotg
*hsotg
)
68 struct dwc2_gregs_backup
*gr
;
71 /* Backup global regs */
72 gr
= &hsotg
->gr_backup
;
74 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
);
82 for (i
= 0; i
< MAX_EPS_CHANNELS
; i
++)
83 gr
->dtxfsiz
[i
] = dwc2_readl(hsotg
->regs
+ DPTXFSIZN(i
));
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.
94 * @hsotg: Programming view of the DWC_otg controller
96 static int dwc2_restore_global_registers(struct dwc2_hsotg
*hsotg
)
98 struct dwc2_gregs_backup
*gr
;
101 dev_dbg(hsotg
->dev
, "%s\n", __func__
);
103 /* Restore global regs */
104 gr
= &hsotg
->gr_backup
;
106 dev_err(hsotg
->dev
, "%s: no global registers to restore\n",
112 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
);
121 for (i
= 0; i
< MAX_EPS_CHANNELS
; i
++)
122 dwc2_writel(gr
->dtxfsiz
[i
], hsotg
->regs
+ DPTXFSIZN(i
));
128 * dwc2_exit_hibernation() - Exit controller from Partial Power Down.
130 * @hsotg: Programming view of the DWC_otg controller
131 * @restore: Controller registers need to be restored
133 int dwc2_exit_hibernation(struct dwc2_hsotg
*hsotg
, bool restore
)
138 if (!hsotg
->core_params
->hibernation
)
141 pcgcctl
= dwc2_readl(hsotg
->regs
+ PCGCTL
);
142 pcgcctl
&= ~PCGCTL_STOPPCLK
;
143 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
145 pcgcctl
= dwc2_readl(hsotg
->regs
+ PCGCTL
);
146 pcgcctl
&= ~PCGCTL_PWRCLMP
;
147 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
149 pcgcctl
= dwc2_readl(hsotg
->regs
+ PCGCTL
);
150 pcgcctl
&= ~PCGCTL_RSTPDWNMODULE
;
151 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
155 ret
= dwc2_restore_global_registers(hsotg
);
157 dev_err(hsotg
->dev
, "%s: failed to restore registers\n",
161 if (dwc2_is_host_mode(hsotg
)) {
162 ret
= dwc2_restore_host_registers(hsotg
);
164 dev_err(hsotg
->dev
, "%s: failed to restore host registers\n",
169 ret
= dwc2_restore_device_registers(hsotg
);
171 dev_err(hsotg
->dev
, "%s: failed to restore device registers\n",
182 * dwc2_enter_hibernation() - Put controller in Partial Power Down.
184 * @hsotg: Programming view of the DWC_otg controller
186 int dwc2_enter_hibernation(struct dwc2_hsotg
*hsotg
)
191 if (!hsotg
->core_params
->hibernation
)
194 /* Backup all registers */
195 ret
= dwc2_backup_global_registers(hsotg
);
197 dev_err(hsotg
->dev
, "%s: failed to backup global registers\n",
202 if (dwc2_is_host_mode(hsotg
)) {
203 ret
= dwc2_backup_host_registers(hsotg
);
205 dev_err(hsotg
->dev
, "%s: failed to backup host registers\n",
210 ret
= dwc2_backup_device_registers(hsotg
);
212 dev_err(hsotg
->dev
, "%s: failed to backup device registers\n",
219 * Clear any pending interrupts since dwc2 will not be able to
220 * clear them after entering hibernation.
222 dwc2_writel(0xffffffff, hsotg
->regs
+ GINTSTS
);
224 /* Put the controller in low power state */
225 pcgcctl
= dwc2_readl(hsotg
->regs
+ PCGCTL
);
227 pcgcctl
|= PCGCTL_PWRCLMP
;
228 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
231 pcgcctl
|= PCGCTL_RSTPDWNMODULE
;
232 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
235 pcgcctl
|= PCGCTL_STOPPCLK
;
236 dwc2_writel(pcgcctl
, hsotg
->regs
+ PCGCTL
);
242 * Do core a soft reset of the core. Be careful with this because it
243 * resets all the internal state machines of the core.
245 int dwc2_core_reset(struct dwc2_hsotg
*hsotg
)
250 dev_vdbg(hsotg
->dev
, "%s()\n", __func__
);
252 /* Core Soft Reset */
253 greset
= dwc2_readl(hsotg
->regs
+ GRSTCTL
);
254 greset
|= GRSTCTL_CSFTRST
;
255 dwc2_writel(greset
, hsotg
->regs
+ GRSTCTL
);
258 greset
= dwc2_readl(hsotg
->regs
+ GRSTCTL
);
261 "%s() HANG! Soft Reset GRSTCTL=%0x\n",
265 } while (greset
& GRSTCTL_CSFTRST
);
267 /* Wait for AHB master IDLE state */
271 greset
= dwc2_readl(hsotg
->regs
+ GRSTCTL
);
274 "%s() HANG! AHB Idle GRSTCTL=%0x\n",
278 } while (!(greset
& GRSTCTL_AHBIDLE
));
284 * Force the mode of the controller.
286 * Forcing the mode is needed for two cases:
288 * 1) If the dr_mode is set to either HOST or PERIPHERAL we force the
289 * controller to stay in a particular mode regardless of ID pin
290 * changes. We do this usually after a core reset.
292 * 2) During probe we want to read reset values of the hw
293 * configuration registers that are only available in either host or
294 * device mode. We may need to force the mode if the current mode does
295 * not allow us to access the register in the mode that we want.
297 * In either case it only makes sense to force the mode if the
298 * controller hardware is OTG capable.
300 * Checks are done in this function to determine whether doing a force
301 * would be valid or not.
303 * If a force is done, it requires a 25ms delay to take effect.
305 * Returns true if the mode was forced.
307 static bool dwc2_force_mode(struct dwc2_hsotg
*hsotg
, bool host
)
313 dev_dbg(hsotg
->dev
, "Forcing mode to %s\n", host
? "host" : "device");
316 * Force mode has no effect if the hardware is not OTG.
318 if (!dwc2_hw_is_otg(hsotg
))
322 * If dr_mode is either peripheral or host only, there is no
323 * need to ever force the mode to the opposite mode.
325 if (WARN_ON(host
&& hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
))
328 if (WARN_ON(!host
&& hsotg
->dr_mode
== USB_DR_MODE_HOST
))
331 gusbcfg
= dwc2_readl(hsotg
->regs
+ GUSBCFG
);
333 set
= host
? GUSBCFG_FORCEHOSTMODE
: GUSBCFG_FORCEDEVMODE
;
334 clear
= host
? GUSBCFG_FORCEDEVMODE
: GUSBCFG_FORCEHOSTMODE
;
338 dwc2_writel(gusbcfg
, hsotg
->regs
+ GUSBCFG
);
345 * Clears the force mode bits.
347 static void dwc2_clear_force_mode(struct dwc2_hsotg
*hsotg
)
351 gusbcfg
= dwc2_readl(hsotg
->regs
+ GUSBCFG
);
352 gusbcfg
&= ~GUSBCFG_FORCEHOSTMODE
;
353 gusbcfg
&= ~GUSBCFG_FORCEDEVMODE
;
354 dwc2_writel(gusbcfg
, hsotg
->regs
+ GUSBCFG
);
357 * NOTE: This long sleep is _very_ important, otherwise the core will
358 * not stay in host mode after a connector ID change!
364 * Sets or clears force mode based on the dr_mode parameter.
366 void dwc2_force_dr_mode(struct dwc2_hsotg
*hsotg
)
368 switch (hsotg
->dr_mode
) {
369 case USB_DR_MODE_HOST
:
370 dwc2_force_mode(hsotg
, true);
372 case USB_DR_MODE_PERIPHERAL
:
373 dwc2_force_mode(hsotg
, false);
375 case USB_DR_MODE_OTG
:
376 dwc2_clear_force_mode(hsotg
);
379 dev_warn(hsotg
->dev
, "%s() Invalid dr_mode=%d\n",
380 __func__
, hsotg
->dr_mode
);
385 * NOTE: This is required for some rockchip soc based
392 * Do core a soft reset of the core. Be careful with this because it
393 * resets all the internal state machines of the core.
395 * Additionally this will apply force mode as per the hsotg->dr_mode
398 int dwc2_core_reset_and_force_dr_mode(struct dwc2_hsotg
*hsotg
)
402 retval
= dwc2_core_reset(hsotg
);
406 dwc2_force_dr_mode(hsotg
);
411 * dwc2_dump_host_registers() - Prints the host registers
413 * @hsotg: Programming view of DWC_otg controller
415 * NOTE: This function will be removed once the peripheral controller code
416 * is integrated and the driver is stable
418 void dwc2_dump_host_registers(struct dwc2_hsotg
*hsotg
)
424 dev_dbg(hsotg
->dev
, "Host Global Registers\n");
425 addr
= hsotg
->regs
+ HCFG
;
426 dev_dbg(hsotg
->dev
, "HCFG @0x%08lX : 0x%08X\n",
427 (unsigned long)addr
, dwc2_readl(addr
));
428 addr
= hsotg
->regs
+ HFIR
;
429 dev_dbg(hsotg
->dev
, "HFIR @0x%08lX : 0x%08X\n",
430 (unsigned long)addr
, dwc2_readl(addr
));
431 addr
= hsotg
->regs
+ HFNUM
;
432 dev_dbg(hsotg
->dev
, "HFNUM @0x%08lX : 0x%08X\n",
433 (unsigned long)addr
, dwc2_readl(addr
));
434 addr
= hsotg
->regs
+ HPTXSTS
;
435 dev_dbg(hsotg
->dev
, "HPTXSTS @0x%08lX : 0x%08X\n",
436 (unsigned long)addr
, dwc2_readl(addr
));
437 addr
= hsotg
->regs
+ HAINT
;
438 dev_dbg(hsotg
->dev
, "HAINT @0x%08lX : 0x%08X\n",
439 (unsigned long)addr
, dwc2_readl(addr
));
440 addr
= hsotg
->regs
+ HAINTMSK
;
441 dev_dbg(hsotg
->dev
, "HAINTMSK @0x%08lX : 0x%08X\n",
442 (unsigned long)addr
, dwc2_readl(addr
));
443 if (hsotg
->core_params
->dma_desc_enable
> 0) {
444 addr
= hsotg
->regs
+ HFLBADDR
;
445 dev_dbg(hsotg
->dev
, "HFLBADDR @0x%08lX : 0x%08X\n",
446 (unsigned long)addr
, dwc2_readl(addr
));
449 addr
= hsotg
->regs
+ HPRT0
;
450 dev_dbg(hsotg
->dev
, "HPRT0 @0x%08lX : 0x%08X\n",
451 (unsigned long)addr
, dwc2_readl(addr
));
453 for (i
= 0; i
< hsotg
->core_params
->host_channels
; i
++) {
454 dev_dbg(hsotg
->dev
, "Host Channel %d Specific Registers\n", i
);
455 addr
= hsotg
->regs
+ HCCHAR(i
);
456 dev_dbg(hsotg
->dev
, "HCCHAR @0x%08lX : 0x%08X\n",
457 (unsigned long)addr
, dwc2_readl(addr
));
458 addr
= hsotg
->regs
+ HCSPLT(i
);
459 dev_dbg(hsotg
->dev
, "HCSPLT @0x%08lX : 0x%08X\n",
460 (unsigned long)addr
, dwc2_readl(addr
));
461 addr
= hsotg
->regs
+ HCINT(i
);
462 dev_dbg(hsotg
->dev
, "HCINT @0x%08lX : 0x%08X\n",
463 (unsigned long)addr
, dwc2_readl(addr
));
464 addr
= hsotg
->regs
+ HCINTMSK(i
);
465 dev_dbg(hsotg
->dev
, "HCINTMSK @0x%08lX : 0x%08X\n",
466 (unsigned long)addr
, dwc2_readl(addr
));
467 addr
= hsotg
->regs
+ HCTSIZ(i
);
468 dev_dbg(hsotg
->dev
, "HCTSIZ @0x%08lX : 0x%08X\n",
469 (unsigned long)addr
, dwc2_readl(addr
));
470 addr
= hsotg
->regs
+ HCDMA(i
);
471 dev_dbg(hsotg
->dev
, "HCDMA @0x%08lX : 0x%08X\n",
472 (unsigned long)addr
, dwc2_readl(addr
));
473 if (hsotg
->core_params
->dma_desc_enable
> 0) {
474 addr
= hsotg
->regs
+ HCDMAB(i
);
475 dev_dbg(hsotg
->dev
, "HCDMAB @0x%08lX : 0x%08X\n",
476 (unsigned long)addr
, dwc2_readl(addr
));
483 * dwc2_dump_global_registers() - Prints the core global registers
485 * @hsotg: Programming view of DWC_otg controller
487 * NOTE: This function will be removed once the peripheral controller code
488 * is integrated and the driver is stable
490 void dwc2_dump_global_registers(struct dwc2_hsotg
*hsotg
)
495 dev_dbg(hsotg
->dev
, "Core Global Registers\n");
496 addr
= hsotg
->regs
+ GOTGCTL
;
497 dev_dbg(hsotg
->dev
, "GOTGCTL @0x%08lX : 0x%08X\n",
498 (unsigned long)addr
, dwc2_readl(addr
));
499 addr
= hsotg
->regs
+ GOTGINT
;
500 dev_dbg(hsotg
->dev
, "GOTGINT @0x%08lX : 0x%08X\n",
501 (unsigned long)addr
, dwc2_readl(addr
));
502 addr
= hsotg
->regs
+ GAHBCFG
;
503 dev_dbg(hsotg
->dev
, "GAHBCFG @0x%08lX : 0x%08X\n",
504 (unsigned long)addr
, dwc2_readl(addr
));
505 addr
= hsotg
->regs
+ GUSBCFG
;
506 dev_dbg(hsotg
->dev
, "GUSBCFG @0x%08lX : 0x%08X\n",
507 (unsigned long)addr
, dwc2_readl(addr
));
508 addr
= hsotg
->regs
+ GRSTCTL
;
509 dev_dbg(hsotg
->dev
, "GRSTCTL @0x%08lX : 0x%08X\n",
510 (unsigned long)addr
, dwc2_readl(addr
));
511 addr
= hsotg
->regs
+ GINTSTS
;
512 dev_dbg(hsotg
->dev
, "GINTSTS @0x%08lX : 0x%08X\n",
513 (unsigned long)addr
, dwc2_readl(addr
));
514 addr
= hsotg
->regs
+ GINTMSK
;
515 dev_dbg(hsotg
->dev
, "GINTMSK @0x%08lX : 0x%08X\n",
516 (unsigned long)addr
, dwc2_readl(addr
));
517 addr
= hsotg
->regs
+ GRXSTSR
;
518 dev_dbg(hsotg
->dev
, "GRXSTSR @0x%08lX : 0x%08X\n",
519 (unsigned long)addr
, dwc2_readl(addr
));
520 addr
= hsotg
->regs
+ GRXFSIZ
;
521 dev_dbg(hsotg
->dev
, "GRXFSIZ @0x%08lX : 0x%08X\n",
522 (unsigned long)addr
, dwc2_readl(addr
));
523 addr
= hsotg
->regs
+ GNPTXFSIZ
;
524 dev_dbg(hsotg
->dev
, "GNPTXFSIZ @0x%08lX : 0x%08X\n",
525 (unsigned long)addr
, dwc2_readl(addr
));
526 addr
= hsotg
->regs
+ GNPTXSTS
;
527 dev_dbg(hsotg
->dev
, "GNPTXSTS @0x%08lX : 0x%08X\n",
528 (unsigned long)addr
, dwc2_readl(addr
));
529 addr
= hsotg
->regs
+ GI2CCTL
;
530 dev_dbg(hsotg
->dev
, "GI2CCTL @0x%08lX : 0x%08X\n",
531 (unsigned long)addr
, dwc2_readl(addr
));
532 addr
= hsotg
->regs
+ GPVNDCTL
;
533 dev_dbg(hsotg
->dev
, "GPVNDCTL @0x%08lX : 0x%08X\n",
534 (unsigned long)addr
, dwc2_readl(addr
));
535 addr
= hsotg
->regs
+ GGPIO
;
536 dev_dbg(hsotg
->dev
, "GGPIO @0x%08lX : 0x%08X\n",
537 (unsigned long)addr
, dwc2_readl(addr
));
538 addr
= hsotg
->regs
+ GUID
;
539 dev_dbg(hsotg
->dev
, "GUID @0x%08lX : 0x%08X\n",
540 (unsigned long)addr
, dwc2_readl(addr
));
541 addr
= hsotg
->regs
+ GSNPSID
;
542 dev_dbg(hsotg
->dev
, "GSNPSID @0x%08lX : 0x%08X\n",
543 (unsigned long)addr
, dwc2_readl(addr
));
544 addr
= hsotg
->regs
+ GHWCFG1
;
545 dev_dbg(hsotg
->dev
, "GHWCFG1 @0x%08lX : 0x%08X\n",
546 (unsigned long)addr
, dwc2_readl(addr
));
547 addr
= hsotg
->regs
+ GHWCFG2
;
548 dev_dbg(hsotg
->dev
, "GHWCFG2 @0x%08lX : 0x%08X\n",
549 (unsigned long)addr
, dwc2_readl(addr
));
550 addr
= hsotg
->regs
+ GHWCFG3
;
551 dev_dbg(hsotg
->dev
, "GHWCFG3 @0x%08lX : 0x%08X\n",
552 (unsigned long)addr
, dwc2_readl(addr
));
553 addr
= hsotg
->regs
+ GHWCFG4
;
554 dev_dbg(hsotg
->dev
, "GHWCFG4 @0x%08lX : 0x%08X\n",
555 (unsigned long)addr
, dwc2_readl(addr
));
556 addr
= hsotg
->regs
+ GLPMCFG
;
557 dev_dbg(hsotg
->dev
, "GLPMCFG @0x%08lX : 0x%08X\n",
558 (unsigned long)addr
, dwc2_readl(addr
));
559 addr
= hsotg
->regs
+ GPWRDN
;
560 dev_dbg(hsotg
->dev
, "GPWRDN @0x%08lX : 0x%08X\n",
561 (unsigned long)addr
, dwc2_readl(addr
));
562 addr
= hsotg
->regs
+ GDFIFOCFG
;
563 dev_dbg(hsotg
->dev
, "GDFIFOCFG @0x%08lX : 0x%08X\n",
564 (unsigned long)addr
, dwc2_readl(addr
));
565 addr
= hsotg
->regs
+ HPTXFSIZ
;
566 dev_dbg(hsotg
->dev
, "HPTXFSIZ @0x%08lX : 0x%08X\n",
567 (unsigned long)addr
, dwc2_readl(addr
));
569 addr
= hsotg
->regs
+ PCGCTL
;
570 dev_dbg(hsotg
->dev
, "PCGCTL @0x%08lX : 0x%08X\n",
571 (unsigned long)addr
, dwc2_readl(addr
));
576 * dwc2_flush_tx_fifo() - Flushes a Tx FIFO
578 * @hsotg: Programming view of DWC_otg controller
579 * @num: Tx FIFO to flush
581 void dwc2_flush_tx_fifo(struct dwc2_hsotg
*hsotg
, const int num
)
586 dev_vdbg(hsotg
->dev
, "Flush Tx FIFO %d\n", num
);
588 greset
= GRSTCTL_TXFFLSH
;
589 greset
|= num
<< GRSTCTL_TXFNUM_SHIFT
& GRSTCTL_TXFNUM_MASK
;
590 dwc2_writel(greset
, hsotg
->regs
+ GRSTCTL
);
593 greset
= dwc2_readl(hsotg
->regs
+ GRSTCTL
);
594 if (++count
> 10000) {
596 "%s() HANG! GRSTCTL=%0x GNPTXSTS=0x%08x\n",
598 dwc2_readl(hsotg
->regs
+ GNPTXSTS
));
602 } while (greset
& GRSTCTL_TXFFLSH
);
604 /* Wait for at least 3 PHY Clocks */
609 * dwc2_flush_rx_fifo() - Flushes the Rx FIFO
611 * @hsotg: Programming view of DWC_otg controller
613 void dwc2_flush_rx_fifo(struct dwc2_hsotg
*hsotg
)
618 dev_vdbg(hsotg
->dev
, "%s()\n", __func__
);
620 greset
= GRSTCTL_RXFFLSH
;
621 dwc2_writel(greset
, hsotg
->regs
+ GRSTCTL
);
624 greset
= dwc2_readl(hsotg
->regs
+ GRSTCTL
);
625 if (++count
> 10000) {
626 dev_warn(hsotg
->dev
, "%s() HANG! GRSTCTL=%0x\n",
631 } while (greset
& GRSTCTL_RXFFLSH
);
633 /* Wait for at least 3 PHY Clocks */
637 #define DWC2_OUT_OF_BOUNDS(a, b, c) ((a) < (b) || (a) > (c))
639 /* Parameter access functions */
640 void dwc2_set_param_otg_cap(struct dwc2_hsotg
*hsotg
, int val
)
645 case DWC2_CAP_PARAM_HNP_SRP_CAPABLE
:
646 if (hsotg
->hw_params
.op_mode
!= GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
)
649 case DWC2_CAP_PARAM_SRP_ONLY_CAPABLE
:
650 switch (hsotg
->hw_params
.op_mode
) {
651 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
:
652 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE
:
653 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE
:
654 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST
:
661 case DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
:
672 "%d invalid for otg_cap parameter. Check HW configuration.\n",
674 switch (hsotg
->hw_params
.op_mode
) {
675 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
:
676 val
= DWC2_CAP_PARAM_HNP_SRP_CAPABLE
;
678 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE
:
679 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE
:
680 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST
:
681 val
= DWC2_CAP_PARAM_SRP_ONLY_CAPABLE
;
684 val
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
687 dev_dbg(hsotg
->dev
, "Setting otg_cap to %d\n", val
);
690 hsotg
->core_params
->otg_cap
= val
;
693 void dwc2_set_param_dma_enable(struct dwc2_hsotg
*hsotg
, int val
)
697 if (val
> 0 && hsotg
->hw_params
.arch
== GHWCFG2_SLAVE_ONLY_ARCH
)
705 "%d invalid for dma_enable parameter. Check HW configuration.\n",
707 val
= hsotg
->hw_params
.arch
!= GHWCFG2_SLAVE_ONLY_ARCH
;
708 dev_dbg(hsotg
->dev
, "Setting dma_enable to %d\n", val
);
711 hsotg
->core_params
->dma_enable
= val
;
714 void dwc2_set_param_dma_desc_enable(struct dwc2_hsotg
*hsotg
, int val
)
718 if (val
> 0 && (hsotg
->core_params
->dma_enable
<= 0 ||
719 !hsotg
->hw_params
.dma_desc_enable
))
727 "%d invalid for dma_desc_enable parameter. Check HW configuration.\n",
729 val
= (hsotg
->core_params
->dma_enable
> 0 &&
730 hsotg
->hw_params
.dma_desc_enable
);
731 dev_dbg(hsotg
->dev
, "Setting dma_desc_enable to %d\n", val
);
734 hsotg
->core_params
->dma_desc_enable
= val
;
737 void dwc2_set_param_dma_desc_fs_enable(struct dwc2_hsotg
*hsotg
, int val
)
741 if (val
> 0 && (hsotg
->core_params
->dma_enable
<= 0 ||
742 !hsotg
->hw_params
.dma_desc_enable
))
750 "%d invalid for dma_desc_fs_enable parameter. Check HW configuration.\n",
752 val
= (hsotg
->core_params
->dma_enable
> 0 &&
753 hsotg
->hw_params
.dma_desc_enable
);
756 hsotg
->core_params
->dma_desc_fs_enable
= val
;
757 dev_dbg(hsotg
->dev
, "Setting dma_desc_fs_enable to %d\n", val
);
760 void dwc2_set_param_host_support_fs_ls_low_power(struct dwc2_hsotg
*hsotg
,
763 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
766 "Wrong value for host_support_fs_low_power\n");
768 "host_support_fs_low_power must be 0 or 1\n");
772 "Setting host_support_fs_low_power to %d\n", val
);
775 hsotg
->core_params
->host_support_fs_ls_low_power
= val
;
778 void dwc2_set_param_enable_dynamic_fifo(struct dwc2_hsotg
*hsotg
, int val
)
782 if (val
> 0 && !hsotg
->hw_params
.enable_dynamic_fifo
)
790 "%d invalid for enable_dynamic_fifo parameter. Check HW configuration.\n",
792 val
= hsotg
->hw_params
.enable_dynamic_fifo
;
793 dev_dbg(hsotg
->dev
, "Setting enable_dynamic_fifo to %d\n", val
);
796 hsotg
->core_params
->enable_dynamic_fifo
= val
;
799 void dwc2_set_param_host_rx_fifo_size(struct dwc2_hsotg
*hsotg
, int val
)
803 if (val
< 16 || val
> hsotg
->hw_params
.host_rx_fifo_size
)
809 "%d invalid for host_rx_fifo_size. Check HW configuration.\n",
811 val
= hsotg
->hw_params
.host_rx_fifo_size
;
812 dev_dbg(hsotg
->dev
, "Setting host_rx_fifo_size to %d\n", val
);
815 hsotg
->core_params
->host_rx_fifo_size
= val
;
818 void dwc2_set_param_host_nperio_tx_fifo_size(struct dwc2_hsotg
*hsotg
, int val
)
822 if (val
< 16 || val
> hsotg
->hw_params
.host_nperio_tx_fifo_size
)
828 "%d invalid for host_nperio_tx_fifo_size. Check HW configuration.\n",
830 val
= hsotg
->hw_params
.host_nperio_tx_fifo_size
;
831 dev_dbg(hsotg
->dev
, "Setting host_nperio_tx_fifo_size to %d\n",
835 hsotg
->core_params
->host_nperio_tx_fifo_size
= val
;
838 void dwc2_set_param_host_perio_tx_fifo_size(struct dwc2_hsotg
*hsotg
, int val
)
842 if (val
< 16 || val
> hsotg
->hw_params
.host_perio_tx_fifo_size
)
848 "%d invalid for host_perio_tx_fifo_size. Check HW configuration.\n",
850 val
= hsotg
->hw_params
.host_perio_tx_fifo_size
;
851 dev_dbg(hsotg
->dev
, "Setting host_perio_tx_fifo_size to %d\n",
855 hsotg
->core_params
->host_perio_tx_fifo_size
= val
;
858 void dwc2_set_param_max_transfer_size(struct dwc2_hsotg
*hsotg
, int val
)
862 if (val
< 2047 || val
> hsotg
->hw_params
.max_transfer_size
)
868 "%d invalid for max_transfer_size. Check HW configuration.\n",
870 val
= hsotg
->hw_params
.max_transfer_size
;
871 dev_dbg(hsotg
->dev
, "Setting max_transfer_size to %d\n", val
);
874 hsotg
->core_params
->max_transfer_size
= val
;
877 void dwc2_set_param_max_packet_count(struct dwc2_hsotg
*hsotg
, int val
)
881 if (val
< 15 || val
> hsotg
->hw_params
.max_packet_count
)
887 "%d invalid for max_packet_count. Check HW configuration.\n",
889 val
= hsotg
->hw_params
.max_packet_count
;
890 dev_dbg(hsotg
->dev
, "Setting max_packet_count to %d\n", val
);
893 hsotg
->core_params
->max_packet_count
= val
;
896 void dwc2_set_param_host_channels(struct dwc2_hsotg
*hsotg
, int val
)
900 if (val
< 1 || val
> hsotg
->hw_params
.host_channels
)
906 "%d invalid for host_channels. Check HW configuration.\n",
908 val
= hsotg
->hw_params
.host_channels
;
909 dev_dbg(hsotg
->dev
, "Setting host_channels to %d\n", val
);
912 hsotg
->core_params
->host_channels
= val
;
915 void dwc2_set_param_phy_type(struct dwc2_hsotg
*hsotg
, int val
)
918 u32 hs_phy_type
, fs_phy_type
;
920 if (DWC2_OUT_OF_BOUNDS(val
, DWC2_PHY_TYPE_PARAM_FS
,
921 DWC2_PHY_TYPE_PARAM_ULPI
)) {
923 dev_err(hsotg
->dev
, "Wrong value for phy_type\n");
924 dev_err(hsotg
->dev
, "phy_type must be 0, 1 or 2\n");
930 hs_phy_type
= hsotg
->hw_params
.hs_phy_type
;
931 fs_phy_type
= hsotg
->hw_params
.fs_phy_type
;
932 if (val
== DWC2_PHY_TYPE_PARAM_UTMI
&&
933 (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI
||
934 hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
))
936 else if (val
== DWC2_PHY_TYPE_PARAM_ULPI
&&
937 (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_ULPI
||
938 hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
))
940 else if (val
== DWC2_PHY_TYPE_PARAM_FS
&&
941 fs_phy_type
== GHWCFG2_FS_PHY_TYPE_DEDICATED
)
947 "%d invalid for phy_type. Check HW configuration.\n",
949 val
= DWC2_PHY_TYPE_PARAM_FS
;
950 if (hs_phy_type
!= GHWCFG2_HS_PHY_TYPE_NOT_SUPPORTED
) {
951 if (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI
||
952 hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
)
953 val
= DWC2_PHY_TYPE_PARAM_UTMI
;
955 val
= DWC2_PHY_TYPE_PARAM_ULPI
;
957 dev_dbg(hsotg
->dev
, "Setting phy_type to %d\n", val
);
960 hsotg
->core_params
->phy_type
= val
;
963 static int dwc2_get_param_phy_type(struct dwc2_hsotg
*hsotg
)
965 return hsotg
->core_params
->phy_type
;
968 void dwc2_set_param_speed(struct dwc2_hsotg
*hsotg
, int val
)
972 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
974 dev_err(hsotg
->dev
, "Wrong value for speed parameter\n");
975 dev_err(hsotg
->dev
, "max_speed parameter must be 0 or 1\n");
980 if (val
== DWC2_SPEED_PARAM_HIGH
&&
981 dwc2_get_param_phy_type(hsotg
) == DWC2_PHY_TYPE_PARAM_FS
)
987 "%d invalid for speed parameter. Check HW configuration.\n",
989 val
= dwc2_get_param_phy_type(hsotg
) == DWC2_PHY_TYPE_PARAM_FS
?
990 DWC2_SPEED_PARAM_FULL
: DWC2_SPEED_PARAM_HIGH
;
991 dev_dbg(hsotg
->dev
, "Setting speed to %d\n", val
);
994 hsotg
->core_params
->speed
= val
;
997 void dwc2_set_param_host_ls_low_power_phy_clk(struct dwc2_hsotg
*hsotg
, int val
)
1001 if (DWC2_OUT_OF_BOUNDS(val
, DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_48MHZ
,
1002 DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_6MHZ
)) {
1005 "Wrong value for host_ls_low_power_phy_clk parameter\n");
1007 "host_ls_low_power_phy_clk must be 0 or 1\n");
1012 if (val
== DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_48MHZ
&&
1013 dwc2_get_param_phy_type(hsotg
) == DWC2_PHY_TYPE_PARAM_FS
)
1019 "%d invalid for host_ls_low_power_phy_clk. Check HW configuration.\n",
1021 val
= dwc2_get_param_phy_type(hsotg
) == DWC2_PHY_TYPE_PARAM_FS
1022 ? DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_6MHZ
1023 : DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_48MHZ
;
1024 dev_dbg(hsotg
->dev
, "Setting host_ls_low_power_phy_clk to %d\n",
1028 hsotg
->core_params
->host_ls_low_power_phy_clk
= val
;
1031 void dwc2_set_param_phy_ulpi_ddr(struct dwc2_hsotg
*hsotg
, int val
)
1033 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1035 dev_err(hsotg
->dev
, "Wrong value for phy_ulpi_ddr\n");
1036 dev_err(hsotg
->dev
, "phy_upli_ddr must be 0 or 1\n");
1039 dev_dbg(hsotg
->dev
, "Setting phy_upli_ddr to %d\n", val
);
1042 hsotg
->core_params
->phy_ulpi_ddr
= val
;
1045 void dwc2_set_param_phy_ulpi_ext_vbus(struct dwc2_hsotg
*hsotg
, int val
)
1047 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1050 "Wrong value for phy_ulpi_ext_vbus\n");
1052 "phy_ulpi_ext_vbus must be 0 or 1\n");
1055 dev_dbg(hsotg
->dev
, "Setting phy_ulpi_ext_vbus to %d\n", val
);
1058 hsotg
->core_params
->phy_ulpi_ext_vbus
= val
;
1061 void dwc2_set_param_phy_utmi_width(struct dwc2_hsotg
*hsotg
, int val
)
1065 switch (hsotg
->hw_params
.utmi_phy_data_width
) {
1066 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8
:
1069 case GHWCFG4_UTMI_PHY_DATA_WIDTH_16
:
1070 valid
= (val
== 16);
1072 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8_OR_16
:
1073 valid
= (val
== 8 || val
== 16);
1080 "%d invalid for phy_utmi_width. Check HW configuration.\n",
1083 val
= (hsotg
->hw_params
.utmi_phy_data_width
==
1084 GHWCFG4_UTMI_PHY_DATA_WIDTH_8
) ? 8 : 16;
1085 dev_dbg(hsotg
->dev
, "Setting phy_utmi_width to %d\n", val
);
1088 hsotg
->core_params
->phy_utmi_width
= val
;
1091 void dwc2_set_param_ulpi_fs_ls(struct dwc2_hsotg
*hsotg
, int val
)
1093 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1095 dev_err(hsotg
->dev
, "Wrong value for ulpi_fs_ls\n");
1096 dev_err(hsotg
->dev
, "ulpi_fs_ls must be 0 or 1\n");
1099 dev_dbg(hsotg
->dev
, "Setting ulpi_fs_ls to %d\n", val
);
1102 hsotg
->core_params
->ulpi_fs_ls
= val
;
1105 void dwc2_set_param_ts_dline(struct dwc2_hsotg
*hsotg
, int val
)
1107 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1109 dev_err(hsotg
->dev
, "Wrong value for ts_dline\n");
1110 dev_err(hsotg
->dev
, "ts_dline must be 0 or 1\n");
1113 dev_dbg(hsotg
->dev
, "Setting ts_dline to %d\n", val
);
1116 hsotg
->core_params
->ts_dline
= val
;
1119 void dwc2_set_param_i2c_enable(struct dwc2_hsotg
*hsotg
, int val
)
1123 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1125 dev_err(hsotg
->dev
, "Wrong value for i2c_enable\n");
1126 dev_err(hsotg
->dev
, "i2c_enable must be 0 or 1\n");
1132 if (val
== 1 && !(hsotg
->hw_params
.i2c_enable
))
1138 "%d invalid for i2c_enable. Check HW configuration.\n",
1140 val
= hsotg
->hw_params
.i2c_enable
;
1141 dev_dbg(hsotg
->dev
, "Setting i2c_enable to %d\n", val
);
1144 hsotg
->core_params
->i2c_enable
= val
;
1147 void dwc2_set_param_en_multiple_tx_fifo(struct dwc2_hsotg
*hsotg
, int val
)
1151 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1154 "Wrong value for en_multiple_tx_fifo,\n");
1156 "en_multiple_tx_fifo must be 0 or 1\n");
1161 if (val
== 1 && !hsotg
->hw_params
.en_multiple_tx_fifo
)
1167 "%d invalid for parameter en_multiple_tx_fifo. Check HW configuration.\n",
1169 val
= hsotg
->hw_params
.en_multiple_tx_fifo
;
1170 dev_dbg(hsotg
->dev
, "Setting en_multiple_tx_fifo to %d\n", val
);
1173 hsotg
->core_params
->en_multiple_tx_fifo
= val
;
1176 void dwc2_set_param_reload_ctl(struct dwc2_hsotg
*hsotg
, int val
)
1180 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1183 "'%d' invalid for parameter reload_ctl\n", val
);
1184 dev_err(hsotg
->dev
, "reload_ctl must be 0 or 1\n");
1189 if (val
== 1 && hsotg
->hw_params
.snpsid
< DWC2_CORE_REV_2_92a
)
1195 "%d invalid for parameter reload_ctl. Check HW configuration.\n",
1197 val
= hsotg
->hw_params
.snpsid
>= DWC2_CORE_REV_2_92a
;
1198 dev_dbg(hsotg
->dev
, "Setting reload_ctl to %d\n", val
);
1201 hsotg
->core_params
->reload_ctl
= val
;
1204 void dwc2_set_param_ahbcfg(struct dwc2_hsotg
*hsotg
, int val
)
1207 hsotg
->core_params
->ahbcfg
= val
;
1209 hsotg
->core_params
->ahbcfg
= GAHBCFG_HBSTLEN_INCR4
<<
1210 GAHBCFG_HBSTLEN_SHIFT
;
1213 void dwc2_set_param_otg_ver(struct dwc2_hsotg
*hsotg
, int val
)
1215 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1218 "'%d' invalid for parameter otg_ver\n", val
);
1220 "otg_ver must be 0 (for OTG 1.3 support) or 1 (for OTG 2.0 support)\n");
1223 dev_dbg(hsotg
->dev
, "Setting otg_ver to %d\n", val
);
1226 hsotg
->core_params
->otg_ver
= val
;
1229 static void dwc2_set_param_uframe_sched(struct dwc2_hsotg
*hsotg
, int val
)
1231 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1234 "'%d' invalid for parameter uframe_sched\n",
1236 dev_err(hsotg
->dev
, "uframe_sched must be 0 or 1\n");
1239 dev_dbg(hsotg
->dev
, "Setting uframe_sched to %d\n", val
);
1242 hsotg
->core_params
->uframe_sched
= val
;
1245 static void dwc2_set_param_external_id_pin_ctl(struct dwc2_hsotg
*hsotg
,
1248 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1251 "'%d' invalid for parameter external_id_pin_ctl\n",
1253 dev_err(hsotg
->dev
, "external_id_pin_ctl must be 0 or 1\n");
1256 dev_dbg(hsotg
->dev
, "Setting external_id_pin_ctl to %d\n", val
);
1259 hsotg
->core_params
->external_id_pin_ctl
= val
;
1262 static void dwc2_set_param_hibernation(struct dwc2_hsotg
*hsotg
,
1265 if (DWC2_OUT_OF_BOUNDS(val
, 0, 1)) {
1268 "'%d' invalid for parameter hibernation\n",
1270 dev_err(hsotg
->dev
, "hibernation must be 0 or 1\n");
1273 dev_dbg(hsotg
->dev
, "Setting hibernation to %d\n", val
);
1276 hsotg
->core_params
->hibernation
= val
;
1280 * This function is called during module intialization to pass module parameters
1281 * for the DWC_otg core.
1283 void dwc2_set_parameters(struct dwc2_hsotg
*hsotg
,
1284 const struct dwc2_core_params
*params
)
1286 dev_dbg(hsotg
->dev
, "%s()\n", __func__
);
1288 dwc2_set_param_otg_cap(hsotg
, params
->otg_cap
);
1289 dwc2_set_param_dma_enable(hsotg
, params
->dma_enable
);
1290 dwc2_set_param_dma_desc_enable(hsotg
, params
->dma_desc_enable
);
1291 dwc2_set_param_dma_desc_fs_enable(hsotg
, params
->dma_desc_fs_enable
);
1292 dwc2_set_param_host_support_fs_ls_low_power(hsotg
,
1293 params
->host_support_fs_ls_low_power
);
1294 dwc2_set_param_enable_dynamic_fifo(hsotg
,
1295 params
->enable_dynamic_fifo
);
1296 dwc2_set_param_host_rx_fifo_size(hsotg
,
1297 params
->host_rx_fifo_size
);
1298 dwc2_set_param_host_nperio_tx_fifo_size(hsotg
,
1299 params
->host_nperio_tx_fifo_size
);
1300 dwc2_set_param_host_perio_tx_fifo_size(hsotg
,
1301 params
->host_perio_tx_fifo_size
);
1302 dwc2_set_param_max_transfer_size(hsotg
,
1303 params
->max_transfer_size
);
1304 dwc2_set_param_max_packet_count(hsotg
,
1305 params
->max_packet_count
);
1306 dwc2_set_param_host_channels(hsotg
, params
->host_channels
);
1307 dwc2_set_param_phy_type(hsotg
, params
->phy_type
);
1308 dwc2_set_param_speed(hsotg
, params
->speed
);
1309 dwc2_set_param_host_ls_low_power_phy_clk(hsotg
,
1310 params
->host_ls_low_power_phy_clk
);
1311 dwc2_set_param_phy_ulpi_ddr(hsotg
, params
->phy_ulpi_ddr
);
1312 dwc2_set_param_phy_ulpi_ext_vbus(hsotg
,
1313 params
->phy_ulpi_ext_vbus
);
1314 dwc2_set_param_phy_utmi_width(hsotg
, params
->phy_utmi_width
);
1315 dwc2_set_param_ulpi_fs_ls(hsotg
, params
->ulpi_fs_ls
);
1316 dwc2_set_param_ts_dline(hsotg
, params
->ts_dline
);
1317 dwc2_set_param_i2c_enable(hsotg
, params
->i2c_enable
);
1318 dwc2_set_param_en_multiple_tx_fifo(hsotg
,
1319 params
->en_multiple_tx_fifo
);
1320 dwc2_set_param_reload_ctl(hsotg
, params
->reload_ctl
);
1321 dwc2_set_param_ahbcfg(hsotg
, params
->ahbcfg
);
1322 dwc2_set_param_otg_ver(hsotg
, params
->otg_ver
);
1323 dwc2_set_param_uframe_sched(hsotg
, params
->uframe_sched
);
1324 dwc2_set_param_external_id_pin_ctl(hsotg
, params
->external_id_pin_ctl
);
1325 dwc2_set_param_hibernation(hsotg
, params
->hibernation
);
1329 * Forces either host or device mode if the controller is not
1330 * currently in that mode.
1332 * Returns true if the mode was forced.
1334 static bool dwc2_force_mode_if_needed(struct dwc2_hsotg
*hsotg
, bool host
)
1336 if (host
&& dwc2_is_host_mode(hsotg
))
1338 else if (!host
&& dwc2_is_device_mode(hsotg
))
1341 return dwc2_force_mode(hsotg
, host
);
1345 * Gets host hardware parameters. Forces host mode if not currently in
1346 * host mode. Should be called immediately after a core soft reset in
1347 * order to get the reset values.
1349 static void dwc2_get_host_hwparams(struct dwc2_hsotg
*hsotg
)
1351 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
1356 if (hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
)
1359 forced
= dwc2_force_mode_if_needed(hsotg
, true);
1361 gnptxfsiz
= dwc2_readl(hsotg
->regs
+ GNPTXFSIZ
);
1362 hptxfsiz
= dwc2_readl(hsotg
->regs
+ HPTXFSIZ
);
1363 dev_dbg(hsotg
->dev
, "gnptxfsiz=%08x\n", gnptxfsiz
);
1364 dev_dbg(hsotg
->dev
, "hptxfsiz=%08x\n", hptxfsiz
);
1367 dwc2_clear_force_mode(hsotg
);
1369 hw
->host_nperio_tx_fifo_size
= (gnptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
1370 FIFOSIZE_DEPTH_SHIFT
;
1371 hw
->host_perio_tx_fifo_size
= (hptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
1372 FIFOSIZE_DEPTH_SHIFT
;
1376 * Gets device hardware parameters. Forces device mode if not
1377 * currently in device mode. Should be called immediately after a core
1378 * soft reset in order to get the reset values.
1380 static void dwc2_get_dev_hwparams(struct dwc2_hsotg
*hsotg
)
1382 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
1386 if (hsotg
->dr_mode
== USB_DR_MODE_HOST
)
1389 forced
= dwc2_force_mode_if_needed(hsotg
, false);
1391 gnptxfsiz
= dwc2_readl(hsotg
->regs
+ GNPTXFSIZ
);
1392 dev_dbg(hsotg
->dev
, "gnptxfsiz=%08x\n", gnptxfsiz
);
1395 dwc2_clear_force_mode(hsotg
);
1397 hw
->dev_nperio_tx_fifo_size
= (gnptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
1398 FIFOSIZE_DEPTH_SHIFT
;
1402 * During device initialization, read various hardware configuration
1403 * registers and interpret the contents.
1405 int dwc2_get_hwparams(struct dwc2_hsotg
*hsotg
)
1407 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
1409 u32 hwcfg1
, hwcfg2
, hwcfg3
, hwcfg4
;
1413 * Attempt to ensure this device is really a DWC_otg Controller.
1414 * Read and verify the GSNPSID register contents. The value should be
1415 * 0x45f42xxx or 0x45f43xxx, which corresponds to either "OT2" or "OT3",
1416 * as in "OTG version 2.xx" or "OTG version 3.xx".
1418 hw
->snpsid
= dwc2_readl(hsotg
->regs
+ GSNPSID
);
1419 if ((hw
->snpsid
& 0xfffff000) != 0x4f542000 &&
1420 (hw
->snpsid
& 0xfffff000) != 0x4f543000) {
1421 dev_err(hsotg
->dev
, "Bad value for GSNPSID: 0x%08x\n",
1426 dev_dbg(hsotg
->dev
, "Core Release: %1x.%1x%1x%1x (snpsid=%x)\n",
1427 hw
->snpsid
>> 12 & 0xf, hw
->snpsid
>> 8 & 0xf,
1428 hw
->snpsid
>> 4 & 0xf, hw
->snpsid
& 0xf, hw
->snpsid
);
1430 hwcfg1
= dwc2_readl(hsotg
->regs
+ GHWCFG1
);
1431 hwcfg2
= dwc2_readl(hsotg
->regs
+ GHWCFG2
);
1432 hwcfg3
= dwc2_readl(hsotg
->regs
+ GHWCFG3
);
1433 hwcfg4
= dwc2_readl(hsotg
->regs
+ GHWCFG4
);
1434 grxfsiz
= dwc2_readl(hsotg
->regs
+ GRXFSIZ
);
1436 dev_dbg(hsotg
->dev
, "hwcfg1=%08x\n", hwcfg1
);
1437 dev_dbg(hsotg
->dev
, "hwcfg2=%08x\n", hwcfg2
);
1438 dev_dbg(hsotg
->dev
, "hwcfg3=%08x\n", hwcfg3
);
1439 dev_dbg(hsotg
->dev
, "hwcfg4=%08x\n", hwcfg4
);
1440 dev_dbg(hsotg
->dev
, "grxfsiz=%08x\n", grxfsiz
);
1443 * Host specific hardware parameters. Reading these parameters
1444 * requires the controller to be in host mode. The mode will
1445 * be forced, if necessary, to read these values.
1447 dwc2_get_host_hwparams(hsotg
);
1448 dwc2_get_dev_hwparams(hsotg
);
1451 hw
->dev_ep_dirs
= hwcfg1
;
1454 hw
->op_mode
= (hwcfg2
& GHWCFG2_OP_MODE_MASK
) >>
1455 GHWCFG2_OP_MODE_SHIFT
;
1456 hw
->arch
= (hwcfg2
& GHWCFG2_ARCHITECTURE_MASK
) >>
1457 GHWCFG2_ARCHITECTURE_SHIFT
;
1458 hw
->enable_dynamic_fifo
= !!(hwcfg2
& GHWCFG2_DYNAMIC_FIFO
);
1459 hw
->host_channels
= 1 + ((hwcfg2
& GHWCFG2_NUM_HOST_CHAN_MASK
) >>
1460 GHWCFG2_NUM_HOST_CHAN_SHIFT
);
1461 hw
->hs_phy_type
= (hwcfg2
& GHWCFG2_HS_PHY_TYPE_MASK
) >>
1462 GHWCFG2_HS_PHY_TYPE_SHIFT
;
1463 hw
->fs_phy_type
= (hwcfg2
& GHWCFG2_FS_PHY_TYPE_MASK
) >>
1464 GHWCFG2_FS_PHY_TYPE_SHIFT
;
1465 hw
->num_dev_ep
= (hwcfg2
& GHWCFG2_NUM_DEV_EP_MASK
) >>
1466 GHWCFG2_NUM_DEV_EP_SHIFT
;
1467 hw
->nperio_tx_q_depth
=
1468 (hwcfg2
& GHWCFG2_NONPERIO_TX_Q_DEPTH_MASK
) >>
1469 GHWCFG2_NONPERIO_TX_Q_DEPTH_SHIFT
<< 1;
1470 hw
->host_perio_tx_q_depth
=
1471 (hwcfg2
& GHWCFG2_HOST_PERIO_TX_Q_DEPTH_MASK
) >>
1472 GHWCFG2_HOST_PERIO_TX_Q_DEPTH_SHIFT
<< 1;
1473 hw
->dev_token_q_depth
=
1474 (hwcfg2
& GHWCFG2_DEV_TOKEN_Q_DEPTH_MASK
) >>
1475 GHWCFG2_DEV_TOKEN_Q_DEPTH_SHIFT
;
1478 width
= (hwcfg3
& GHWCFG3_XFER_SIZE_CNTR_WIDTH_MASK
) >>
1479 GHWCFG3_XFER_SIZE_CNTR_WIDTH_SHIFT
;
1480 hw
->max_transfer_size
= (1 << (width
+ 11)) - 1;
1481 width
= (hwcfg3
& GHWCFG3_PACKET_SIZE_CNTR_WIDTH_MASK
) >>
1482 GHWCFG3_PACKET_SIZE_CNTR_WIDTH_SHIFT
;
1483 hw
->max_packet_count
= (1 << (width
+ 4)) - 1;
1484 hw
->i2c_enable
= !!(hwcfg3
& GHWCFG3_I2C
);
1485 hw
->total_fifo_size
= (hwcfg3
& GHWCFG3_DFIFO_DEPTH_MASK
) >>
1486 GHWCFG3_DFIFO_DEPTH_SHIFT
;
1489 hw
->en_multiple_tx_fifo
= !!(hwcfg4
& GHWCFG4_DED_FIFO_EN
);
1490 hw
->num_dev_perio_in_ep
= (hwcfg4
& GHWCFG4_NUM_DEV_PERIO_IN_EP_MASK
) >>
1491 GHWCFG4_NUM_DEV_PERIO_IN_EP_SHIFT
;
1492 hw
->dma_desc_enable
= !!(hwcfg4
& GHWCFG4_DESC_DMA
);
1493 hw
->power_optimized
= !!(hwcfg4
& GHWCFG4_POWER_OPTIMIZ
);
1494 hw
->utmi_phy_data_width
= (hwcfg4
& GHWCFG4_UTMI_PHY_DATA_WIDTH_MASK
) >>
1495 GHWCFG4_UTMI_PHY_DATA_WIDTH_SHIFT
;
1498 hw
->host_rx_fifo_size
= (grxfsiz
& GRXFSIZ_DEPTH_MASK
) >>
1499 GRXFSIZ_DEPTH_SHIFT
;
1501 dev_dbg(hsotg
->dev
, "Detected values from hardware:\n");
1502 dev_dbg(hsotg
->dev
, " op_mode=%d\n",
1504 dev_dbg(hsotg
->dev
, " arch=%d\n",
1506 dev_dbg(hsotg
->dev
, " dma_desc_enable=%d\n",
1507 hw
->dma_desc_enable
);
1508 dev_dbg(hsotg
->dev
, " power_optimized=%d\n",
1509 hw
->power_optimized
);
1510 dev_dbg(hsotg
->dev
, " i2c_enable=%d\n",
1512 dev_dbg(hsotg
->dev
, " hs_phy_type=%d\n",
1514 dev_dbg(hsotg
->dev
, " fs_phy_type=%d\n",
1516 dev_dbg(hsotg
->dev
, " utmi_phy_data_width=%d\n",
1517 hw
->utmi_phy_data_width
);
1518 dev_dbg(hsotg
->dev
, " num_dev_ep=%d\n",
1520 dev_dbg(hsotg
->dev
, " num_dev_perio_in_ep=%d\n",
1521 hw
->num_dev_perio_in_ep
);
1522 dev_dbg(hsotg
->dev
, " host_channels=%d\n",
1524 dev_dbg(hsotg
->dev
, " max_transfer_size=%d\n",
1525 hw
->max_transfer_size
);
1526 dev_dbg(hsotg
->dev
, " max_packet_count=%d\n",
1527 hw
->max_packet_count
);
1528 dev_dbg(hsotg
->dev
, " nperio_tx_q_depth=0x%0x\n",
1529 hw
->nperio_tx_q_depth
);
1530 dev_dbg(hsotg
->dev
, " host_perio_tx_q_depth=0x%0x\n",
1531 hw
->host_perio_tx_q_depth
);
1532 dev_dbg(hsotg
->dev
, " dev_token_q_depth=0x%0x\n",
1533 hw
->dev_token_q_depth
);
1534 dev_dbg(hsotg
->dev
, " enable_dynamic_fifo=%d\n",
1535 hw
->enable_dynamic_fifo
);
1536 dev_dbg(hsotg
->dev
, " en_multiple_tx_fifo=%d\n",
1537 hw
->en_multiple_tx_fifo
);
1538 dev_dbg(hsotg
->dev
, " total_fifo_size=%d\n",
1539 hw
->total_fifo_size
);
1540 dev_dbg(hsotg
->dev
, " host_rx_fifo_size=%d\n",
1541 hw
->host_rx_fifo_size
);
1542 dev_dbg(hsotg
->dev
, " host_nperio_tx_fifo_size=%d\n",
1543 hw
->host_nperio_tx_fifo_size
);
1544 dev_dbg(hsotg
->dev
, " host_perio_tx_fifo_size=%d\n",
1545 hw
->host_perio_tx_fifo_size
);
1546 dev_dbg(hsotg
->dev
, "\n");
1552 * Sets all parameters to the given value.
1554 * Assumes that the dwc2_core_params struct contains only integers.
1556 void dwc2_set_all_params(struct dwc2_core_params
*params
, int value
)
1558 int *p
= (int *)params
;
1559 size_t size
= sizeof(*params
) / sizeof(*p
);
1562 for (i
= 0; i
< size
; i
++)
1567 u16
dwc2_get_otg_version(struct dwc2_hsotg
*hsotg
)
1569 return hsotg
->core_params
->otg_ver
== 1 ? 0x0200 : 0x0103;
1572 bool dwc2_is_controller_alive(struct dwc2_hsotg
*hsotg
)
1574 if (dwc2_readl(hsotg
->regs
+ GSNPSID
) == 0xffffffff)
1581 * dwc2_enable_global_interrupts() - Enables the controller's Global
1582 * Interrupt in the AHB Config register
1584 * @hsotg: Programming view of DWC_otg controller
1586 void dwc2_enable_global_interrupts(struct dwc2_hsotg
*hsotg
)
1588 u32 ahbcfg
= dwc2_readl(hsotg
->regs
+ GAHBCFG
);
1590 ahbcfg
|= GAHBCFG_GLBL_INTR_EN
;
1591 dwc2_writel(ahbcfg
, hsotg
->regs
+ GAHBCFG
);
1595 * dwc2_disable_global_interrupts() - Disables the controller's Global
1596 * Interrupt in the AHB Config register
1598 * @hsotg: Programming view of DWC_otg controller
1600 void dwc2_disable_global_interrupts(struct dwc2_hsotg
*hsotg
)
1602 u32 ahbcfg
= dwc2_readl(hsotg
->regs
+ GAHBCFG
);
1604 ahbcfg
&= ~GAHBCFG_GLBL_INTR_EN
;
1605 dwc2_writel(ahbcfg
, hsotg
->regs
+ GAHBCFG
);
1608 /* Returns the controller's GHWCFG2.OTG_MODE. */
1609 unsigned dwc2_op_mode(struct dwc2_hsotg
*hsotg
)
1611 u32 ghwcfg2
= dwc2_readl(hsotg
->regs
+ GHWCFG2
);
1613 return (ghwcfg2
& GHWCFG2_OP_MODE_MASK
) >>
1614 GHWCFG2_OP_MODE_SHIFT
;
1617 /* Returns true if the controller is capable of DRD. */
1618 bool dwc2_hw_is_otg(struct dwc2_hsotg
*hsotg
)
1620 unsigned op_mode
= dwc2_op_mode(hsotg
);
1622 return (op_mode
== GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
) ||
1623 (op_mode
== GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE
) ||
1624 (op_mode
== GHWCFG2_OP_MODE_NO_HNP_SRP_CAPABLE
);
1627 /* Returns true if the controller is host-only. */
1628 bool dwc2_hw_is_host(struct dwc2_hsotg
*hsotg
)
1630 unsigned op_mode
= dwc2_op_mode(hsotg
);
1632 return (op_mode
== GHWCFG2_OP_MODE_SRP_CAPABLE_HOST
) ||
1633 (op_mode
== GHWCFG2_OP_MODE_NO_SRP_CAPABLE_HOST
);
1636 /* Returns true if the controller is device-only. */
1637 bool dwc2_hw_is_device(struct dwc2_hsotg
*hsotg
)
1639 unsigned op_mode
= dwc2_op_mode(hsotg
);
1641 return (op_mode
== GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE
) ||
1642 (op_mode
== GHWCFG2_OP_MODE_NO_SRP_CAPABLE_DEVICE
);
1645 MODULE_DESCRIPTION("DESIGNWARE HS OTG Core");
1646 MODULE_AUTHOR("Synopsys, Inc.");
1647 MODULE_LICENSE("Dual BSD/GPL");