blob: a04f6a31c8e49986827f6a9be20d6f4d8d19ccd3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michael Trimarchi6b924872008-11-28 13:22:09 +01002/*
Rajesh Bhagatba699a52016-07-01 18:51:46 +05303 * (C) Copyright 2009, 2011, 2016 Freescale Semiconductor, Inc.
Vivek Mahajan4ef01012009-05-25 17:23:16 +05304 *
Michael Trimarchi6b924872008-11-28 13:22:09 +01005 * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
6 *
7 * Author: Tor Krill tor@excito.com
Michael Trimarchi6b924872008-11-28 13:22:09 +01008 */
9
10#include <common.h>
11#include <pci.h>
12#include <usb.h>
Michael Trimarchi6b924872008-11-28 13:22:09 +010013#include <asm/io.h>
Mateusz Kulikowskie162c6b2016-03-31 23:12:23 +020014#include <usb/ehci-ci.h>
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053015#include <hwconfig.h>
Nikhil Badolac26c80a2014-09-30 11:22:43 +053016#include <fsl_usb.h>
Nikhil Badolaa1c04e22014-10-20 16:50:49 +053017#include <fdt_support.h>
Rajesh Bhagatba699a52016-07-01 18:51:46 +053018#include <dm.h>
Michael Trimarchi6b924872008-11-28 13:22:09 +010019
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020020#include "ehci.h"
Michael Trimarchi6b924872008-11-28 13:22:09 +010021
Rajesh Bhagatba699a52016-07-01 18:51:46 +053022DECLARE_GLOBAL_DATA_PTR;
23
Nikhil Badolaa1c04e22014-10-20 16:50:49 +053024#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
25#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
26#endif
27
Rajesh Bhagatba699a52016-07-01 18:51:46 +053028#ifdef CONFIG_DM_USB
29struct ehci_fsl_priv {
30 struct ehci_ctrl ehci;
31 fdt_addr_t hcd_base;
32 char *phy_type;
33};
34#endif
35
Nikhil Badola896720c2014-04-07 08:46:14 +053036static void set_txfifothresh(struct usb_ehci *, u32);
Rajesh Bhagatba699a52016-07-01 18:51:46 +053037#ifdef CONFIG_DM_USB
38static int ehci_fsl_init(struct ehci_fsl_priv *priv, struct usb_ehci *ehci,
39 struct ehci_hccr *hccr, struct ehci_hcor *hcor);
40#else
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +053041static int ehci_fsl_init(int index, struct usb_ehci *ehci,
42 struct ehci_hccr *hccr, struct ehci_hcor *hcor);
Rajesh Bhagatba699a52016-07-01 18:51:46 +053043#endif
Nikhil Badola896720c2014-04-07 08:46:14 +053044
Shengzhou Liu047cea32012-10-22 13:18:24 +080045/* Check USB PHY clock valid */
46static int usb_phy_clk_valid(struct usb_ehci *ehci)
47{
48 if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
49 in_be32(&ehci->prictrl))) {
50 printf("USB PHY clock invalid!\n");
51 return 0;
52 } else {
53 return 1;
54 }
55}
56
Rajesh Bhagatba699a52016-07-01 18:51:46 +053057#ifdef CONFIG_DM_USB
58static int ehci_fsl_ofdata_to_platdata(struct udevice *dev)
59{
60 struct ehci_fsl_priv *priv = dev_get_priv(dev);
61 const void *prop;
62
Simon Glasse160f7d2017-01-17 16:52:55 -070063 prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy_type",
Rajesh Bhagatba699a52016-07-01 18:51:46 +053064 NULL);
65 if (prop) {
66 priv->phy_type = (char *)prop;
67 debug("phy_type %s\n", priv->phy_type);
68 }
69
70 return 0;
71}
72
73static int ehci_fsl_init_after_reset(struct ehci_ctrl *ctrl)
74{
75 struct usb_ehci *ehci = NULL;
76 struct ehci_fsl_priv *priv = container_of(ctrl, struct ehci_fsl_priv,
77 ehci);
78
79 ehci = (struct usb_ehci *)priv->hcd_base;
80 if (ehci_fsl_init(priv, ehci, priv->ehci.hccr, priv->ehci.hcor) < 0)
81 return -ENXIO;
82
83 return 0;
84}
85
86static const struct ehci_ops fsl_ehci_ops = {
87 .init_after_reset = ehci_fsl_init_after_reset,
88};
89
90static int ehci_fsl_probe(struct udevice *dev)
91{
92 struct ehci_fsl_priv *priv = dev_get_priv(dev);
93 struct usb_ehci *ehci = NULL;
94 struct ehci_hccr *hccr;
95 struct ehci_hcor *hcor;
96
97 /*
98 * Get the base address for EHCI controller from the device node
99 */
Simon Glassa821c4a2017-05-17 17:18:05 -0600100 priv->hcd_base = devfdt_get_addr(dev);
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530101 if (priv->hcd_base == FDT_ADDR_T_NONE) {
102 debug("Can't get the EHCI register base address\n");
103 return -ENXIO;
104 }
105 ehci = (struct usb_ehci *)priv->hcd_base;
106 hccr = (struct ehci_hccr *)(&ehci->caplength);
107 hcor = (struct ehci_hcor *)
Ran Wangbe3872e2017-12-20 10:34:19 +0800108 ((void *)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530109
110 if (ehci_fsl_init(priv, ehci, hccr, hcor) < 0)
111 return -ENXIO;
112
Ran Wangbe3872e2017-12-20 10:34:19 +0800113 debug("ehci-fsl: init hccr %p and hcor %p hc_length %d\n",
114 (void *)hccr, (void *)hcor,
115 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530116
117 return ehci_register(dev, hccr, hcor, &fsl_ehci_ops, 0, USB_INIT_HOST);
118}
119
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530120static const struct udevice_id ehci_usb_ids[] = {
121 { .compatible = "fsl-usb2-mph", },
122 { .compatible = "fsl-usb2-dr", },
123 { }
124};
125
126U_BOOT_DRIVER(ehci_fsl) = {
127 .name = "ehci_fsl",
128 .id = UCLASS_USB,
129 .of_match = ehci_usb_ids,
130 .ofdata_to_platdata = ehci_fsl_ofdata_to_platdata,
131 .probe = ehci_fsl_probe,
Masahiro Yamada40527342016-09-06 22:17:34 +0900132 .remove = ehci_deregister,
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530133 .ops = &ehci_usb_ops,
134 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
135 .priv_auto_alloc_size = sizeof(struct ehci_fsl_priv),
136 .flags = DM_FLAG_ALLOC_PRIV_DMA,
137};
138#else
Michael Trimarchi6b924872008-11-28 13:22:09 +0100139/*
140 * Create the appropriate control structures to manage
141 * a new EHCI host controller.
142 *
143 * Excerpts from linux ehci fsl driver.
144 */
Troy Kisky127efc42013-10-10 15:27:57 -0700145int ehci_hcd_init(int index, enum usb_init_type init,
146 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Michael Trimarchi6b924872008-11-28 13:22:09 +0100147{
ramneek mehresh77354e92013-09-12 16:35:49 +0530148 struct usb_ehci *ehci = NULL;
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530149
150 switch (index) {
151 case 0:
152 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
153 break;
154 case 1:
155 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR;
156 break;
157 default:
158 printf("ERROR: wrong controller index!!\n");
159 return -EINVAL;
160 };
161
162 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
163 *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
164 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
165
166 return ehci_fsl_init(index, ehci, *hccr, *hcor);
167}
168
169/*
170 * Destroy the appropriate control structures corresponding
171 * the the EHCI host controller.
172 */
173int ehci_hcd_stop(int index)
174{
175 return 0;
176}
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530177#endif
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530178
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530179#ifdef CONFIG_DM_USB
180static int ehci_fsl_init(struct ehci_fsl_priv *priv, struct usb_ehci *ehci,
181 struct ehci_hccr *hccr, struct ehci_hcor *hcor)
182#else
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530183static int ehci_fsl_init(int index, struct usb_ehci *ehci,
184 struct ehci_hccr *hccr, struct ehci_hcor *hcor)
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530185#endif
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530186{
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530187 const char *phy_type = NULL;
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530188#ifndef CONFIG_DM_USB
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530189 size_t len;
Nikhil Badola0ecb15c2013-12-19 11:08:46 +0530190 char current_usb_controller[5];
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530191#endif
Kumar Galadd22f7c2011-11-09 10:04:15 -0600192#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
193 char usb_phy[5];
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530194
195 usb_phy[0] = '\0';
Kumar Galadd22f7c2011-11-09 10:04:15 -0600196#endif
Nikhil Badola11856912014-02-26 17:43:15 +0530197 if (has_erratum_a007075()) {
198 /*
199 * A 5ms delay is needed after applying soft-reset to the
200 * controller to let external ULPI phy come out of reset.
201 * This delay needs to be added before re-initializing
202 * the controller after soft-resetting completes
203 */
204 mdelay(5);
205 }
Michael Trimarchi6b924872008-11-28 13:22:09 +0100206
Michael Trimarchi6b924872008-11-28 13:22:09 +0100207 /* Set to Host mode */
Vivek Mahajan08066152009-06-19 17:56:00 +0530208 setbits_le32(&ehci->usbmode, CM_HOST);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100209
Vivek Mahajan08066152009-06-19 17:56:00 +0530210 out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
211 out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100212
213 /* Init phy */
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530214#ifdef CONFIG_DM_USB
215 if (priv->phy_type)
216 phy_type = priv->phy_type;
217#else
218 memset(current_usb_controller, '\0', 5);
219 snprintf(current_usb_controller, sizeof(current_usb_controller),
220 "usb%d", index+1);
221
Nikhil Badola0ecb15c2013-12-19 11:08:46 +0530222 if (hwconfig_sub(current_usb_controller, "phy_type"))
223 phy_type = hwconfig_subarg(current_usb_controller,
224 "phy_type", &len);
Rajesh Bhagatba699a52016-07-01 18:51:46 +0530225#endif
Vivek Mahajan4ef01012009-05-25 17:23:16 +0530226 else
Simon Glass00caae62017-08-03 12:22:12 -0600227 phy_type = env_get("usb_phy_type");
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530228
229 if (!phy_type) {
230#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
231 /* if none specified assume internal UTMI */
232 strcpy(usb_phy, "utmi");
233 phy_type = usb_phy;
234#else
235 printf("WARNING: USB phy type not defined !!\n");
236 return -1;
237#endif
238 }
239
Nikhil Badola91d77462014-02-17 16:58:36 +0530240 if (!strncmp(phy_type, "utmi", 4)) {
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530241#if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
Nikhil Badola15231f62014-05-08 17:05:26 +0530242 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
243 PHY_CLK_SEL_UTMI);
244 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
245 UTMI_PHY_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530246 udelay(1000); /* delay required for PHY Clk to appear */
247#endif
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530248 out_le32(&(hcor)->or_portsc[0], PORT_PTS_UTMI);
Nikhil Badola15231f62014-05-08 17:05:26 +0530249 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
250 USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530251 } else {
Nikhil Badola15231f62014-05-08 17:05:26 +0530252 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
253 PHY_CLK_SEL_ULPI);
254 clrsetbits_be32(&ehci->control, UTMI_PHY_EN |
255 CONTROL_REGISTER_W1C_MASK, USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530256 udelay(1000); /* delay required for PHY Clk to appear */
Shengzhou Liu047cea32012-10-22 13:18:24 +0800257 if (!usb_phy_clk_valid(ehci))
258 return -EINVAL;
Rajesh Bhagat1e61ce92016-07-01 18:51:45 +0530259 out_le32(&(hcor)->or_portsc[0], PORT_PTS_ULPI);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530260 }
Michael Trimarchi6b924872008-11-28 13:22:09 +0100261
Vivek Mahajan08066152009-06-19 17:56:00 +0530262 out_be32(&ehci->prictrl, 0x0000000c);
263 out_be32(&ehci->age_cnt_limit, 0x00000040);
264 out_be32(&ehci->sictrl, 0x00000001);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100265
Vivek Mahajan08066152009-06-19 17:56:00 +0530266 in_le32(&ehci->usbmode);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100267
Nikhil Badolaf3dff692014-10-17 09:12:07 +0530268 if (has_erratum_a007798())
Nikhil Badola896720c2014-04-07 08:46:14 +0530269 set_txfifothresh(ehci, TXFIFOTHRESH);
270
Nikhil Badola0dc78ff2014-11-21 17:25:21 +0530271 if (has_erratum_a004477()) {
272 /*
273 * When reset is issued while any ULPI transaction is ongoing
274 * then it may result to corruption of ULPI Function Control
275 * Register which eventually causes phy clock to enter low
276 * power mode which stops the clock. Thus delay is required
277 * before reset to let ongoing ULPI transaction complete.
278 */
279 udelay(1);
280 }
Michael Trimarchi6b924872008-11-28 13:22:09 +0100281 return 0;
282}
283
284/*
Nikhil Badola896720c2014-04-07 08:46:14 +0530285 * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register
286 * to counter DDR latencies in writing data into Tx buffer.
287 * This prevents Tx buffer from getting underrun
288 */
289static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh)
290{
291 u32 cmd;
292 cmd = ehci_readl(&ehci->txfilltuning);
293 cmd &= ~TXFIFO_THRESH_MASK;
294 cmd |= TXFIFO_THRESH(txfifo_thresh);
295 ehci_writel(&ehci->txfilltuning, cmd);
296}