Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 2 | /* |
Rajeshwari Shinde | dad39d4 | 2012-05-21 16:38:03 +0530 | [diff] [blame] | 3 | * SAMSUNG EXYNOS USB HOST EHCI Controller |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2012 Samsung Electronics Co.Ltd |
| 6 | * Vivek Gautam <gautam.vivek@samsung.com> |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 11 | #include <fdtdec.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 13 | #include <linux/delay.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 14 | #include <linux/libfdt.h> |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 15 | #include <malloc.h> |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 16 | #include <usb.h> |
| 17 | #include <asm/arch/cpu.h> |
Rajeshwari Shinde | dad39d4 | 2012-05-21 16:38:03 +0530 | [diff] [blame] | 18 | #include <asm/arch/ehci.h> |
Rajeshwari Shinde | 8444807 | 2012-05-14 05:52:02 +0000 | [diff] [blame] | 19 | #include <asm/arch/system.h> |
Rajeshwari Shinde | 21965ac | 2012-05-14 05:52:03 +0000 | [diff] [blame] | 20 | #include <asm/arch/power.h> |
Julius Werner | ddcb9bd | 2013-09-14 14:02:52 +0530 | [diff] [blame] | 21 | #include <asm/gpio.h> |
Masahiro Yamada | 64e4f7f | 2016-09-21 11:28:57 +0900 | [diff] [blame] | 22 | #include <linux/errno.h> |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 23 | #include <linux/compat.h> |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 24 | #include "ehci.h" |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 25 | |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 26 | /* Declare global data pointer */ |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame^] | 29 | struct exynos_ehci_plat { |
| 30 | struct usb_plat usb_plat; |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 31 | fdt_addr_t hcd_base; |
| 32 | fdt_addr_t phy_base; |
| 33 | struct gpio_desc vbus_gpio; |
| 34 | }; |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 35 | |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 36 | /** |
| 37 | * Contains pointers to register base addresses |
| 38 | * for the usb controller. |
| 39 | */ |
| 40 | struct exynos_ehci { |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 41 | struct ehci_ctrl ctrl; |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 42 | struct exynos_usb_phy *usb; |
Vivek Gautam | bab686c | 2013-03-06 14:18:32 +0530 | [diff] [blame] | 43 | struct ehci_hccr *hcd; |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 46 | static int ehci_usb_of_to_plat(struct udevice *dev) |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 47 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame^] | 48 | struct exynos_ehci_plat *plat = dev_get_plat(dev); |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 49 | const void *blob = gd->fdt_blob; |
| 50 | unsigned int node; |
| 51 | int depth; |
| 52 | |
| 53 | /* |
| 54 | * Get the base address for XHCI controller from the device node |
| 55 | */ |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 56 | plat->hcd_base = dev_read_addr(dev); |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 57 | if (plat->hcd_base == FDT_ADDR_T_NONE) { |
| 58 | debug("Can't get the XHCI register base address\n"); |
| 59 | return -ENXIO; |
| 60 | } |
| 61 | |
| 62 | depth = 0; |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 63 | node = fdtdec_next_compatible_subnode(blob, dev_of_offset(dev), |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 64 | COMPAT_SAMSUNG_EXYNOS_USB_PHY, &depth); |
| 65 | if (node <= 0) { |
| 66 | debug("XHCI: Can't get device node for usb3-phy controller\n"); |
| 67 | return -ENODEV; |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | * Get the base address for usbphy from the device node |
| 72 | */ |
| 73 | plat->phy_base = fdtdec_get_addr(blob, node, "reg"); |
| 74 | if (plat->phy_base == FDT_ADDR_T_NONE) { |
| 75 | debug("Can't get the usbphy register address\n"); |
| 76 | return -ENXIO; |
| 77 | } |
| 78 | |
| 79 | /* Vbus gpio */ |
| 80 | gpio_request_by_name(dev, "samsung,vbus-gpio", 0, |
| 81 | &plat->vbus_gpio, GPIOD_IS_OUT); |
| 82 | |
| 83 | return 0; |
| 84 | } |
Rajeshwari Shinde | 23fbde5 | 2013-01-07 23:35:03 +0000 | [diff] [blame] | 85 | |
Suriyan Ramasami | 97f4ef6 | 2014-10-29 09:22:43 -0700 | [diff] [blame] | 86 | static void exynos5_setup_usb_phy(struct exynos_usb_phy *usb) |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 87 | { |
Inderpal Singh | 2eb6561 | 2014-01-08 09:19:56 +0530 | [diff] [blame] | 88 | u32 hsic_ctrl; |
| 89 | |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 90 | clrbits_le32(&usb->usbphyctrl0, |
| 91 | HOST_CTRL0_FSEL_MASK | |
| 92 | HOST_CTRL0_COMMONON_N | |
| 93 | /* HOST Phy setting */ |
| 94 | HOST_CTRL0_PHYSWRST | |
| 95 | HOST_CTRL0_PHYSWRSTALL | |
| 96 | HOST_CTRL0_SIDDQ | |
| 97 | HOST_CTRL0_FORCESUSPEND | |
| 98 | HOST_CTRL0_FORCESLEEP); |
| 99 | |
| 100 | setbits_le32(&usb->usbphyctrl0, |
| 101 | /* Setting up the ref freq */ |
| 102 | (CLK_24MHZ << 16) | |
| 103 | /* HOST Phy setting */ |
| 104 | HOST_CTRL0_LINKSWRST | |
| 105 | HOST_CTRL0_UTMISWRST); |
| 106 | udelay(10); |
| 107 | clrbits_le32(&usb->usbphyctrl0, |
| 108 | HOST_CTRL0_LINKSWRST | |
| 109 | HOST_CTRL0_UTMISWRST); |
Inderpal Singh | 2eb6561 | 2014-01-08 09:19:56 +0530 | [diff] [blame] | 110 | |
| 111 | /* HSIC Phy Setting */ |
| 112 | hsic_ctrl = (HSIC_CTRL_FORCESUSPEND | |
| 113 | HSIC_CTRL_FORCESLEEP | |
| 114 | HSIC_CTRL_SIDDQ); |
| 115 | |
| 116 | clrbits_le32(&usb->hsicphyctrl1, hsic_ctrl); |
| 117 | clrbits_le32(&usb->hsicphyctrl2, hsic_ctrl); |
| 118 | |
| 119 | hsic_ctrl = (((HSIC_CTRL_REFCLKDIV_12 & HSIC_CTRL_REFCLKDIV_MASK) |
| 120 | << HSIC_CTRL_REFCLKDIV_SHIFT) |
| 121 | | ((HSIC_CTRL_REFCLKSEL & HSIC_CTRL_REFCLKSEL_MASK) |
| 122 | << HSIC_CTRL_REFCLKSEL_SHIFT) |
| 123 | | HSIC_CTRL_UTMISWRST); |
| 124 | |
| 125 | setbits_le32(&usb->hsicphyctrl1, hsic_ctrl); |
| 126 | setbits_le32(&usb->hsicphyctrl2, hsic_ctrl); |
| 127 | |
| 128 | udelay(10); |
| 129 | |
| 130 | clrbits_le32(&usb->hsicphyctrl1, HSIC_CTRL_PHYSWRST | |
| 131 | HSIC_CTRL_UTMISWRST); |
| 132 | |
| 133 | clrbits_le32(&usb->hsicphyctrl2, HSIC_CTRL_PHYSWRST | |
| 134 | HSIC_CTRL_UTMISWRST); |
| 135 | |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 136 | udelay(20); |
| 137 | |
| 138 | /* EHCI Ctrl setting */ |
| 139 | setbits_le32(&usb->ehcictrl, |
| 140 | EHCICTRL_ENAINCRXALIGN | |
| 141 | EHCICTRL_ENAINCR4 | |
| 142 | EHCICTRL_ENAINCR8 | |
| 143 | EHCICTRL_ENAINCR16); |
| 144 | } |
| 145 | |
Suriyan Ramasami | 97f4ef6 | 2014-10-29 09:22:43 -0700 | [diff] [blame] | 146 | static void exynos4412_setup_usb_phy(struct exynos4412_usb_phy *usb) |
| 147 | { |
| 148 | writel(CLK_24MHZ, &usb->usbphyclk); |
| 149 | |
| 150 | clrbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 | |
| 151 | PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 | |
| 152 | PHYPWR_NORMAL_MASK_PHY0)); |
| 153 | |
| 154 | setbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST)); |
| 155 | udelay(10); |
| 156 | clrbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST)); |
| 157 | } |
| 158 | |
| 159 | static void setup_usb_phy(struct exynos_usb_phy *usb) |
| 160 | { |
| 161 | set_usbhost_mode(USB20_PHY_CFG_HOST_LINK_EN); |
| 162 | |
| 163 | set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_EN); |
| 164 | |
| 165 | if (cpu_is_exynos5()) |
| 166 | exynos5_setup_usb_phy(usb); |
| 167 | else if (cpu_is_exynos4()) |
| 168 | if (proid_is_exynos4412()) |
| 169 | exynos4412_setup_usb_phy((struct exynos4412_usb_phy *) |
| 170 | usb); |
| 171 | } |
| 172 | |
| 173 | static void exynos5_reset_usb_phy(struct exynos_usb_phy *usb) |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 174 | { |
Inderpal Singh | 2eb6561 | 2014-01-08 09:19:56 +0530 | [diff] [blame] | 175 | u32 hsic_ctrl; |
| 176 | |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 177 | /* HOST_PHY reset */ |
| 178 | setbits_le32(&usb->usbphyctrl0, |
| 179 | HOST_CTRL0_PHYSWRST | |
| 180 | HOST_CTRL0_PHYSWRSTALL | |
| 181 | HOST_CTRL0_SIDDQ | |
| 182 | HOST_CTRL0_FORCESUSPEND | |
| 183 | HOST_CTRL0_FORCESLEEP); |
Rajeshwari Shinde | 21965ac | 2012-05-14 05:52:03 +0000 | [diff] [blame] | 184 | |
Inderpal Singh | 2eb6561 | 2014-01-08 09:19:56 +0530 | [diff] [blame] | 185 | /* HSIC Phy reset */ |
| 186 | hsic_ctrl = (HSIC_CTRL_FORCESUSPEND | |
| 187 | HSIC_CTRL_FORCESLEEP | |
| 188 | HSIC_CTRL_SIDDQ | |
| 189 | HSIC_CTRL_PHYSWRST); |
| 190 | |
| 191 | setbits_le32(&usb->hsicphyctrl1, hsic_ctrl); |
| 192 | setbits_le32(&usb->hsicphyctrl2, hsic_ctrl); |
Suriyan Ramasami | 97f4ef6 | 2014-10-29 09:22:43 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static void exynos4412_reset_usb_phy(struct exynos4412_usb_phy *usb) |
| 196 | { |
| 197 | setbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 | |
| 198 | PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 | |
| 199 | PHYPWR_NORMAL_MASK_PHY0)); |
| 200 | } |
| 201 | |
| 202 | /* Reset the EHCI host controller. */ |
| 203 | static void reset_usb_phy(struct exynos_usb_phy *usb) |
| 204 | { |
| 205 | if (cpu_is_exynos5()) |
| 206 | exynos5_reset_usb_phy(usb); |
| 207 | else if (cpu_is_exynos4()) |
| 208 | if (proid_is_exynos4412()) |
| 209 | exynos4412_reset_usb_phy((struct exynos4412_usb_phy *) |
| 210 | usb); |
Inderpal Singh | 2eb6561 | 2014-01-08 09:19:56 +0530 | [diff] [blame] | 211 | |
Rajeshwari Shinde | 21965ac | 2012-05-14 05:52:03 +0000 | [diff] [blame] | 212 | set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_DISABLE); |
Rajeshwari Shinde | 9b4ae50 | 2012-05-02 19:18:51 +0530 | [diff] [blame] | 213 | } |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 214 | |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 215 | static int ehci_usb_probe(struct udevice *dev) |
| 216 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame^] | 217 | struct exynos_ehci_plat *plat = dev_get_plat(dev); |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 218 | struct exynos_ehci *ctx = dev_get_priv(dev); |
| 219 | struct ehci_hcor *hcor; |
| 220 | |
| 221 | ctx->hcd = (struct ehci_hccr *)plat->hcd_base; |
| 222 | ctx->usb = (struct exynos_usb_phy *)plat->phy_base; |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 223 | |
| 224 | /* setup the Vbus gpio here */ |
| 225 | if (dm_gpio_is_valid(&plat->vbus_gpio)) |
| 226 | dm_gpio_set_value(&plat->vbus_gpio, 1); |
| 227 | |
| 228 | setup_usb_phy(ctx->usb); |
Lukasz Majewski | a9f74bb | 2015-12-10 16:32:25 +0100 | [diff] [blame] | 229 | hcor = (struct ehci_hcor *)((uint32_t)ctx->hcd + |
| 230 | HC_LENGTH(ehci_readl(&ctx->hcd->cr_capbase))); |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 231 | |
| 232 | return ehci_register(dev, ctx->hcd, hcor, NULL, 0, USB_INIT_HOST); |
| 233 | } |
| 234 | |
| 235 | static int ehci_usb_remove(struct udevice *dev) |
| 236 | { |
| 237 | struct exynos_ehci *ctx = dev_get_priv(dev); |
| 238 | int ret; |
| 239 | |
| 240 | ret = ehci_deregister(dev); |
| 241 | if (ret) |
| 242 | return ret; |
| 243 | reset_usb_phy(ctx->usb); |
| 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | static const struct udevice_id ehci_usb_ids[] = { |
| 249 | { .compatible = "samsung,exynos-ehci" }, |
| 250 | { } |
| 251 | }; |
| 252 | |
| 253 | U_BOOT_DRIVER(usb_ehci) = { |
| 254 | .name = "ehci_exynos", |
| 255 | .id = UCLASS_USB, |
| 256 | .of_match = ehci_usb_ids, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 257 | .of_to_plat = ehci_usb_of_to_plat, |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 258 | .probe = ehci_usb_probe, |
| 259 | .remove = ehci_usb_remove, |
| 260 | .ops = &ehci_usb_ops, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 261 | .priv_auto = sizeof(struct exynos_ehci), |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame^] | 262 | .plat_auto = sizeof(struct exynos_ehci_plat), |
Simon Glass | 2b8ceec | 2015-03-25 12:22:44 -0600 | [diff] [blame] | 263 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 264 | }; |