blob: 7292ed817e2a2ce3eff045730d89a911ae9b54d6 [file] [log] [blame]
Dan Murphy2d2358a2013-08-26 08:54:52 -05001/*
2 * OMAP USB HOST xHCI Controller
3 *
4 * (C) Copyright 2013
5 * Texas Instruments, <www.ti.com>
6 *
7 * Author: Dan Murphy <dmurphy@ti.com>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.h>
13#include <usb.h>
14#include <asm-generic/errno.h>
15#include <asm/omap_common.h>
16#include <asm/arch/cpu.h>
17#include <asm/arch/sys_proto.h>
Dan Murphy2d2358a2013-08-26 08:54:52 -050018
19#include <linux/compat.h>
20#include <linux/usb/dwc3.h>
Dan Murphy41b667b2013-10-11 12:28:14 -050021#include <linux/usb/xhci-omap.h>
Dan Murphy2d2358a2013-08-26 08:54:52 -050022
23#include "xhci.h"
24
25/* Declare global data pointer */
26DECLARE_GLOBAL_DATA_PTR;
27
28static struct omap_xhci omap;
29
Dan Murphyb2168212013-10-11 12:28:15 -050030inline int __board_usb_init(int index, enum board_usb_init_type init)
Dan Murphy2d2358a2013-08-26 08:54:52 -050031{
32 return 0;
33}
Dan Murphyb2168212013-10-11 12:28:15 -050034int board_usb_init(int index, enum board_usb_init_type init) \
35 __attribute__((weak, alias("__board_usb_init")));
Dan Murphy2d2358a2013-08-26 08:54:52 -050036
37static void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
38{
39 clrsetbits_le32(&dwc3_reg->g_ctl,
40 DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG),
41 DWC3_GCTL_PRTCAPDIR(mode));
42}
43
44static void dwc3_core_soft_reset(struct dwc3 *dwc3_reg)
45{
46 /* Before Resetting PHY, put Core in Reset */
47 setbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
48
Dan Murphyba554532013-10-11 12:28:16 -050049 omap_reset_usb_phy(dwc3_reg);
Dan Murphy2d2358a2013-08-26 08:54:52 -050050
51 /* After PHYs are stable we can take Core out of reset state */
52 clrbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
53}
54
55static int dwc3_core_init(struct dwc3 *dwc3_reg)
56{
57 u32 reg;
58 u32 revision;
59 unsigned int dwc3_hwparams1;
60
61 revision = readl(&dwc3_reg->g_snpsid);
62 /* This should read as U3 followed by revision number */
63 if ((revision & DWC3_GSNPSID_MASK) != 0x55330000) {
64 puts("this is not a DesignWare USB3 DRD Core\n");
65 return -1;
66 }
67
68 dwc3_core_soft_reset(dwc3_reg);
69
70 dwc3_hwparams1 = readl(&dwc3_reg->g_hwparams1);
71
72 reg = readl(&dwc3_reg->g_ctl);
73 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
74 reg &= ~DWC3_GCTL_DISSCRAMBLE;
75 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc3_hwparams1)) {
76 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
77 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
78 break;
79 default:
80 debug("No power optimization available\n");
81 }
82
83 /*
84 * WORKAROUND: DWC3 revisions <1.90a have a bug
85 * where the device can fail to connect at SuperSpeed
86 * and falls back to high-speed mode which causes
87 * the device to enter a Connect/Disconnect loop
88 */
89 if ((revision & DWC3_REVISION_MASK) < 0x190a)
90 reg |= DWC3_GCTL_U2RSTECN;
91
92 writel(reg, &dwc3_reg->g_ctl);
93
94 return 0;
95}
96
97static int omap_xhci_core_init(struct omap_xhci *omap)
98{
99 int ret = 0;
100
101 omap_enable_phy_clocks(omap);
102
Dan Murphyba554532013-10-11 12:28:16 -0500103 omap_usb3_phy_init(omap->usb3_phy);
Dan Murphy2d2358a2013-08-26 08:54:52 -0500104
105 ret = dwc3_core_init(omap->dwc3_reg);
106 if (ret) {
107 debug("%s:failed to initialize core\n", __func__);
108 return ret;
109 }
110
111 /* We are hard-coding DWC3 core to Host Mode */
112 dwc3_set_mode(omap->dwc3_reg, DWC3_GCTL_PRTCAP_HOST);
113
114 return ret;
115}
116
117static void omap_xhci_core_exit(struct omap_xhci *omap)
118{
119 usb3_phy_power(0);
120}
121
122int xhci_hcd_init(int index, struct xhci_hccr **hccr, struct xhci_hcor **hcor)
123{
124 struct omap_xhci *ctx = &omap;
125 int ret = 0;
126
127 ctx->hcd = (struct xhci_hccr *)OMAP_XHCI_BASE;
128 ctx->dwc3_reg = (struct dwc3 *)((char *)(ctx->hcd) + DWC3_REG_OFFSET);
129 ctx->usb3_phy = (struct omap_usb3_phy *)OMAP_OCP1_SCP_BASE;
130 ctx->otg_wrapper = (struct omap_dwc_wrapper *)OMAP_OTG_WRAPPER_BASE;
131
Dan Murphyb2168212013-10-11 12:28:15 -0500132 ret = board_usb_init(index, USB_INIT_HOST);
Dan Murphy2d2358a2013-08-26 08:54:52 -0500133 if (ret != 0) {
134 puts("Failed to initialize board for USB\n");
135 return ret;
136 }
137
138 ret = omap_xhci_core_init(ctx);
139 if (ret < 0) {
140 puts("Failed to initialize xhci\n");
141 return ret;
142 }
143
144 *hccr = (struct xhci_hccr *)(OMAP_XHCI_BASE);
145 *hcor = (struct xhci_hcor *)((uint32_t) *hccr
146 + HC_LENGTH(xhci_readl(&(*hccr)->cr_capbase)));
147
148 debug("omap-xhci: init hccr %x and hcor %x hc_length %d\n",
149 (uint32_t)*hccr, (uint32_t)*hcor,
150 (uint32_t)HC_LENGTH(xhci_readl(&(*hccr)->cr_capbase)));
151
152 return ret;
153}
154
155void xhci_hcd_stop(int index)
156{
157 struct omap_xhci *ctx = &omap;
158
159 omap_xhci_core_exit(ctx);
160}