blob: f6f9efb6cdaf890a00a8a04574547f4a7223bb66 [file] [log] [blame]
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +05301/*
2 * Copyright (c) 2015 Sanchayan Maity <sanchayan.maity@toradex.com>
3 * Copyright (C) 2015 Toradex AG
4 *
5 * Based on ehci-mx6 driver
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
Sanchayan Maity0885cdb2016-08-09 23:44:59 +053011#include <dm.h>
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +053012#include <usb.h>
13#include <errno.h>
14#include <linux/compiler.h>
15#include <asm/io.h>
Sanchayan Maity0885cdb2016-08-09 23:44:59 +053016#include <asm-generic/gpio.h>
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +053017#include <asm/arch/clock.h>
18#include <asm/arch/imx-regs.h>
19#include <asm/arch/crm_regs.h>
20#include <asm/imx-common/iomux-v3.h>
21#include <asm/imx-common/regs-usbphy.h>
Mateusz Kulikowskie162c6b2016-03-31 23:12:23 +020022#include <usb/ehci-ci.h>
Sanchayan Maity0885cdb2016-08-09 23:44:59 +053023#include <libfdt.h>
24#include <fdtdec.h>
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +053025
26#include "ehci.h"
27
28#define USB_NC_REG_OFFSET 0x00000800
29
30#define ANADIG_PLL_CTRL_EN_USB_CLKS (1 << 6)
31
32#define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */
33#define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */
34
35/* USBCMD */
36#define UCMD_RUN_STOP (1 << 0) /* controller run/stop */
37#define UCMD_RESET (1 << 1) /* controller reset */
38
Sanchayan Maity0885cdb2016-08-09 23:44:59 +053039DECLARE_GLOBAL_DATA_PTR;
40
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +053041static const unsigned phy_bases[] = {
42 USB_PHY0_BASE_ADDR,
43 USB_PHY1_BASE_ADDR,
44};
45
46static const unsigned nc_reg_bases[] = {
47 USBC0_BASE_ADDR,
48 USBC1_BASE_ADDR,
49};
50
51static void usb_internal_phy_clock_gate(int index)
52{
53 void __iomem *phy_reg;
54
55 phy_reg = (void __iomem *)phy_bases[index];
56 clrbits_le32(phy_reg + USBPHY_CTRL, USBPHY_CTRL_CLKGATE);
57}
58
59static void usb_power_config(int index)
60{
61 struct anadig_reg __iomem *anadig =
62 (struct anadig_reg __iomem *)ANADIG_BASE_ADDR;
63 void __iomem *pll_ctrl;
64
65 switch (index) {
66 case 0:
67 pll_ctrl = &anadig->pll3_ctrl;
68 clrbits_le32(pll_ctrl, ANADIG_PLL3_CTRL_BYPASS);
69 setbits_le32(pll_ctrl, ANADIG_PLL3_CTRL_ENABLE
70 | ANADIG_PLL3_CTRL_POWERDOWN
71 | ANADIG_PLL_CTRL_EN_USB_CLKS);
72 break;
73 case 1:
74 pll_ctrl = &anadig->pll7_ctrl;
75 clrbits_le32(pll_ctrl, ANADIG_PLL7_CTRL_BYPASS);
76 setbits_le32(pll_ctrl, ANADIG_PLL7_CTRL_ENABLE
77 | ANADIG_PLL7_CTRL_POWERDOWN
78 | ANADIG_PLL_CTRL_EN_USB_CLKS);
79 break;
80 default:
81 return;
82 }
83}
84
85static void usb_phy_enable(int index, struct usb_ehci *ehci)
86{
87 void __iomem *phy_reg;
88 void __iomem *phy_ctrl;
89 void __iomem *usb_cmd;
90
91 phy_reg = (void __iomem *)phy_bases[index];
92 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
93 usb_cmd = (void __iomem *)&ehci->usbcmd;
94
95 /* Stop then Reset */
96 clrbits_le32(usb_cmd, UCMD_RUN_STOP);
97 while (readl(usb_cmd) & UCMD_RUN_STOP)
98 ;
99
100 setbits_le32(usb_cmd, UCMD_RESET);
101 while (readl(usb_cmd) & UCMD_RESET)
102 ;
103
104 /* Reset USBPHY module */
105 setbits_le32(phy_ctrl, USBPHY_CTRL_SFTRST);
106 udelay(10);
107
108 /* Remove CLKGATE and SFTRST */
109 clrbits_le32(phy_ctrl, USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST);
110 udelay(10);
111
112 /* Power up the PHY */
113 writel(0, phy_reg + USBPHY_PWD);
114
115 /* Enable FS/LS device */
116 setbits_le32(phy_ctrl, USBPHY_CTRL_ENUTMILEVEL2 |
117 USBPHY_CTRL_ENUTMILEVEL3);
118}
119
120static void usb_oc_config(int index)
121{
122 void __iomem *ctrl;
123
124 ctrl = (void __iomem *)(nc_reg_bases[index] + USB_NC_REG_OFFSET);
125
126 setbits_le32(ctrl, UCTRL_OVER_CUR_POL);
127 setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);
128}
129
Sanchayan Maity08c11cb2015-10-26 18:28:50 +0530130int __weak board_usb_phy_mode(int port)
131{
132 return 0;
133}
134
Sanchayan Maity60ed2862015-06-01 18:37:24 +0530135int __weak board_ehci_hcd_init(int port)
136{
137 return 0;
138}
139
Sanchayan Maity0885cdb2016-08-09 23:44:59 +0530140int ehci_vf_common_init(struct usb_ehci *ehci, int index)
141{
142 int ret;
143
144 /* Do board specific initialisation */
145 ret = board_ehci_hcd_init(index);
146 if (ret)
147 return ret;
148
149 usb_power_config(index);
150 usb_oc_config(index);
151 usb_internal_phy_clock_gate(index);
152 usb_phy_enable(index, ehci);
153
154 return 0;
155}
156
157#ifndef CONFIG_DM_USB
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +0530158int ehci_hcd_init(int index, enum usb_init_type init,
159 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
160{
161 struct usb_ehci *ehci;
Sanchayan Maity08c11cb2015-10-26 18:28:50 +0530162 enum usb_init_type type;
Sanchayan Maity0885cdb2016-08-09 23:44:59 +0530163 int ret;
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +0530164
165 if (index >= ARRAY_SIZE(nc_reg_bases))
166 return -EINVAL;
167
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +0530168 ehci = (struct usb_ehci *)nc_reg_bases[index];
169
Sanchayan Maity0885cdb2016-08-09 23:44:59 +0530170 ret = ehci_vf_common_init(index);
171 if (ret)
172 return ret;
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +0530173
174 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
175 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
176 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
177
Sanchayan Maity08c11cb2015-10-26 18:28:50 +0530178 type = board_usb_phy_mode(index);
179 if (type != init)
180 return -ENODEV;
181
Sanchayan Maitya94bb7a2015-04-15 16:24:27 +0530182 if (init == USB_INIT_DEVICE) {
183 setbits_le32(&ehci->usbmode, CM_DEVICE);
184 writel((PORT_PTS_UTMI | PORT_PTS_PTW), &ehci->portsc);
185 setbits_le32(&ehci->portsc, USB_EN);
186 } else if (init == USB_INIT_HOST) {
187 setbits_le32(&ehci->usbmode, CM_HOST);
188 writel((PORT_PTS_UTMI | PORT_PTS_PTW), &ehci->portsc);
189 setbits_le32(&ehci->portsc, USB_EN);
190 }
191
192 return 0;
193}
194
195int ehci_hcd_stop(int index)
196{
197 return 0;
198}
Sanchayan Maity0885cdb2016-08-09 23:44:59 +0530199#else
200/* Possible port types (dual role mode) */
201enum dr_mode {
202 DR_MODE_NONE = 0,
203 DR_MODE_HOST, /* supports host operation */
204 DR_MODE_DEVICE, /* supports device operation */
205 DR_MODE_OTG, /* supports both */
206};
207
208struct ehci_vf_priv_data {
209 struct ehci_ctrl ctrl;
210 struct usb_ehci *ehci;
211 struct gpio_desc cdet_gpio;
212 enum usb_init_type init_type;
213 enum dr_mode dr_mode;
214 u32 portnr;
215};
216
217static int vf_usb_ofdata_to_platdata(struct udevice *dev)
218{
219 struct ehci_vf_priv_data *priv = dev_get_priv(dev);
220 const void *dt_blob = gd->fdt_blob;
221 int node = dev->of_offset;
222 const char *mode;
223
224 priv->portnr = dev->seq;
225
226 priv->ehci = (struct usb_ehci *)dev_get_addr(dev);
227 mode = fdt_getprop(dt_blob, node, "dr_mode", NULL);
228 if (mode) {
229 if (0 == strcmp(mode, "host")) {
230 priv->dr_mode = DR_MODE_HOST;
231 priv->init_type = USB_INIT_HOST;
232 } else if (0 == strcmp(mode, "peripheral")) {
233 priv->dr_mode = DR_MODE_DEVICE;
234 priv->init_type = USB_INIT_DEVICE;
235 } else if (0 == strcmp(mode, "otg")) {
236 priv->dr_mode = DR_MODE_OTG;
237 /*
238 * We set init_type to device by default when OTG
239 * mode is requested. If a valid gpio is provided
240 * we will switch the init_type based on the state
241 * of the gpio pin.
242 */
243 priv->init_type = USB_INIT_DEVICE;
244 } else {
245 debug("%s: Cannot decode dr_mode '%s'\n",
246 __func__, mode);
247 return -EINVAL;
248 }
249 } else {
250 priv->dr_mode = DR_MODE_HOST;
251 priv->init_type = USB_INIT_HOST;
252 }
253
254 if (priv->dr_mode == DR_MODE_OTG) {
255 gpio_request_by_name_nodev(dt_blob, node, "fsl,cdet-gpio", 0,
256 &priv->cdet_gpio, GPIOD_IS_IN);
257 if (dm_gpio_is_valid(&priv->cdet_gpio)) {
258 if (dm_gpio_get_value(&priv->cdet_gpio))
259 priv->init_type = USB_INIT_DEVICE;
260 else
261 priv->init_type = USB_INIT_HOST;
262 }
263 }
264
265 return 0;
266}
267
268static int vf_init_after_reset(struct ehci_ctrl *dev)
269{
270 struct ehci_vf_priv_data *priv = dev->priv;
271 enum usb_init_type type = priv->init_type;
272 struct usb_ehci *ehci = priv->ehci;
273 int ret;
274
275 ret = ehci_vf_common_init(priv->ehci, priv->portnr);
276 if (ret)
277 return ret;
278
279 if (type == USB_INIT_DEVICE)
280 return 0;
281
282 setbits_le32(&ehci->usbmode, CM_HOST);
283 writel((PORT_PTS_UTMI | PORT_PTS_PTW), &ehci->portsc);
284 setbits_le32(&ehci->portsc, USB_EN);
285
286 mdelay(10);
287
288 return 0;
289}
290
291static const struct ehci_ops vf_ehci_ops = {
292 .init_after_reset = vf_init_after_reset
293};
294
295static int vf_usb_bind(struct udevice *dev)
296{
297 static int num_controllers;
298
299 /*
300 * Without this hack, if we return ENODEV for USB Controller 0, on
301 * probe for the next controller, USB Controller 1 will be given a
302 * sequence number of 0. This conflicts with our requirement of
303 * sequence numbers while initialising the peripherals.
304 */
305 dev->req_seq = num_controllers;
306 num_controllers++;
307
308 return 0;
309}
310
311static int ehci_usb_probe(struct udevice *dev)
312{
313 struct usb_platdata *plat = dev_get_platdata(dev);
314 struct ehci_vf_priv_data *priv = dev_get_priv(dev);
315 struct usb_ehci *ehci = priv->ehci;
316 struct ehci_hccr *hccr;
317 struct ehci_hcor *hcor;
318 int ret;
319
320 ret = ehci_vf_common_init(ehci, priv->portnr);
321 if (ret)
322 return ret;
323
324 if (priv->init_type != plat->init_type)
325 return -ENODEV;
326
327 if (priv->init_type == USB_INIT_HOST) {
328 setbits_le32(&ehci->usbmode, CM_HOST);
329 writel((PORT_PTS_UTMI | PORT_PTS_PTW), &ehci->portsc);
330 setbits_le32(&ehci->portsc, USB_EN);
331 }
332
333 mdelay(10);
334
335 hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
336 hcor = (struct ehci_hcor *)((uint32_t)hccr +
337 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
338
339 return ehci_register(dev, hccr, hcor, &vf_ehci_ops, 0, priv->init_type);
340}
341
342static int ehci_usb_remove(struct udevice *dev)
343{
344 int ret;
345
346 ret = ehci_deregister(dev);
347 if (ret)
348 return ret;
349
350 return 0;
351}
352
353static const struct udevice_id vf_usb_ids[] = {
354 { .compatible = "fsl,vf610-usb" },
355 { }
356};
357
358U_BOOT_DRIVER(usb_ehci) = {
359 .name = "ehci_vf",
360 .id = UCLASS_USB,
361 .of_match = vf_usb_ids,
362 .bind = vf_usb_bind,
363 .probe = ehci_usb_probe,
364 .remove = ehci_usb_remove,
365 .ops = &ehci_usb_ops,
366 .ofdata_to_platdata = vf_usb_ofdata_to_platdata,
367 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
368 .priv_auto_alloc_size = sizeof(struct ehci_vf_priv_data),
369 .flags = DM_FLAG_ALLOC_PRIV_DMA,
370};
371#endif