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); |
Rajesh Bhagat | 1e61ce9 | 2016-07-01 18:51:45 +0530 | [diff] [blame^] | 27 | static int ehci_fsl_init(int index, struct usb_ehci *ehci, |
| 28 | struct ehci_hccr *hccr, struct ehci_hcor *hcor); |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 29 | |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 30 | /* Check USB PHY clock valid */ |
| 31 | static 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 Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 42 | /* |
| 43 | * Create the appropriate control structures to manage |
| 44 | * a new EHCI host controller. |
| 45 | * |
| 46 | * Excerpts from linux ehci fsl driver. |
| 47 | */ |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 48 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 49 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 50 | { |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 51 | struct usb_ehci *ehci = NULL; |
Rajesh Bhagat | 1e61ce9 | 2016-07-01 18:51:45 +0530 | [diff] [blame^] | 52 | |
| 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 | */ |
| 76 | int ehci_hcd_stop(int index) |
| 77 | { |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static int ehci_fsl_init(int index, struct usb_ehci *ehci, |
| 82 | struct ehci_hccr *hccr, struct ehci_hcor *hcor) |
| 83 | { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 84 | const char *phy_type = NULL; |
| 85 | size_t len; |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 86 | char current_usb_controller[5]; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 87 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 88 | char usb_phy[5]; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 89 | |
| 90 | usb_phy[0] = '\0'; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 91 | #endif |
Nikhil Badola | 1185691 | 2014-02-26 17:43:15 +0530 | [diff] [blame] | 92 | 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 Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 101 | memset(current_usb_controller, '\0', 5); |
Rajesh Bhagat | 217d169 | 2016-06-18 10:47:10 +0530 | [diff] [blame] | 102 | snprintf(current_usb_controller, sizeof(current_usb_controller), |
| 103 | "usb%d", index+1); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 104 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 105 | /* Set to Host mode */ |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 106 | setbits_le32(&ehci->usbmode, CM_HOST); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 107 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 108 | out_be32(&ehci->snoop1, SNOOP_SIZE_2GB); |
| 109 | out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 110 | |
| 111 | /* Init phy */ |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 112 | if (hwconfig_sub(current_usb_controller, "phy_type")) |
| 113 | phy_type = hwconfig_subarg(current_usb_controller, |
| 114 | "phy_type", &len); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 115 | else |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 116 | 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 Badola | 91d7746 | 2014-02-17 16:58:36 +0530 | [diff] [blame] | 129 | if (!strncmp(phy_type, "utmi", 4)) { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 130 | #if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY) |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 131 | 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 Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 135 | udelay(1000); /* delay required for PHY Clk to appear */ |
| 136 | #endif |
Rajesh Bhagat | 1e61ce9 | 2016-07-01 18:51:45 +0530 | [diff] [blame^] | 137 | out_le32(&(hcor)->or_portsc[0], PORT_PTS_UTMI); |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 138 | clrsetbits_be32(&ehci->control, CONTROL_REGISTER_W1C_MASK, |
| 139 | USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 140 | } else { |
Nikhil Badola | 15231f6 | 2014-05-08 17:05:26 +0530 | [diff] [blame] | 141 | 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 Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 145 | udelay(1000); /* delay required for PHY Clk to appear */ |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 146 | if (!usb_phy_clk_valid(ehci)) |
| 147 | return -EINVAL; |
Rajesh Bhagat | 1e61ce9 | 2016-07-01 18:51:45 +0530 | [diff] [blame^] | 148 | out_le32(&(hcor)->or_portsc[0], PORT_PTS_ULPI); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 149 | } |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 150 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 151 | out_be32(&ehci->prictrl, 0x0000000c); |
| 152 | out_be32(&ehci->age_cnt_limit, 0x00000040); |
| 153 | out_be32(&ehci->sictrl, 0x00000001); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 154 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 155 | in_le32(&ehci->usbmode); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 156 | |
Nikhil Badola | f3dff69 | 2014-10-17 09:12:07 +0530 | [diff] [blame] | 157 | if (has_erratum_a007798()) |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 158 | set_txfifothresh(ehci, TXFIFOTHRESH); |
| 159 | |
Nikhil Badola | 0dc78ff | 2014-11-21 17:25:21 +0530 | [diff] [blame] | 160 | 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 Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | /* |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame] | 174 | * 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 | */ |
| 178 | static 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 | } |