blob: df3fa041b7fee48f8d335d8a9886e304f569f2c4 [file] [log] [blame]
Michael Trimarchie30a3362008-11-28 13:22:09 +01001/*
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +05302 * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc.
Vivek Mahajan288f7fb2009-05-25 17:23:16 +05303 *
Michael Trimarchie30a3362008-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 Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Michael Trimarchie30a3362008-11-28 13:22:09 +01009 */
10
11#include <common.h>
12#include <pci.h>
13#include <usb.h>
Michael Trimarchie30a3362008-11-28 13:22:09 +010014#include <asm/io.h>
Mateusz Kulikowski3add69e2016-03-31 23:12:23 +020015#include <usb/ehci-ci.h>
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053016#include <hwconfig.h>
Nikhil Badola76c2f2e2014-09-30 11:22:43 +053017#include <fsl_usb.h>
Nikhil Badolab6fd44c2014-10-20 16:50:49 +053018#include <fdt_support.h>
Michael Trimarchie30a3362008-11-28 13:22:09 +010019
Jean-Christophe PLAGNIOL-VILLARD8f6bcf42009-04-03 12:46:58 +020020#include "ehci.h"
Michael Trimarchie30a3362008-11-28 13:22:09 +010021
Nikhil Badolab6fd44c2014-10-20 16:50:49 +053022#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
23#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
24#endif
25
Nikhil Badolab0b48da2014-04-07 08:46:14 +053026static void set_txfifothresh(struct usb_ehci *, u32);
Rajesh Bhagat2542d962016-07-01 18:51:45 +053027static int ehci_fsl_init(int index, struct usb_ehci *ehci,
28 struct ehci_hccr *hccr, struct ehci_hcor *hcor);
Nikhil Badolab0b48da2014-04-07 08:46:14 +053029
Shengzhou Liud407e1f2012-10-22 13:18:24 +080030/* Check USB PHY clock valid */
31static int usb_phy_clk_valid(struct usb_ehci *ehci)
32{
33 if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
34 in_be32(&ehci->prictrl))) {
35 printf("USB PHY clock invalid!\n");
36 return 0;
37 } else {
38 return 1;
39 }
40}
41
Michael Trimarchie30a3362008-11-28 13:22:09 +010042/*
43 * Create the appropriate control structures to manage
44 * a new EHCI host controller.
45 *
46 * Excerpts from linux ehci fsl driver.
47 */
Troy Kisky7d6bbb92013-10-10 15:27:57 -070048int ehci_hcd_init(int index, enum usb_init_type init,
49 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Michael Trimarchie30a3362008-11-28 13:22:09 +010050{
ramneek mehresh16b08062013-09-12 16:35:49 +053051 struct usb_ehci *ehci = NULL;
Rajesh Bhagat2542d962016-07-01 18:51:45 +053052
53 switch (index) {
54 case 0:
55 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
56 break;
57 case 1:
58 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR;
59 break;
60 default:
61 printf("ERROR: wrong controller index!!\n");
62 return -EINVAL;
63 };
64
65 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
66 *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
67 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
68
69 return ehci_fsl_init(index, ehci, *hccr, *hcor);
70}
71
72/*
73 * Destroy the appropriate control structures corresponding
74 * the the EHCI host controller.
75 */
76int ehci_hcd_stop(int index)
77{
78 return 0;
79}
80
81static int ehci_fsl_init(int index, struct usb_ehci *ehci,
82 struct ehci_hccr *hccr, struct ehci_hcor *hcor)
83{
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053084 const char *phy_type = NULL;
85 size_t len;
Nikhil Badolaeb97e252013-12-19 11:08:46 +053086 char current_usb_controller[5];
Kumar Gala7b83c352011-11-09 10:04:15 -060087#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
88 char usb_phy[5];
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053089
90 usb_phy[0] = '\0';
Kumar Gala7b83c352011-11-09 10:04:15 -060091#endif
Nikhil Badola2613cfc2014-02-26 17:43:15 +053092 if (has_erratum_a007075()) {
93 /*
94 * A 5ms delay is needed after applying soft-reset to the
95 * controller to let external ULPI phy come out of reset.
96 * This delay needs to be added before re-initializing
97 * the controller after soft-resetting completes
98 */
99 mdelay(5);
100 }
Nikhil Badolaeb97e252013-12-19 11:08:46 +0530101 memset(current_usb_controller, '\0', 5);
Rajesh Bhagatb412fad2016-06-18 10:47:10 +0530102 snprintf(current_usb_controller, sizeof(current_usb_controller),
103 "usb%d", index+1);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100104
Michael Trimarchie30a3362008-11-28 13:22:09 +0100105 /* Set to Host mode */
Vivek Mahajan32c52202009-06-19 17:56:00 +0530106 setbits_le32(&ehci->usbmode, CM_HOST);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100107
Vivek Mahajan32c52202009-06-19 17:56:00 +0530108 out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
109 out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100110
111 /* Init phy */
Nikhil Badolaeb97e252013-12-19 11:08:46 +0530112 if (hwconfig_sub(current_usb_controller, "phy_type"))
113 phy_type = hwconfig_subarg(current_usb_controller,
114 "phy_type", &len);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530115 else
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530116 phy_type = getenv("usb_phy_type");
117
118 if (!phy_type) {
119#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
120 /* if none specified assume internal UTMI */
121 strcpy(usb_phy, "utmi");
122 phy_type = usb_phy;
123#else
124 printf("WARNING: USB phy type not defined !!\n");
125 return -1;
126#endif
127 }
128
Nikhil Badola09a3b562014-02-17 16:58:36 +0530129 if (!strncmp(phy_type, "utmi", 4)) {
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530130#if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
Nikhil Badola369f6632014-05-08 17:05:26 +0530131 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
132 PHY_CLK_SEL_UTMI);
133 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
134 UTMI_PHY_EN);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530135 udelay(1000); /* delay required for PHY Clk to appear */
136#endif
Rajesh Bhagat2542d962016-07-01 18:51:45 +0530137 out_le32(&(hcor)->or_portsc[0], PORT_PTS_UTMI);
Nikhil Badola369f6632014-05-08 17:05:26 +0530138 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
139 USB_EN);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530140 } else {
Nikhil Badola369f6632014-05-08 17:05:26 +0530141 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
142 PHY_CLK_SEL_ULPI);
143 clrsetbits_be32(&ehci->control, UTMI_PHY_EN |
144 CONTROL_REGISTER_W1C_MASK, USB_EN);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530145 udelay(1000); /* delay required for PHY Clk to appear */
Shengzhou Liud407e1f2012-10-22 13:18:24 +0800146 if (!usb_phy_clk_valid(ehci))
147 return -EINVAL;
Rajesh Bhagat2542d962016-07-01 18:51:45 +0530148 out_le32(&(hcor)->or_portsc[0], PORT_PTS_ULPI);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530149 }
Michael Trimarchie30a3362008-11-28 13:22:09 +0100150
Vivek Mahajan32c52202009-06-19 17:56:00 +0530151 out_be32(&ehci->prictrl, 0x0000000c);
152 out_be32(&ehci->age_cnt_limit, 0x00000040);
153 out_be32(&ehci->sictrl, 0x00000001);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100154
Vivek Mahajan32c52202009-06-19 17:56:00 +0530155 in_le32(&ehci->usbmode);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100156
Nikhil Badola67f4b262014-10-17 09:12:07 +0530157 if (has_erratum_a007798())
Nikhil Badolab0b48da2014-04-07 08:46:14 +0530158 set_txfifothresh(ehci, TXFIFOTHRESH);
159
Nikhil Badola288542c2014-11-21 17:25:21 +0530160 if (has_erratum_a004477()) {
161 /*
162 * When reset is issued while any ULPI transaction is ongoing
163 * then it may result to corruption of ULPI Function Control
164 * Register which eventually causes phy clock to enter low
165 * power mode which stops the clock. Thus delay is required
166 * before reset to let ongoing ULPI transaction complete.
167 */
168 udelay(1);
169 }
Michael Trimarchie30a3362008-11-28 13:22:09 +0100170 return 0;
171}
172
173/*
Nikhil Badolab0b48da2014-04-07 08:46:14 +0530174 * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register
175 * to counter DDR latencies in writing data into Tx buffer.
176 * This prevents Tx buffer from getting underrun
177 */
178static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh)
179{
180 u32 cmd;
181 cmd = ehci_readl(&ehci->txfilltuning);
182 cmd &= ~TXFIFO_THRESH_MASK;
183 cmd |= TXFIFO_THRESH(txfifo_thresh);
184 ehci_writel(&ehci->txfilltuning, cmd);
185}