blob: 45062e699bd7c38793e9bd6a5a3142e263c16f84 [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 Badola11856912014-02-26 17:43:15 +053017#include <asm/fsl_errata.h>
Michael Trimarchi6b924872008-11-28 13:22:09 +010018
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020019#include "ehci.h"
Michael Trimarchi6b924872008-11-28 13:22:09 +010020
Nikhil Badola896720c2014-04-07 08:46:14 +053021static void set_txfifothresh(struct usb_ehci *, u32);
22
Shengzhou Liu047cea32012-10-22 13:18:24 +080023/* Check USB PHY clock valid */
24static int usb_phy_clk_valid(struct usb_ehci *ehci)
25{
26 if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
27 in_be32(&ehci->prictrl))) {
28 printf("USB PHY clock invalid!\n");
29 return 0;
30 } else {
31 return 1;
32 }
33}
34
Michael Trimarchi6b924872008-11-28 13:22:09 +010035/*
36 * Create the appropriate control structures to manage
37 * a new EHCI host controller.
38 *
39 * Excerpts from linux ehci fsl driver.
40 */
Troy Kisky127efc42013-10-10 15:27:57 -070041int ehci_hcd_init(int index, enum usb_init_type init,
42 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Michael Trimarchi6b924872008-11-28 13:22:09 +010043{
ramneek mehresh77354e92013-09-12 16:35:49 +053044 struct usb_ehci *ehci = NULL;
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053045 const char *phy_type = NULL;
46 size_t len;
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053047 char current_usb_controller[5];
Kumar Galadd22f7c2011-11-09 10:04:15 -060048#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
49 char usb_phy[5];
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053050
51 usb_phy[0] = '\0';
Kumar Galadd22f7c2011-11-09 10:04:15 -060052#endif
Nikhil Badola11856912014-02-26 17:43:15 +053053 if (has_erratum_a007075()) {
54 /*
55 * A 5ms delay is needed after applying soft-reset to the
56 * controller to let external ULPI phy come out of reset.
57 * This delay needs to be added before re-initializing
58 * the controller after soft-resetting completes
59 */
60 mdelay(5);
61 }
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053062 memset(current_usb_controller, '\0', 5);
63 snprintf(current_usb_controller, 4, "usb%d", index+1);
Michael Trimarchi6b924872008-11-28 13:22:09 +010064
ramneek mehresh77354e92013-09-12 16:35:49 +053065 switch (index) {
66 case 0:
67 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
68 break;
69 case 1:
70 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR;
71 break;
72 default:
73 printf("ERROR: wrong controller index!!\n");
74 break;
75 };
76
Lucas Stach676ae062012-09-26 00:14:35 +020077 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
78 *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
79 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Michael Trimarchi6b924872008-11-28 13:22:09 +010080
Michael Trimarchi6b924872008-11-28 13:22:09 +010081 /* Set to Host mode */
Vivek Mahajan08066152009-06-19 17:56:00 +053082 setbits_le32(&ehci->usbmode, CM_HOST);
Michael Trimarchi6b924872008-11-28 13:22:09 +010083
Vivek Mahajan08066152009-06-19 17:56:00 +053084 out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
85 out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
Michael Trimarchi6b924872008-11-28 13:22:09 +010086
87 /* Init phy */
Nikhil Badola0ecb15c2013-12-19 11:08:46 +053088 if (hwconfig_sub(current_usb_controller, "phy_type"))
89 phy_type = hwconfig_subarg(current_usb_controller,
90 "phy_type", &len);
Vivek Mahajan4ef01012009-05-25 17:23:16 +053091 else
Ramneek Mehresh1b719e62011-03-23 15:20:43 +053092 phy_type = getenv("usb_phy_type");
93
94 if (!phy_type) {
95#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
96 /* if none specified assume internal UTMI */
97 strcpy(usb_phy, "utmi");
98 phy_type = usb_phy;
99#else
100 printf("WARNING: USB phy type not defined !!\n");
101 return -1;
102#endif
103 }
104
Nikhil Badola91d77462014-02-17 16:58:36 +0530105 if (!strncmp(phy_type, "utmi", 4)) {
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530106#if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
Nikhil Badola15231f62014-05-08 17:05:26 +0530107 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
108 PHY_CLK_SEL_UTMI);
109 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
110 UTMI_PHY_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530111 udelay(1000); /* delay required for PHY Clk to appear */
112#endif
Lucas Stach676ae062012-09-26 00:14:35 +0200113 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI);
Nikhil Badola15231f62014-05-08 17:05:26 +0530114 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
115 USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530116 } else {
Nikhil Badola15231f62014-05-08 17:05:26 +0530117 clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK,
118 PHY_CLK_SEL_ULPI);
119 clrsetbits_be32(&ehci->control, UTMI_PHY_EN |
120 CONTROL_REGISTER_W1C_MASK, USB_EN);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530121 udelay(1000); /* delay required for PHY Clk to appear */
Shengzhou Liu047cea32012-10-22 13:18:24 +0800122 if (!usb_phy_clk_valid(ehci))
123 return -EINVAL;
Lucas Stach676ae062012-09-26 00:14:35 +0200124 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI);
Ramneek Mehresh1b719e62011-03-23 15:20:43 +0530125 }
Michael Trimarchi6b924872008-11-28 13:22:09 +0100126
Vivek Mahajan08066152009-06-19 17:56:00 +0530127 out_be32(&ehci->prictrl, 0x0000000c);
128 out_be32(&ehci->age_cnt_limit, 0x00000040);
129 out_be32(&ehci->sictrl, 0x00000001);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100130
Vivek Mahajan08066152009-06-19 17:56:00 +0530131 in_le32(&ehci->usbmode);
Michael Trimarchi6b924872008-11-28 13:22:09 +0100132
Nikhil Badola896720c2014-04-07 08:46:14 +0530133 if (SVR_SOC_VER(get_svr()) == SVR_T4240 &&
134 IS_SVR_REV(get_svr(), 2, 0))
135 set_txfifothresh(ehci, TXFIFOTHRESH);
136
Michael Trimarchi6b924872008-11-28 13:22:09 +0100137 return 0;
138}
139
140/*
141 * Destroy the appropriate control structures corresponding
142 * the the EHCI host controller.
143 */
Lucas Stach676ae062012-09-26 00:14:35 +0200144int ehci_hcd_stop(int index)
Michael Trimarchi6b924872008-11-28 13:22:09 +0100145{
146 return 0;
147}
Nikhil Badola896720c2014-04-07 08:46:14 +0530148
149/*
150 * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register
151 * to counter DDR latencies in writing data into Tx buffer.
152 * This prevents Tx buffer from getting underrun
153 */
154static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh)
155{
156 u32 cmd;
157 cmd = ehci_readl(&ehci->txfilltuning);
158 cmd &= ~TXFIFO_THRESH_MASK;
159 cmd |= TXFIFO_THRESH(txfifo_thresh);
160 ehci_writel(&ehci->txfilltuning, cmd);
161}