Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 1 | /* |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 2 | * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc. |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 3 | * |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 4 | * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB |
| 5 | * |
| 6 | * Author: Tor Krill tor@excito.com |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <pci.h> |
| 13 | #include <usb.h> |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 14 | #include <asm/io.h> |
Mateusz Kulikowski | e162c6b | 2016-03-31 23:12:23 +0200 | [diff] [blame] | 15 | #include <usb/ehci-ci.h> |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 16 | #include <hwconfig.h> |
Nikhil Badola | c26c80a | 2014-09-30 11:22:43 +0530 | [diff] [blame] | 17 | #include <fsl_usb.h> |
Nikhil Badola | a1c04e2 | 2014-10-20 16:50:49 +0530 | [diff] [blame] | 18 | #include <fdt_support.h> |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 19 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 20 | #include "ehci.h" |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 21 | |
Nikhil Badola | a1c04e2 | 2014-10-20 16:50:49 +0530 | [diff] [blame] | 22 | #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT |
| 23 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 24 | #endif |
| 25 | |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 26 | static void set_txfifothresh(struct usb_ehci *, u32); |
| 27 | |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 28 | /* Check USB PHY clock valid */ |
| 29 | static 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 Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 40 | /* |
| 41 | * Create the appropriate control structures to manage |
| 42 | * a new EHCI host controller. |
| 43 | * |
| 44 | * Excerpts from linux ehci fsl driver. |
| 45 | */ |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 46 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 47 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 48 | { |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 49 | struct usb_ehci *ehci = NULL; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 50 | const char *phy_type = NULL; |
| 51 | size_t len; |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 52 | char current_usb_controller[5]; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 53 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 54 | char usb_phy[5]; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 55 | |
| 56 | usb_phy[0] = '\0'; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 57 | #endif |
Nikhil Badola | 1185691 | 2014-02-26 17:43:15 +0530 | [diff] [blame] | 58 | 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 Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 67 | memset(current_usb_controller, '\0', 5); |
Rajesh Bhagat | 217d169 | 2016-06-18 10:47:10 +0530 | [diff] [blame^] | 68 | snprintf(current_usb_controller, sizeof(current_usb_controller), |
| 69 | "usb%d", index+1); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 70 | |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 71 | switch (index) { |
| 72 | case 0: |
| 73 | ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR; |
| 74 | break; |
| 75 | case 1: |
| 76 | ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR; |
| 77 | break; |
| 78 | default: |
| 79 | printf("ERROR: wrong controller index!!\n"); |
Nikhil Badola | 19b17d1 | 2015-06-07 12:28:04 +0530 | [diff] [blame] | 80 | return -EINVAL; |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 81 | }; |
| 82 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 83 | *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 84 | *hcor = (struct ehci_hcor *)((uint32_t) *hccr + |
| 85 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 86 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 87 | /* Set to Host mode */ |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 88 | setbits_le32(&ehci->usbmode, CM_HOST); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 89 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 90 | out_be32(&ehci->snoop1, SNOOP_SIZE_2GB); |
| 91 | out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 92 | |
| 93 | /* Init phy */ |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 94 | if (hwconfig_sub(current_usb_controller, "phy_type")) |
| 95 | phy_type = hwconfig_subarg(current_usb_controller, |
| 96 | "phy_type", &len); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 97 | else |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 98 | phy_type = getenv("usb_phy_type"); |
| 99 | |
| 100 | if (!phy_type) { |
| 101 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 102 | /* if none specified assume internal UTMI */ |
| 103 | strcpy(usb_phy, "utmi"); |
| 104 | phy_type = usb_phy; |
| 105 | #else |
| 106 | printf("WARNING: USB phy type not defined !!\n"); |
| 107 | return -1; |
| 108 | #endif |
| 109 | } |
| 110 | |
Nikhil Badola | 91d7746 | 2014-02-17 16:58:36 +0530 | [diff] [blame] | 111 | if (!strncmp(phy_type, "utmi", 4)) { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 112 | #if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY) |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 113 | clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK, |
| 114 | PHY_CLK_SEL_UTMI); |
| 115 | clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK, |
| 116 | UTMI_PHY_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 117 | udelay(1000); /* delay required for PHY Clk to appear */ |
| 118 | #endif |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 119 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI); |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 120 | clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK, |
| 121 | USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 122 | } else { |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 123 | clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK, |
| 124 | PHY_CLK_SEL_ULPI); |
| 125 | clrsetbits_be32(&ehci->control, UTMI_PHY_EN | |
| 126 | CONTROL_REGISTER_W1C_MASK, USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 127 | udelay(1000); /* delay required for PHY Clk to appear */ |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 128 | if (!usb_phy_clk_valid(ehci)) |
| 129 | return -EINVAL; |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 130 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 131 | } |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 132 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 133 | out_be32(&ehci->prictrl, 0x0000000c); |
| 134 | out_be32(&ehci->age_cnt_limit, 0x00000040); |
| 135 | out_be32(&ehci->sictrl, 0x00000001); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 136 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 137 | in_le32(&ehci->usbmode); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 138 | |
Nikhil Badola | f3dff69 | 2014-10-17 09:12:07 +0530 | [diff] [blame] | 139 | if (has_erratum_a007798()) |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 140 | set_txfifothresh(ehci, TXFIFOTHRESH); |
| 141 | |
Nikhil Badola | 0dc78ff | 2014-11-21 17:25:21 +0530 | [diff] [blame] | 142 | if (has_erratum_a004477()) { |
| 143 | /* |
| 144 | * When reset is issued while any ULPI transaction is ongoing |
| 145 | * then it may result to corruption of ULPI Function Control |
| 146 | * Register which eventually causes phy clock to enter low |
| 147 | * power mode which stops the clock. Thus delay is required |
| 148 | * before reset to let ongoing ULPI transaction complete. |
| 149 | */ |
| 150 | udelay(1); |
| 151 | } |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * Destroy the appropriate control structures corresponding |
| 157 | * the the EHCI host controller. |
| 158 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 159 | int ehci_hcd_stop(int index) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 160 | { |
| 161 | return 0; |
| 162 | } |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 163 | |
| 164 | /* |
| 165 | * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register |
| 166 | * to counter DDR latencies in writing data into Tx buffer. |
| 167 | * This prevents Tx buffer from getting underrun |
| 168 | */ |
| 169 | static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh) |
| 170 | { |
| 171 | u32 cmd; |
| 172 | cmd = ehci_readl(&ehci->txfilltuning); |
| 173 | cmd &= ~TXFIFO_THRESH_MASK; |
| 174 | cmd |= TXFIFO_THRESH(txfifo_thresh); |
| 175 | ehci_writel(&ehci->txfilltuning, cmd); |
| 176 | } |