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> |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 15 | #include <usb/ehci-fsl.h> |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 16 | #include <hwconfig.h> |
Nikhil Badola | 1185691 | 2014-02-26 17:43:15 +0530 | [diff] [blame] | 17 | #include <asm/fsl_errata.h> |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 18 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 19 | #include "ehci.h" |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 20 | |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame^] | 21 | static void set_txfifothresh(struct usb_ehci *, u32); |
| 22 | |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 23 | /* Check USB PHY clock valid */ |
| 24 | static 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 Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 35 | /* |
| 36 | * Create the appropriate control structures to manage |
| 37 | * a new EHCI host controller. |
| 38 | * |
| 39 | * Excerpts from linux ehci fsl driver. |
| 40 | */ |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 41 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 42 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 43 | { |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 44 | struct usb_ehci *ehci = NULL; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 45 | const char *phy_type = NULL; |
| 46 | size_t len; |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 47 | char current_usb_controller[5]; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 48 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 49 | char usb_phy[5]; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 50 | |
| 51 | usb_phy[0] = '\0'; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 52 | #endif |
Nikhil Badola | 1185691 | 2014-02-26 17:43:15 +0530 | [diff] [blame] | 53 | 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 Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 62 | memset(current_usb_controller, '\0', 5); |
| 63 | snprintf(current_usb_controller, 4, "usb%d", index+1); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 64 | |
ramneek mehresh | 77354e9 | 2013-09-12 16:35:49 +0530 | [diff] [blame] | 65 | 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 Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 77 | *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 Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 80 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 81 | /* Set to Host mode */ |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 82 | setbits_le32(&ehci->usbmode, CM_HOST); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 83 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 84 | out_be32(&ehci->snoop1, SNOOP_SIZE_2GB); |
| 85 | out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 86 | |
| 87 | /* Init phy */ |
Nikhil Badola | 0ecb15c | 2013-12-19 11:08:46 +0530 | [diff] [blame] | 88 | if (hwconfig_sub(current_usb_controller, "phy_type")) |
| 89 | phy_type = hwconfig_subarg(current_usb_controller, |
| 90 | "phy_type", &len); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 91 | else |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 92 | 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 Badola | 91d7746 | 2014-02-17 16:58:36 +0530 | [diff] [blame] | 105 | if (!strncmp(phy_type, "utmi", 4)) { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 106 | #if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY) |
| 107 | setbits_be32(&ehci->control, PHY_CLK_SEL_UTMI); |
| 108 | setbits_be32(&ehci->control, UTMI_PHY_EN); |
| 109 | udelay(1000); /* delay required for PHY Clk to appear */ |
| 110 | #endif |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 111 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI); |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 112 | setbits_be32(&ehci->control, USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 113 | } else { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 114 | setbits_be32(&ehci->control, PHY_CLK_SEL_ULPI); |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 115 | clrsetbits_be32(&ehci->control, UTMI_PHY_EN, USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 116 | udelay(1000); /* delay required for PHY Clk to appear */ |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 117 | if (!usb_phy_clk_valid(ehci)) |
| 118 | return -EINVAL; |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 119 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 120 | } |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 121 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 122 | out_be32(&ehci->prictrl, 0x0000000c); |
| 123 | out_be32(&ehci->age_cnt_limit, 0x00000040); |
| 124 | out_be32(&ehci->sictrl, 0x00000001); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 125 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 126 | in_le32(&ehci->usbmode); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 127 | |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame^] | 128 | if (SVR_SOC_VER(get_svr()) == SVR_T4240 && |
| 129 | IS_SVR_REV(get_svr(), 2, 0)) |
| 130 | set_txfifothresh(ehci, TXFIFOTHRESH); |
| 131 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | /* |
| 136 | * Destroy the appropriate control structures corresponding |
| 137 | * the the EHCI host controller. |
| 138 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 139 | int ehci_hcd_stop(int index) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 140 | { |
| 141 | return 0; |
| 142 | } |
Nikhil Badola | 896720c | 2014-04-07 08:46:14 +0530 | [diff] [blame^] | 143 | |
| 144 | /* |
| 145 | * Setting the value of TXFIFO_THRESH field in TXFILLTUNING register |
| 146 | * to counter DDR latencies in writing data into Tx buffer. |
| 147 | * This prevents Tx buffer from getting underrun |
| 148 | */ |
| 149 | static void set_txfifothresh(struct usb_ehci *ehci, u32 txfifo_thresh) |
| 150 | { |
| 151 | u32 cmd; |
| 152 | cmd = ehci_readl(&ehci->txfilltuning); |
| 153 | cmd &= ~TXFIFO_THRESH_MASK; |
| 154 | cmd |= TXFIFO_THRESH(txfifo_thresh); |
| 155 | ehci_writel(&ehci->txfilltuning, cmd); |
| 156 | } |