blob: 66b4de0b2d05d7a33ca6a11acabeb8fdf1d2537a [file] [log] [blame]
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +05301/*
Rajeshwari Shinde7590d3c2012-05-21 16:38:03 +05302 * SAMSUNG EXYNOS USB HOST EHCI Controller
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +05303 *
4 * Copyright (C) 2012 Samsung Electronics Co.Ltd
5 * Vivek Gautam <gautam.vivek@samsung.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +05308 */
9
10#include <common.h>
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000011#include <fdtdec.h>
12#include <libfdt.h>
13#include <malloc.h>
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053014#include <usb.h>
15#include <asm/arch/cpu.h>
Rajeshwari Shinde7590d3c2012-05-21 16:38:03 +053016#include <asm/arch/ehci.h>
Rajeshwari Shinde71045da2012-05-14 05:52:02 +000017#include <asm/arch/system.h>
Rajeshwari Shindec48ac112012-05-14 05:52:03 +000018#include <asm/arch/power.h>
Julius Werner4a271cb2013-09-14 14:02:52 +053019#include <asm/gpio.h>
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000020#include <asm-generic/errno.h>
21#include <linux/compat.h>
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053022#include "ehci.h"
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053023
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000024/* Declare global data pointer */
25DECLARE_GLOBAL_DATA_PTR;
26
27/**
28 * Contains pointers to register base addresses
29 * for the usb controller.
30 */
31struct exynos_ehci {
32 struct exynos_usb_phy *usb;
Vivek Gautam24a47752013-03-06 14:18:32 +053033 struct ehci_hccr *hcd;
Julius Werner4a271cb2013-09-14 14:02:52 +053034 struct fdt_gpio_state vbus_gpio;
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000035};
36
Vivek Gautam24a47752013-03-06 14:18:32 +053037static struct exynos_ehci exynos;
38
Vivek Gautamc74b0112013-03-06 14:18:33 +053039#ifdef CONFIG_OF_CONTROL
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000040static int exynos_usb_parse_dt(const void *blob, struct exynos_ehci *exynos)
41{
Vivek Gautam24a47752013-03-06 14:18:32 +053042 fdt_addr_t addr;
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000043 unsigned int node;
44 int depth;
45
46 node = fdtdec_next_compatible(blob, 0, COMPAT_SAMSUNG_EXYNOS_EHCI);
47 if (node <= 0) {
48 debug("EHCI: Can't get device node for ehci\n");
49 return -ENODEV;
50 }
51
52 /*
53 * Get the base address for EHCI controller from the device node
54 */
Vivek Gautam24a47752013-03-06 14:18:32 +053055 addr = fdtdec_get_addr(blob, node, "reg");
56 if (addr == FDT_ADDR_T_NONE) {
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000057 debug("Can't get the EHCI register address\n");
58 return -ENXIO;
59 }
60
Vivek Gautam24a47752013-03-06 14:18:32 +053061 exynos->hcd = (struct ehci_hccr *)addr;
62
Julius Werner4a271cb2013-09-14 14:02:52 +053063 /* Vbus gpio */
64 fdtdec_decode_gpio(blob, node, "samsung,vbus-gpio", &exynos->vbus_gpio);
65
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000066 depth = 0;
67 node = fdtdec_next_compatible_subnode(blob, node,
68 COMPAT_SAMSUNG_EXYNOS_USB_PHY, &depth);
69 if (node <= 0) {
70 debug("EHCI: Can't get device node for usb-phy controller\n");
71 return -ENODEV;
72 }
73
74 /*
75 * Get the base address for usbphy from the device node
76 */
77 exynos->usb = (struct exynos_usb_phy *)fdtdec_get_addr(blob, node,
78 "reg");
79 if (exynos->usb == NULL) {
80 debug("Can't get the usbphy register address\n");
81 return -ENXIO;
82 }
83
84 return 0;
85}
Vivek Gautamc74b0112013-03-06 14:18:33 +053086#endif
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +000087
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053088/* Setup the EHCI host controller. */
Rajeshwari Shinde7590d3c2012-05-21 16:38:03 +053089static void setup_usb_phy(struct exynos_usb_phy *usb)
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053090{
Rajeshwari Shinde71045da2012-05-14 05:52:02 +000091 set_usbhost_mode(USB20_PHY_CFG_HOST_LINK_EN);
92
Rajeshwari Shindec48ac112012-05-14 05:52:03 +000093 set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_EN);
94
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +053095 clrbits_le32(&usb->usbphyctrl0,
96 HOST_CTRL0_FSEL_MASK |
97 HOST_CTRL0_COMMONON_N |
98 /* HOST Phy setting */
99 HOST_CTRL0_PHYSWRST |
100 HOST_CTRL0_PHYSWRSTALL |
101 HOST_CTRL0_SIDDQ |
102 HOST_CTRL0_FORCESUSPEND |
103 HOST_CTRL0_FORCESLEEP);
104
105 setbits_le32(&usb->usbphyctrl0,
106 /* Setting up the ref freq */
107 (CLK_24MHZ << 16) |
108 /* HOST Phy setting */
109 HOST_CTRL0_LINKSWRST |
110 HOST_CTRL0_UTMISWRST);
111 udelay(10);
112 clrbits_le32(&usb->usbphyctrl0,
113 HOST_CTRL0_LINKSWRST |
114 HOST_CTRL0_UTMISWRST);
115 udelay(20);
116
117 /* EHCI Ctrl setting */
118 setbits_le32(&usb->ehcictrl,
119 EHCICTRL_ENAINCRXALIGN |
120 EHCICTRL_ENAINCR4 |
121 EHCICTRL_ENAINCR8 |
122 EHCICTRL_ENAINCR16);
123}
124
125/* Reset the EHCI host controller. */
Rajeshwari Shinde7590d3c2012-05-21 16:38:03 +0530126static void reset_usb_phy(struct exynos_usb_phy *usb)
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530127{
128 /* HOST_PHY reset */
129 setbits_le32(&usb->usbphyctrl0,
130 HOST_CTRL0_PHYSWRST |
131 HOST_CTRL0_PHYSWRSTALL |
132 HOST_CTRL0_SIDDQ |
133 HOST_CTRL0_FORCESUSPEND |
134 HOST_CTRL0_FORCESLEEP);
Rajeshwari Shindec48ac112012-05-14 05:52:03 +0000135
136 set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_DISABLE);
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530137}
138
139/*
140 * EHCI-initialization
141 * Create the appropriate control structures to manage
142 * a new EHCI host controller.
143 */
Troy Kisky127efc42013-10-10 15:27:57 -0700144int ehci_hcd_init(int index, enum usb_init_type init,
145 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530146{
Vivek Gautam24a47752013-03-06 14:18:32 +0530147 struct exynos_ehci *ctx = &exynos;
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530148
Vivek Gautamc74b0112013-03-06 14:18:33 +0530149#ifdef CONFIG_OF_CONTROL
Vivek Gautam24a47752013-03-06 14:18:32 +0530150 if (exynos_usb_parse_dt(gd->fdt_blob, ctx)) {
151 debug("Unable to parse device tree for ehci-exynos\n");
152 return -ENODEV;
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +0000153 }
Vivek Gautamc74b0112013-03-06 14:18:33 +0530154#else
155 ctx->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
156 ctx->hcd = (struct ehci_hccr *)samsung_get_base_usb_ehci();
157#endif
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530158
Julius Werner4a271cb2013-09-14 14:02:52 +0530159#ifdef CONFIG_OF_CONTROL
160 /* setup the Vbus gpio here */
161 if (!fdtdec_setup_gpio(&ctx->vbus_gpio))
162 gpio_direction_output(ctx->vbus_gpio.gpio, 1);
163#endif
164
Vivek Gautam24a47752013-03-06 14:18:32 +0530165 setup_usb_phy(ctx->usb);
Rajeshwari Shindee18bf1f2013-01-07 23:35:03 +0000166
Vivek Gautam24a47752013-03-06 14:18:32 +0530167 *hccr = ctx->hcd;
Lucas Stach676ae062012-09-26 00:14:35 +0200168 *hcor = (struct ehci_hcor *)((uint32_t) *hccr
169 + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530170
171 debug("Exynos5-ehci: init hccr %x and hcor %x hc_length %d\n",
Lucas Stach676ae062012-09-26 00:14:35 +0200172 (uint32_t)*hccr, (uint32_t)*hcor,
173 (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530174
175 return 0;
176}
177
178/*
179 * Destroy the appropriate control structures corresponding
180 * the EHCI host controller.
181 */
Lucas Stach676ae062012-09-26 00:14:35 +0200182int ehci_hcd_stop(int index)
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530183{
Vivek Gautam24a47752013-03-06 14:18:32 +0530184 struct exynos_ehci *ctx = &exynos;
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530185
Vivek Gautam24a47752013-03-06 14:18:32 +0530186 reset_usb_phy(ctx->usb);
Rajeshwari Shinde5f0ffea2012-05-02 19:18:51 +0530187
188 return 0;
189}