2 * SAMSUNG EXYNOS USB HOST EHCI Controller
4 * Copyright (C) 2012 Samsung Electronics Co.Ltd
5 * Vivek Gautam <gautam.vivek@samsung.com>
7 * SPDX-License-Identifier: GPL-2.0+
15 #include <asm/arch/cpu.h>
16 #include <asm/arch/ehci.h>
17 #include <asm/arch/system.h>
18 #include <asm/arch/power.h>
20 #include <asm-generic/errno.h>
21 #include <linux/compat.h>
24 /* Declare global data pointer */
25 DECLARE_GLOBAL_DATA_PTR;
28 * Contains pointers to register base addresses
29 * for the usb controller.
32 struct exynos_usb_phy *usb;
33 struct ehci_hccr *hcd;
34 struct gpio_desc vbus_gpio;
37 static struct exynos_ehci exynos;
39 #ifdef CONFIG_OF_CONTROL
40 static int exynos_usb_parse_dt(const void *blob, struct exynos_ehci *exynos)
46 node = fdtdec_next_compatible(blob, 0, COMPAT_SAMSUNG_EXYNOS_EHCI);
48 debug("EHCI: Can't get device node for ehci\n");
53 * Get the base address for EHCI controller from the device node
55 addr = fdtdec_get_addr(blob, node, "reg");
56 if (addr == FDT_ADDR_T_NONE) {
57 debug("Can't get the EHCI register address\n");
61 exynos->hcd = (struct ehci_hccr *)addr;
64 gpio_request_by_name_nodev(blob, node, "samsung,vbus-gpio", 0,
65 &exynos->vbus_gpio, GPIOD_IS_OUT);
68 node = fdtdec_next_compatible_subnode(blob, node,
69 COMPAT_SAMSUNG_EXYNOS_USB_PHY, &depth);
71 debug("EHCI: Can't get device node for usb-phy controller\n");
76 * Get the base address for usbphy from the device node
78 exynos->usb = (struct exynos_usb_phy *)fdtdec_get_addr(blob, node,
80 if (exynos->usb == NULL) {
81 debug("Can't get the usbphy register address\n");
89 static void exynos5_setup_usb_phy(struct exynos_usb_phy *usb)
93 clrbits_le32(&usb->usbphyctrl0,
94 HOST_CTRL0_FSEL_MASK |
95 HOST_CTRL0_COMMONON_N |
96 /* HOST Phy setting */
98 HOST_CTRL0_PHYSWRSTALL |
100 HOST_CTRL0_FORCESUSPEND |
101 HOST_CTRL0_FORCESLEEP);
103 setbits_le32(&usb->usbphyctrl0,
104 /* Setting up the ref freq */
106 /* HOST Phy setting */
107 HOST_CTRL0_LINKSWRST |
108 HOST_CTRL0_UTMISWRST);
110 clrbits_le32(&usb->usbphyctrl0,
111 HOST_CTRL0_LINKSWRST |
112 HOST_CTRL0_UTMISWRST);
114 /* HSIC Phy Setting */
115 hsic_ctrl = (HSIC_CTRL_FORCESUSPEND |
116 HSIC_CTRL_FORCESLEEP |
119 clrbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
120 clrbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
122 hsic_ctrl = (((HSIC_CTRL_REFCLKDIV_12 & HSIC_CTRL_REFCLKDIV_MASK)
123 << HSIC_CTRL_REFCLKDIV_SHIFT)
124 | ((HSIC_CTRL_REFCLKSEL & HSIC_CTRL_REFCLKSEL_MASK)
125 << HSIC_CTRL_REFCLKSEL_SHIFT)
126 | HSIC_CTRL_UTMISWRST);
128 setbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
129 setbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
133 clrbits_le32(&usb->hsicphyctrl1, HSIC_CTRL_PHYSWRST |
134 HSIC_CTRL_UTMISWRST);
136 clrbits_le32(&usb->hsicphyctrl2, HSIC_CTRL_PHYSWRST |
137 HSIC_CTRL_UTMISWRST);
141 /* EHCI Ctrl setting */
142 setbits_le32(&usb->ehcictrl,
143 EHCICTRL_ENAINCRXALIGN |
149 static void exynos4412_setup_usb_phy(struct exynos4412_usb_phy *usb)
151 writel(CLK_24MHZ, &usb->usbphyclk);
153 clrbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 |
154 PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 |
155 PHYPWR_NORMAL_MASK_PHY0));
157 setbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST));
159 clrbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST));
162 static void setup_usb_phy(struct exynos_usb_phy *usb)
164 set_usbhost_mode(USB20_PHY_CFG_HOST_LINK_EN);
166 set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_EN);
168 if (cpu_is_exynos5())
169 exynos5_setup_usb_phy(usb);
170 else if (cpu_is_exynos4())
171 if (proid_is_exynos4412())
172 exynos4412_setup_usb_phy((struct exynos4412_usb_phy *)
176 static void exynos5_reset_usb_phy(struct exynos_usb_phy *usb)
181 setbits_le32(&usb->usbphyctrl0,
182 HOST_CTRL0_PHYSWRST |
183 HOST_CTRL0_PHYSWRSTALL |
185 HOST_CTRL0_FORCESUSPEND |
186 HOST_CTRL0_FORCESLEEP);
189 hsic_ctrl = (HSIC_CTRL_FORCESUSPEND |
190 HSIC_CTRL_FORCESLEEP |
194 setbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
195 setbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
198 static void exynos4412_reset_usb_phy(struct exynos4412_usb_phy *usb)
200 setbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 |
201 PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 |
202 PHYPWR_NORMAL_MASK_PHY0));
205 /* Reset the EHCI host controller. */
206 static void reset_usb_phy(struct exynos_usb_phy *usb)
208 if (cpu_is_exynos5())
209 exynos5_reset_usb_phy(usb);
210 else if (cpu_is_exynos4())
211 if (proid_is_exynos4412())
212 exynos4412_reset_usb_phy((struct exynos4412_usb_phy *)
215 set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_DISABLE);
219 * EHCI-initialization
220 * Create the appropriate control structures to manage
221 * a new EHCI host controller.
223 int ehci_hcd_init(int index, enum usb_init_type init,
224 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
226 struct exynos_ehci *ctx = &exynos;
228 #ifdef CONFIG_OF_CONTROL
229 if (exynos_usb_parse_dt(gd->fdt_blob, ctx)) {
230 debug("Unable to parse device tree for ehci-exynos\n");
234 ctx->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
235 ctx->hcd = (struct ehci_hccr *)samsung_get_base_usb_ehci();
238 #ifdef CONFIG_OF_CONTROL
239 /* setup the Vbus gpio here */
240 if (dm_gpio_is_valid(&ctx->vbus_gpio))
241 dm_gpio_set_value(&ctx->vbus_gpio, 1);
244 setup_usb_phy(ctx->usb);
246 board_usb_init(index, init);
249 *hcor = (struct ehci_hcor *)((uint32_t) *hccr
250 + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
252 debug("Exynos5-ehci: init hccr %x and hcor %x hc_length %d\n",
253 (uint32_t)*hccr, (uint32_t)*hcor,
254 (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
260 * Destroy the appropriate control structures corresponding
261 * the EHCI host controller.
263 int ehci_hcd_stop(int index)
265 struct exynos_ehci *ctx = &exynos;
267 reset_usb_phy(ctx->usb);