blob: 2dca5244be9c15b87116b9e880c06e69d7c41927 [file] [log] [blame]
Michael Trimarchi6b924872008-11-28 13:22:09 +01001/*
Ramneek Mehresh1b719e62011-03-23 15:20:43 +05302 * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc.
Vivek Mahajan4ef01012009-05-25 17:23:16 +05303 *
Michael Trimarchi6b924872008-11-28 13:22:09 +01004 * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
5 *
6 * Author: Tor Krill tor@excito.com
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Michael Trimarchi6b924872008-11-28 13:22:09 +01009 */
10
11#include <common.h>
12#include <pci.h>
13#include <usb.h>
Michael Trimarchi6b924872008-11-28 13:22:09 +010014#include <asm/io.h>
Vivek Mahajan4ef01012009-05-25 17:23:16 +053015#include <usb/ehci-fsl.h>
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053016#include <hwconfig.h>
Nikhil Badolac26c80a2014-09-30 11:22:43 +053017#include <fsl_usb.h>
Nikhil Badolaa1c04e22014-10-20 16:50:49 +053018#include <fdt_support.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
Nikhil Badolaa1c04e22014-10-20 16:50:49 +053022#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
23#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
24#endif
25
Nikhil Badola896720c2014-04-07 08:46:14 +053026static void set_txfifothresh(struct usb_ehci *, u32);
27
Shengzhou Liu047cea32012-10-22 13:18:24 +080028/* Check USB PHY clock valid */
29static int usb_phy_clk_valid(struct usb_ehci *ehci)
30{
31 if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
32 in_be32(&ehci->prictrl))) {
33 printf("USB PHY clock invalid!\n");
34 return 0;
35 } else {
36 return 1;
37 }
38}
39
Michael Trimarchi6b924872008-11-28 13:22:09 +010040/*
41 * Create the appropriate control structures to manage
42 * a new EHCI host controller.
43 *
44 * Excerpts from linux ehci fsl driver.
45 */
Troy Kisky127efc42013-10-10 15:27:57 -070046int ehci_hcd_init(int index, enum usb_init_type init,
47 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Michael Trimarchi6b924872008-11-28 13:22:09 +010048{
ramneek mehresh77354e92013-09-12 16:35:49 +053049 struct usb_ehci *ehci = NULL;
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053050 const char *phy_type = NULL;
51 size_t len;
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053052 char current_usb_controller[5];
Kumar Galadd22f7c2011-11-09 10:04:15 -060053#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
54 char usb_phy[5];
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053055
56 usb_phy[0] = '\0';
Kumar Galadd22f7c2011-11-09 10:04:15 -060057#endif
Nikhil Badola11856912014-02-26 17:43:15 +053058 if (has_erratum_a007075()) {
59 /*
60 * A 5ms delay is needed after applying soft-reset to the
61 * controller to let external ULPI phy come out of reset.
62 * This delay needs to be added before re-initializing
63 * the controller after soft-resetting completes
64 */
65 mdelay(5);
66 }
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053067 memset(current_usb_controller, '\0', 5);
68 snprintf(current_usb_controller, 4, "usb%d", index+1);
Michael Trimarchi6b924872008-11-28 13:22:09 +010069
ramneek mehresh77354e92013-09-12 16:35:49 +053070 switch (index) {
71 case 0:
72 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
73 break;
74 case 1:
75 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR;
76 break;
77 default:
78 printf("ERROR: wrong controller index!!\n");
79 break;
80 };
81
Lucas Stach676ae062012-09-26 00:14:35 +020082 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
83 *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
84 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Michael Trimarchi6b924872008-11-28 13:22:09 +010085
Michael Trimarchi6b924872008-11-28 13:22:09 +010086 /* Set to Host mode */
Vivek Mahajan08066152009-06-19 17:56:00 +053087 setbits_le32(&ehci->usbmode, CM_HOST);
Michael Trimarchi6b924872008-11-28 13:22:09 +010088
Vivek Mahajan08066152009-06-19 17:56:00 +053089 out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
90 out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
Michael Trimarchi6b924872008-11-28 13:22:09 +010091
92 /* Init phy */
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053093 if (hwconfig_sub(current_usb_controller, "phy_type"))
94 phy_type = hwconfig_subarg(current_usb_controller,
95 "phy_type", &len);
Vivek Mahajan4ef01012009-05-25 17:23:16 +053096 else
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053097 phy_type = getenv("usb_phy_type");
98
99 if (!phy_type) {
100#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
101 /* if none specified assume internal UTMI */
102 strcpy(usb_phy, "utmi");
103 phy_type = usb_phy;
104#else
105 printf("WARNING: USB phy type not defined !!\n");
106 return -1;
107#endif
108 }
109
Nikhil Badola91d77462014-02-17 16:58:36 +0530110 if (!strncmp(phy_type, "utmi", 4)) {
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530111#if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
Nikhil Badola15231f62014-05-08 17:05:26 +0530112 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
113 PHY_CLK_SEL_UTMI);
114 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
115 UTMI_PHY_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530116 udelay(1000); /* delay required for PHY Clk to appear */
117#endif
Lucas Stach676ae062012-09-26 00:14:35 +0200118 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI);
Nikhil Badola15231f62014-05-08 17:05:26 +0530119 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
120 USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530121 } else {
Nikhil Badola15231f62014-05-08 17:05:26 +0530122 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
123 PHY_CLK_SEL_ULPI);
124 clrsetbits_be32(&ehci->control, UTMI_PHY_EN |
125 CONTROL_REGISTER_W1C_MASK, USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530126 udelay(1000); /* delay required for PHY Clk to appear */
Shengzhou Liu047cea32012-10-22 13:18:24 +0800127 if (!usb_phy_clk_valid(ehci))
128 return -EINVAL;
Lucas Stach676ae062012-09-26 00:14:35 +0200129 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530130 }
Michael Trimarchi6b924872008-11-28 13:22:09 +0100131
Vivek Mahajan08066152009-06-19 17:56:00 +0530132 out_be32(&ehci->prictrl, 0x0000000c);
133 out_be32(&ehci->age_cnt_limit, 0x00000040);
134 out_be32(&ehci->sictrl, 0x00000001);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100135
Vivek Mahajan08066152009-06-19 17:56:00 +0530136 in_le32(&ehci->usbmode);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100137
Nikhil Badolaf3dff692014-10-17 09:12:07 +0530138 if (has_erratum_a007798())
Nikhil Badola896720c2014-04-07 08:46:14 +0530139 set_txfifothresh(ehci, TXFIFOTHRESH);
140
Michael Trimarchi6b924872008-11-28 13:22:09 +0100141 return 0;
142}
143
144/*
145 * Destroy the appropriate control structures corresponding
146 * the the EHCI host controller.
147 */
Lucas Stach676ae062012-09-26 00:14:35 +0200148int ehci_hcd_stop(int index)
Michael Trimarchi6b924872008-11-28 13:22:09 +0100149{
150 return 0;
151}
Nikhil Badola896720c2014-04-07 08:46:14 +0530152
153/*
154 * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register
155 * to counter DDR latencies in writing data into Tx buffer.
156 * This prevents Tx buffer from getting underrun
157 */
158static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh)
159{
160 u32 cmd;
161 cmd = ehci_readl(&ehci->txfilltuning);
162 cmd &= ~TXFIFO_THRESH_MASK;
163 cmd |= TXFIFO_THRESH(txfifo_thresh);
164 ehci_writel(&ehci->txfilltuning, cmd);
165}
Nikhil Badolaa1c04e22014-10-20 16:50:49 +0530166
167#if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
168static int fdt_fixup_usb_mode_phy_type(void *blob, const char *mode,
169 const char *phy_type, int start_offset)
170{
171 const char *compat_dr = "fsl-usb2-dr";
172 const char *compat_mph = "fsl-usb2-mph";
173 const char *prop_mode = "dr_mode";
174 const char *prop_type = "phy_type";
175 const char *node_type = NULL;
176 int node_offset;
177 int err;
178
179 node_offset = fdt_node_offset_by_compatible(blob,
180 start_offset, compat_mph);
181 if (node_offset < 0) {
182 node_offset = fdt_node_offset_by_compatible(blob,
183 start_offset,
184 compat_dr);
185 if (node_offset < 0) {
186 printf("WARNING: could not find compatible node: %s",
187 fdt_strerror(node_offset));
188 return -1;
189 }
190 node_type = compat_dr;
191 } else {
192 node_type = compat_mph;
193 }
194
195 if (mode) {
196 err = fdt_setprop(blob, node_offset, prop_mode, mode,
197 strlen(mode) + 1);
198 if (err < 0)
199 printf("WARNING: could not set %s for %s: %s.\n",
200 prop_mode, node_type, fdt_strerror(err));
201 }
202
203 if (phy_type) {
204 err = fdt_setprop(blob, node_offset, prop_type, phy_type,
205 strlen(phy_type) + 1);
206 if (err < 0)
207 printf("WARNING: could not set %s for %s: %s.\n",
208 prop_type, node_type, fdt_strerror(err));
209 }
210
211 return node_offset;
212}
213
Nikhil Badolaecfc19f2014-09-30 11:24:07 +0530214static const char *fdt_usb_get_node_type(void *blob, int start_offset,
215 int *node_offset)
216{
217 const char *compat_dr = "fsl-usb2-dr";
218 const char *compat_mph = "fsl-usb2-mph";
219 const char *node_type = NULL;
220
221 *node_offset = fdt_node_offset_by_compatible(blob, start_offset,
222 compat_mph);
223 if (*node_offset < 0) {
224 *node_offset = fdt_node_offset_by_compatible(blob,
225 start_offset,
226 compat_dr);
227 if (*node_offset < 0) {
228 printf("ERROR: could not find compatible node: %s\n",
229 fdt_strerror(*node_offset));
230 } else {
231 node_type = compat_dr;
232 }
233 } else {
234 node_type = compat_mph;
235 }
236
237 return node_type;
238}
239
240static int fdt_fixup_usb_erratum(void *blob, const char *prop_erratum,
241 int start_offset)
242{
243 int node_offset, err;
244 const char *node_type = NULL;
245
246 node_type = fdt_usb_get_node_type(blob, start_offset, &node_offset);
247 if (!node_type)
248 return -1;
249
250 err = fdt_setprop(blob, node_offset, prop_erratum, NULL, 0);
251 if (err < 0) {
252 printf("ERROR: could not set %s for %s: %s.\n",
253 prop_erratum, node_type, fdt_strerror(err));
254 }
255
256 return node_offset;
257}
258
Nikhil Badolaa1c04e22014-10-20 16:50:49 +0530259void fdt_fixup_dr_usb(void *blob, bd_t *bd)
260{
261 static const char * const modes[] = { "host", "peripheral", "otg" };
Nikhil Badola0c771062015-03-11 15:44:23 +0530262 static const char * const phys[] = { "ulpi", "utmi", "utmi_dual" };
Nikhil Badolaecfc19f2014-09-30 11:24:07 +0530263 int usb_erratum_a006261_off = -1;
264 int usb_erratum_a007075_off = -1;
Nikhil Badolada5ce442014-10-30 10:11:28 +0530265 int usb_erratum_a007792_off = -1;
Nikhil Badolab4e78fa2015-03-17 18:16:33 +0530266 int usb_erratum_a005697_off = -1;
Nikhil Badolaa1c04e22014-10-20 16:50:49 +0530267 int usb_mode_off = -1;
268 int usb_phy_off = -1;
269 char str[5];
270 int i, j;
271
272 for (i = 1; i <= CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
273 const char *dr_mode_type = NULL;
274 const char *dr_phy_type = NULL;
275 int mode_idx = -1, phy_idx = -1;
276
277 snprintf(str, 5, "%s%d", "usb", i);
278 if (hwconfig(str)) {
279 for (j = 0; j < ARRAY_SIZE(modes); j++) {
280 if (hwconfig_subarg_cmp(str, "dr_mode",
281 modes[j])) {
282 mode_idx = j;
283 break;
284 }
285 }
286
287 for (j = 0; j < ARRAY_SIZE(phys); j++) {
288 if (hwconfig_subarg_cmp(str, "phy_type",
289 phys[j])) {
290 phy_idx = j;
291 break;
292 }
293 }
294
295 if (mode_idx < 0 && phy_idx < 0) {
296 printf("WARNING: invalid phy or mode\n");
297 return;
298 }
299
300 if (mode_idx > -1)
301 dr_mode_type = modes[mode_idx];
302
303 if (phy_idx > -1)
304 dr_phy_type = phys[phy_idx];
305 }
306
Nikhil Badola0c771062015-03-11 15:44:23 +0530307 if (has_dual_phy())
308 dr_phy_type = phys[2];
309
Nikhil Badolaa1c04e22014-10-20 16:50:49 +0530310 usb_mode_off = fdt_fixup_usb_mode_phy_type(blob,
311 dr_mode_type, NULL,
312 usb_mode_off);
313
314 if (usb_mode_off < 0)
315 return;
316
317 usb_phy_off = fdt_fixup_usb_mode_phy_type(blob,
318 NULL, dr_phy_type,
319 usb_phy_off);
320
321 if (usb_phy_off < 0)
322 return;
Nikhil Badolaecfc19f2014-09-30 11:24:07 +0530323
324 if (has_erratum_a006261()) {
325 usb_erratum_a006261_off = fdt_fixup_usb_erratum
326 (blob,
327 "fsl,usb-erratum-a006261",
328 usb_erratum_a006261_off);
329 if (usb_erratum_a006261_off < 0)
330 return;
331 }
Nikhil Badola0c771062015-03-11 15:44:23 +0530332
Nikhil Badolaecfc19f2014-09-30 11:24:07 +0530333 if (has_erratum_a007075()) {
334 usb_erratum_a007075_off = fdt_fixup_usb_erratum
335 (blob,
336 "fsl,usb-erratum-a007075",
337 usb_erratum_a007075_off);
338 if (usb_erratum_a007075_off < 0)
339 return;
340 }
Nikhil Badola0c771062015-03-11 15:44:23 +0530341
Nikhil Badolada5ce442014-10-30 10:11:28 +0530342 if (has_erratum_a007792()) {
343 usb_erratum_a007792_off = fdt_fixup_usb_erratum
344 (blob,
345 "fsl,usb-erratum-a007792",
346 usb_erratum_a007792_off);
347 if (usb_erratum_a007792_off < 0)
348 return;
349 }
Nikhil Badolab4e78fa2015-03-17 18:16:33 +0530350 if (has_erratum_a005697()) {
351 usb_erratum_a005697_off = fdt_fixup_usb_erratum
352 (blob,
353 "fsl,usb-erratum-a005697",
354 usb_erratum_a005697_off);
355 if (usb_erratum_a005697_off < 0)
356 return;
357 }
Nikhil Badolaa1c04e22014-10-20 16:50:49 +0530358 }
359}
360#endif