Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 Ilya Yanok, Emcraft Systems |
| 3 | * (C) Copyright 2004-2008 |
| 4 | * Texas Instruments, <www.ti.com> |
| 5 | * |
| 6 | * Derived from Beagle Board code by |
| 7 | * Sunil Kumar <sunilsaini05@gmail.com> |
| 8 | * Shashi Ranjan <shashiranjanmca05@gmail.com> |
| 9 | * |
| 10 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 11 | * SPDX-License-Identifier: GPL-2.0+ |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 12 | */ |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 13 | |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 14 | #include <common.h> |
| 15 | #include <usb.h> |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 16 | #include <usb/ulpi.h> |
| 17 | #include <errno.h> |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <asm/gpio.h> |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 20 | #include <asm/arch/ehci.h> |
| 21 | #include <asm/ehci-omap.h> |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 22 | |
| 23 | #include "ehci.h" |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 24 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 25 | static struct omap_uhh *const uhh = (struct omap_uhh *)OMAP_UHH_BASE; |
| 26 | static struct omap_usbtll *const usbtll = (struct omap_usbtll *)OMAP_USBTLL_BASE; |
| 27 | static struct omap_ehci *const ehci = (struct omap_ehci *)OMAP_EHCI_BASE; |
| 28 | |
| 29 | static int omap_uhh_reset(void) |
| 30 | { |
| 31 | unsigned long init = get_timer(0); |
| 32 | |
| 33 | /* perform UHH soft reset, and wait until reset is complete */ |
| 34 | writel(OMAP_UHH_SYSCONFIG_SOFTRESET, &uhh->sysc); |
| 35 | |
| 36 | /* Wait for UHH reset to complete */ |
| 37 | while (!(readl(&uhh->syss) & OMAP_UHH_SYSSTATUS_EHCI_RESETDONE)) |
| 38 | if (get_timer(init) > CONFIG_SYS_HZ) { |
| 39 | debug("OMAP UHH error: timeout resetting ehci\n"); |
| 40 | return -EL3RST; |
| 41 | } |
| 42 | |
| 43 | return 0; |
| 44 | } |
| 45 | |
| 46 | static int omap_ehci_tll_reset(void) |
| 47 | { |
| 48 | unsigned long init = get_timer(0); |
| 49 | |
| 50 | /* perform TLL soft reset, and wait until reset is complete */ |
| 51 | writel(OMAP_USBTLL_SYSCONFIG_SOFTRESET, &usbtll->sysc); |
| 52 | |
| 53 | /* Wait for TLL reset to complete */ |
| 54 | while (!(readl(&usbtll->syss) & OMAP_USBTLL_SYSSTATUS_RESETDONE)) |
| 55 | if (get_timer(init) > CONFIG_SYS_HZ) { |
| 56 | debug("OMAP EHCI error: timeout resetting TLL\n"); |
| 57 | return -EL3RST; |
| 58 | } |
| 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | static void omap_usbhs_hsic_init(int port) |
| 64 | { |
| 65 | unsigned int reg; |
| 66 | |
| 67 | /* Enable channels now */ |
| 68 | reg = readl(&usbtll->channel_conf + port); |
| 69 | |
| 70 | setbits_le32(®, (OMAP_TLL_CHANNEL_CONF_CHANMODE_TRANSPARENT_UTMI |
| 71 | | OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF |
| 72 | | OMAP_TLL_CHANNEL_CONF_DRVVBUS |
| 73 | | OMAP_TLL_CHANNEL_CONF_CHRGVBUS |
| 74 | | OMAP_TLL_CHANNEL_CONF_CHANEN)); |
| 75 | |
| 76 | writel(reg, &usbtll->channel_conf + port); |
| 77 | } |
| 78 | |
| 79 | static void omap_ehci_soft_phy_reset(int port) |
| 80 | { |
| 81 | struct ulpi_viewport ulpi_vp; |
| 82 | |
| 83 | ulpi_vp.viewport_addr = (u32)&ehci->insreg05_utmi_ulpi; |
| 84 | ulpi_vp.port_num = port; |
| 85 | |
| 86 | ulpi_reset(&ulpi_vp); |
| 87 | } |
| 88 | |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 89 | inline int __board_usb_init(void) |
| 90 | { |
| 91 | return 0; |
| 92 | } |
| 93 | int board_usb_init(void) __attribute__((weak, alias("__board_usb_init"))); |
| 94 | |
| 95 | #if defined(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO) || \ |
| 96 | defined(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO) |
| 97 | /* controls PHY(s) reset signal(s) */ |
| 98 | static inline void omap_ehci_phy_reset(int on, int delay) |
| 99 | { |
| 100 | /* |
| 101 | * Refer ISSUE1: |
| 102 | * Hold the PHY in RESET for enough time till |
| 103 | * PHY is settled and ready |
| 104 | */ |
| 105 | if (delay && !on) |
| 106 | udelay(delay); |
| 107 | #ifdef CONFIG_OMAP_EHCI_PHY1_RESET_GPIO |
| 108 | gpio_request(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, "USB PHY1 reset"); |
| 109 | gpio_direction_output(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, !on); |
| 110 | #endif |
| 111 | #ifdef CONFIG_OMAP_EHCI_PHY2_RESET_GPIO |
| 112 | gpio_request(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO, "USB PHY2 reset"); |
| 113 | gpio_direction_output(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO, !on); |
| 114 | #endif |
| 115 | |
| 116 | /* Hold the PHY in RESET for enough time till DIR is high */ |
| 117 | /* Refer: ISSUE1 */ |
| 118 | if (delay && on) |
| 119 | udelay(delay); |
| 120 | } |
| 121 | #else |
| 122 | #define omap_ehci_phy_reset(on, delay) do {} while (0) |
| 123 | #endif |
| 124 | |
| 125 | /* Reset is needed otherwise the kernel-driver will throw an error. */ |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 126 | int omap_ehci_hcd_stop(void) |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 127 | { |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 128 | debug("Resetting OMAP EHCI\n"); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 129 | omap_ehci_phy_reset(1, 0); |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 130 | |
| 131 | if (omap_uhh_reset() < 0) |
| 132 | return -1; |
| 133 | |
| 134 | if (omap_ehci_tll_reset() < 0) |
| 135 | return -1; |
| 136 | |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | /* |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 141 | * Initialize the OMAP EHCI controller and PHY. |
| 142 | * Based on "drivers/usb/host/ehci-omap.c" from Linux 3.1 |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 143 | * See there for additional Copyrights. |
| 144 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 145 | int omap_ehci_hcd_init(struct omap_usbhs_board_data *usbhs_pdata, |
| 146 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 147 | { |
| 148 | int ret; |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 149 | unsigned int i, reg = 0, rev = 0; |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 150 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 151 | debug("Initializing OMAP EHCI\n"); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 152 | |
| 153 | ret = board_usb_init(); |
| 154 | if (ret < 0) |
| 155 | return ret; |
| 156 | |
| 157 | /* Put the PHY in RESET */ |
| 158 | omap_ehci_phy_reset(1, 10); |
| 159 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 160 | ret = omap_uhh_reset(); |
| 161 | if (ret < 0) |
| 162 | return ret; |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 163 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 164 | ret = omap_ehci_tll_reset(); |
| 165 | if (ret) |
| 166 | return ret; |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 167 | |
| 168 | writel(OMAP_USBTLL_SYSCONFIG_ENAWAKEUP | |
| 169 | OMAP_USBTLL_SYSCONFIG_SIDLEMODE | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 170 | OMAP_USBTLL_SYSCONFIG_CACTIVITY, &usbtll->sysc); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 171 | |
| 172 | /* Put UHH in NoIdle/NoStandby mode */ |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 173 | writel(OMAP_UHH_SYSCONFIG_VAL, &uhh->sysc); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 174 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 175 | /* setup ULPI bypass and burst configurations */ |
| 176 | clrsetbits_le32(®, OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN, |
| 177 | (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN | |
| 178 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN | |
| 179 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN)); |
| 180 | |
| 181 | rev = readl(&uhh->rev); |
| 182 | if (rev == OMAP_USBHS_REV1) { |
| 183 | if (is_ehci_phy_mode(usbhs_pdata->port_mode[0])) |
| 184 | clrbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS); |
| 185 | else |
| 186 | setbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS); |
| 187 | |
| 188 | if (is_ehci_phy_mode(usbhs_pdata->port_mode[1])) |
| 189 | clrbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS); |
| 190 | else |
Jeroen Hofstee | 90579fd | 2012-04-19 11:25:18 +0000 | [diff] [blame] | 191 | setbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS); |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 192 | |
| 193 | if (is_ehci_phy_mode(usbhs_pdata->port_mode[2])) |
| 194 | clrbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS); |
| 195 | else |
Jeroen Hofstee | 90579fd | 2012-04-19 11:25:18 +0000 | [diff] [blame] | 196 | setbits_le32(®, OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS); |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 197 | } else if (rev == OMAP_USBHS_REV2) { |
| 198 | clrsetbits_le32(®, (OMAP_P1_MODE_CLEAR | OMAP_P2_MODE_CLEAR), |
| 199 | OMAP4_UHH_HOSTCONFIG_APP_START_CLK); |
| 200 | |
| 201 | /* Clear port mode fields for PHY mode*/ |
| 202 | |
| 203 | if (is_ehci_hsic_mode(usbhs_pdata->port_mode[0])) |
| 204 | setbits_le32(®, OMAP_P1_MODE_HSIC); |
| 205 | |
| 206 | if (is_ehci_hsic_mode(usbhs_pdata->port_mode[1])) |
| 207 | setbits_le32(®, OMAP_P2_MODE_HSIC); |
| 208 | |
| 209 | if (is_ehci_hsic_mode(usbhs_pdata->port_mode[2])) |
| 210 | setbits_le32(®, OMAP_P3_MODE_HSIC); |
| 211 | } |
| 212 | |
| 213 | debug("OMAP UHH_REVISION 0x%x\n", rev); |
| 214 | writel(reg, &uhh->hostconfig); |
| 215 | |
| 216 | for (i = 0; i < OMAP_HS_USB_PORTS; i++) |
| 217 | if (is_ehci_hsic_mode(usbhs_pdata->port_mode[i])) |
| 218 | omap_usbhs_hsic_init(i); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 219 | |
| 220 | omap_ehci_phy_reset(0, 10); |
| 221 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 222 | /* |
| 223 | * An undocumented "feature" in the OMAP3 EHCI controller, |
| 224 | * causes suspended ports to be taken out of suspend when |
| 225 | * the USBCMD.Run/Stop bit is cleared (for example when |
| 226 | * we do ehci_bus_suspend). |
| 227 | * This breaks suspend-resume if the root-hub is allowed |
| 228 | * to suspend. Writing 1 to this undocumented register bit |
| 229 | * disables this feature and restores normal behavior. |
| 230 | */ |
| 231 | writel(EHCI_INSNREG04_DISABLE_UNSUSPEND, &ehci->insreg04); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 232 | |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 233 | for (i = 0; i < OMAP_HS_USB_PORTS; i++) |
| 234 | if (is_ehci_phy_mode(usbhs_pdata->port_mode[i])) |
| 235 | omap_ehci_soft_phy_reset(i); |
| 236 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 237 | *hccr = (struct ehci_hccr *)(OMAP_EHCI_BASE); |
| 238 | *hcor = (struct ehci_hcor *)(OMAP_EHCI_BASE + 0x10); |
Govindraj.R | 43b6239 | 2012-02-06 03:55:34 +0000 | [diff] [blame] | 239 | |
| 240 | debug("OMAP EHCI init done\n"); |
Ilya Yanok | 29321c0 | 2012-02-06 03:55:33 +0000 | [diff] [blame] | 241 | return 0; |
| 242 | } |