blob: 779588be8ab2d4e99d148d47c9a853606321269e [file] [log] [blame]
Keshava Munegowda17cdd292011-03-01 20:08:17 +05301/**
2 * omap-usb-host.c - The USBHS core driver for OMAP EHCI & OHCI
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 of
9 * the License as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19#include <linux/kernel.h>
Ming Lei417e2062011-08-19 16:57:54 +080020#include <linux/module.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053021#include <linux/types.h>
22#include <linux/slab.h>
23#include <linux/delay.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053024#include <linux/clk.h>
25#include <linux/dma-mapping.h>
26#include <linux/spinlock.h>
Russ Dillc05995c2012-06-14 09:24:21 -070027#include <linux/gpio.h>
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070028#include <linux/platform_device.h>
29#include <linux/platform_data/usb-omap.h>
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +053030#include <linux/pm_runtime.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053031
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070032#include "omap-usb.h"
33
Keshava Munegowdaa6d3a662011-10-11 13:21:51 +053034#define USBHS_DRIVER_NAME "usbhs_omap"
Keshava Munegowda17cdd292011-03-01 20:08:17 +053035#define OMAP_EHCI_DEVICE "ehci-omap"
36#define OMAP_OHCI_DEVICE "ohci-omap3"
37
38/* OMAP USBHOST Register addresses */
39
Keshava Munegowda17cdd292011-03-01 20:08:17 +053040/* UHH Register Set */
41#define OMAP_UHH_REVISION (0x00)
42#define OMAP_UHH_SYSCONFIG (0x10)
43#define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
44#define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
45#define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
46#define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
47#define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
48#define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
49
50#define OMAP_UHH_SYSSTATUS (0x14)
51#define OMAP_UHH_HOSTCONFIG (0x40)
52#define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
53#define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
54#define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
55#define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
56#define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
57#define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
58#define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
59#define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
60#define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
61#define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
62#define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
63#define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
64
65/* OMAP4-specific defines */
66#define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
67#define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
68#define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
69#define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
70#define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
71
72#define OMAP4_P1_MODE_CLEAR (3 << 16)
73#define OMAP4_P1_MODE_TLL (1 << 16)
74#define OMAP4_P1_MODE_HSIC (3 << 16)
75#define OMAP4_P2_MODE_CLEAR (3 << 18)
76#define OMAP4_P2_MODE_TLL (1 << 18)
77#define OMAP4_P2_MODE_HSIC (3 << 18)
78
Keshava Munegowda17cdd292011-03-01 20:08:17 +053079#define OMAP_UHH_DEBUG_CSR (0x44)
80
81/* Values of UHH_REVISION - Note: these are not given in the TRM */
82#define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
83#define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
84
85#define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
86#define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
87
88#define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
89#define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
90#define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
91
92
93struct usbhs_hcd_omap {
Roger Quadrosd7eaf862012-11-08 18:04:26 +020094 int nports;
95
Keshava Munegowda17cdd292011-03-01 20:08:17 +053096 struct clk *xclk60mhsp1_ck;
97 struct clk *xclk60mhsp2_ck;
98 struct clk *utmi_p1_fck;
99 struct clk *usbhost_p1_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530100 struct clk *utmi_p2_fck;
101 struct clk *usbhost_p2_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530102 struct clk *init_60m_fclk;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530103 struct clk *ehci_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530104
105 void __iomem *uhh_base;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530106
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200107 struct usbhs_omap_platform_data *pdata;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530108
109 u32 usbhs_rev;
110 spinlock_t lock;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530111};
112/*-------------------------------------------------------------------------*/
113
114const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530115static u64 usbhs_dmamask = DMA_BIT_MASK(32);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530116
117/*-------------------------------------------------------------------------*/
118
119static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
120{
121 __raw_writel(val, base + reg);
122}
123
124static inline u32 usbhs_read(void __iomem *base, u32 reg)
125{
126 return __raw_readl(base + reg);
127}
128
129static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
130{
131 __raw_writeb(val, base + reg);
132}
133
134static inline u8 usbhs_readb(void __iomem *base, u8 reg)
135{
136 return __raw_readb(base + reg);
137}
138
139/*-------------------------------------------------------------------------*/
140
141static struct platform_device *omap_usbhs_alloc_child(const char *name,
142 struct resource *res, int num_resources, void *pdata,
143 size_t pdata_size, struct device *dev)
144{
145 struct platform_device *child;
146 int ret;
147
148 child = platform_device_alloc(name, 0);
149
150 if (!child) {
151 dev_err(dev, "platform_device_alloc %s failed\n", name);
152 goto err_end;
153 }
154
155 ret = platform_device_add_resources(child, res, num_resources);
156 if (ret) {
157 dev_err(dev, "platform_device_add_resources failed\n");
158 goto err_alloc;
159 }
160
161 ret = platform_device_add_data(child, pdata, pdata_size);
162 if (ret) {
163 dev_err(dev, "platform_device_add_data failed\n");
164 goto err_alloc;
165 }
166
167 child->dev.dma_mask = &usbhs_dmamask;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530168 dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530169 child->dev.parent = dev;
170
171 ret = platform_device_add(child);
172 if (ret) {
173 dev_err(dev, "platform_device_add failed\n");
174 goto err_alloc;
175 }
176
177 return child;
178
179err_alloc:
180 platform_device_put(child);
181
182err_end:
183 return NULL;
184}
185
186static int omap_usbhs_alloc_children(struct platform_device *pdev)
187{
188 struct device *dev = &pdev->dev;
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200189 struct usbhs_omap_platform_data *pdata = dev->platform_data;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530190 struct platform_device *ehci;
191 struct platform_device *ohci;
192 struct resource *res;
193 struct resource resources[2];
194 int ret;
195
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530196 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
197 if (!res) {
198 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
199 ret = -ENODEV;
200 goto err_end;
201 }
202 resources[0] = *res;
203
204 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
205 if (!res) {
206 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
207 ret = -ENODEV;
208 goto err_end;
209 }
210 resources[1] = *res;
211
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200212 ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, pdata,
213 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530214
215 if (!ehci) {
216 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800217 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530218 goto err_end;
219 }
220
221 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
222 if (!res) {
223 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
224 ret = -ENODEV;
225 goto err_ehci;
226 }
227 resources[0] = *res;
228
229 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
230 if (!res) {
231 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
232 ret = -ENODEV;
233 goto err_ehci;
234 }
235 resources[1] = *res;
236
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200237 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, pdata,
238 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530239 if (!ohci) {
240 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800241 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530242 goto err_ehci;
243 }
244
245 return 0;
246
247err_ehci:
Axel Lind9107742011-05-14 14:15:36 +0800248 platform_device_unregister(ehci);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530249
250err_end:
251 return ret;
252}
253
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530254static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
255{
256 switch (pmode) {
257 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
258 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
259 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
260 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
261 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
262 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
263 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
264 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
265 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
266 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
267 return true;
268
269 default:
270 return false;
271 }
272}
273
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530274static int usbhs_runtime_resume(struct device *dev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530275{
276 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200277 struct usbhs_omap_platform_data *pdata = omap->pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530278 unsigned long flags;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530279
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530280 dev_dbg(dev, "usbhs_runtime_resume\n");
281
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530282 omap_tll_enable();
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530283 spin_lock_irqsave(&omap->lock, flags);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530284
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530285 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
286 clk_enable(omap->ehci_logic_fck);
287
Keshava Munegowda760189b2012-07-16 19:01:10 +0530288 if (is_ehci_tll_mode(pdata->port_mode[0]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530289 clk_enable(omap->usbhost_p1_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530290 if (is_ehci_tll_mode(pdata->port_mode[1]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530291 clk_enable(omap->usbhost_p2_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530292
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530293 clk_enable(omap->utmi_p1_fck);
294 clk_enable(omap->utmi_p2_fck);
295
296 spin_unlock_irqrestore(&omap->lock, flags);
297
298 return 0;
299}
300
301static int usbhs_runtime_suspend(struct device *dev)
302{
303 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200304 struct usbhs_omap_platform_data *pdata = omap->pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530305 unsigned long flags;
306
307 dev_dbg(dev, "usbhs_runtime_suspend\n");
308
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530309 spin_lock_irqsave(&omap->lock, flags);
310
Keshava Munegowda760189b2012-07-16 19:01:10 +0530311 if (is_ehci_tll_mode(pdata->port_mode[0]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530312 clk_disable(omap->usbhost_p1_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530313 if (is_ehci_tll_mode(pdata->port_mode[1]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530314 clk_disable(omap->usbhost_p2_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530315
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530316 clk_disable(omap->utmi_p2_fck);
317 clk_disable(omap->utmi_p1_fck);
318
319 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
320 clk_disable(omap->ehci_logic_fck);
321
322 spin_unlock_irqrestore(&omap->lock, flags);
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530323 omap_tll_disable();
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530324
325 return 0;
326}
327
328static void omap_usbhs_init(struct device *dev)
329{
330 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200331 struct usbhs_omap_platform_data *pdata = omap->pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530332 unsigned long flags;
333 unsigned reg;
334
335 dev_dbg(dev, "starting TI HSUSB Controller\n");
336
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200337 if (pdata->phy_reset) {
338 if (gpio_is_valid(pdata->reset_gpio_port[0]))
339 gpio_request_one(pdata->reset_gpio_port[0],
Russ Dillc05995c2012-06-14 09:24:21 -0700340 GPIOF_OUT_INIT_LOW, "USB1 PHY reset");
341
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200342 if (gpio_is_valid(pdata->reset_gpio_port[1]))
343 gpio_request_one(pdata->reset_gpio_port[1],
Russ Dillc05995c2012-06-14 09:24:21 -0700344 GPIOF_OUT_INIT_LOW, "USB2 PHY reset");
345
346 /* Hold the PHY in RESET for enough time till DIR is high */
347 udelay(10);
348 }
349
Keshava Munegowda760189b2012-07-16 19:01:10 +0530350 pm_runtime_get_sync(dev);
Russ Dillc05995c2012-06-14 09:24:21 -0700351 spin_lock_irqsave(&omap->lock, flags);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530352
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530353 reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
354 /* setup ULPI bypass and burst configurations */
355 reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
356 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
357 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
358 reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
359 reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
360
361 if (is_omap_usbhs_rev1(omap)) {
362 if (pdata->port_mode[0] == OMAP_USBHS_PORT_MODE_UNUSED)
363 reg &= ~OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS;
364 if (pdata->port_mode[1] == OMAP_USBHS_PORT_MODE_UNUSED)
365 reg &= ~OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS;
366 if (pdata->port_mode[2] == OMAP_USBHS_PORT_MODE_UNUSED)
367 reg &= ~OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS;
368
369 /* Bypass the TLL module for PHY mode operation */
Roger Quadros63b68902012-12-14 09:09:11 -0800370 if (pdata->single_ulpi_bypass) {
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530371 dev_dbg(dev, "OMAP3 ES version <= ES2.1\n");
372 if (is_ehci_phy_mode(pdata->port_mode[0]) ||
373 is_ehci_phy_mode(pdata->port_mode[1]) ||
374 is_ehci_phy_mode(pdata->port_mode[2]))
375 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
376 else
377 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
378 } else {
379 dev_dbg(dev, "OMAP3 ES version > ES2.1\n");
380 if (is_ehci_phy_mode(pdata->port_mode[0]))
381 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
382 else
383 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
384 if (is_ehci_phy_mode(pdata->port_mode[1]))
385 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
386 else
387 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
388 if (is_ehci_phy_mode(pdata->port_mode[2]))
389 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
390 else
391 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
392 }
393 } else if (is_omap_usbhs_rev2(omap)) {
394 /* Clear port mode fields for PHY mode*/
395 reg &= ~OMAP4_P1_MODE_CLEAR;
396 reg &= ~OMAP4_P2_MODE_CLEAR;
397
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530398 if (is_ehci_tll_mode(pdata->port_mode[0]) ||
399 (is_ohci_port(pdata->port_mode[0])))
400 reg |= OMAP4_P1_MODE_TLL;
401 else if (is_ehci_hsic_mode(pdata->port_mode[0]))
402 reg |= OMAP4_P1_MODE_HSIC;
403
404 if (is_ehci_tll_mode(pdata->port_mode[1]) ||
405 (is_ohci_port(pdata->port_mode[1])))
406 reg |= OMAP4_P2_MODE_TLL;
407 else if (is_ehci_hsic_mode(pdata->port_mode[1]))
408 reg |= OMAP4_P2_MODE_HSIC;
409 }
410
411 usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
412 dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
413
Axel Lind11536e2011-04-21 19:52:41 +0530414 spin_unlock_irqrestore(&omap->lock, flags);
Russ Dillc05995c2012-06-14 09:24:21 -0700415
Keshava Munegowda760189b2012-07-16 19:01:10 +0530416 pm_runtime_put_sync(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200417 if (pdata->phy_reset) {
Russ Dillc05995c2012-06-14 09:24:21 -0700418 /* Hold the PHY in RESET for enough time till
419 * PHY is settled and ready
420 */
421 udelay(10);
422
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200423 if (gpio_is_valid(pdata->reset_gpio_port[0]))
Russ Dillc05995c2012-06-14 09:24:21 -0700424 gpio_set_value_cansleep
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200425 (pdata->reset_gpio_port[0], 1);
Russ Dillc05995c2012-06-14 09:24:21 -0700426
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200427 if (gpio_is_valid(pdata->reset_gpio_port[1]))
Russ Dillc05995c2012-06-14 09:24:21 -0700428 gpio_set_value_cansleep
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200429 (pdata->reset_gpio_port[1], 1);
Russ Dillc05995c2012-06-14 09:24:21 -0700430 }
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530431}
432
Russ Dillc05995c2012-06-14 09:24:21 -0700433static void omap_usbhs_deinit(struct device *dev)
434{
435 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200436 struct usbhs_omap_platform_data *pdata = omap->pdata;
Russ Dillc05995c2012-06-14 09:24:21 -0700437
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200438 if (pdata->phy_reset) {
439 if (gpio_is_valid(pdata->reset_gpio_port[0]))
440 gpio_free(pdata->reset_gpio_port[0]);
Russ Dillc05995c2012-06-14 09:24:21 -0700441
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200442 if (gpio_is_valid(pdata->reset_gpio_port[1]))
443 gpio_free(pdata->reset_gpio_port[1]);
Russ Dillc05995c2012-06-14 09:24:21 -0700444 }
445}
446
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530447
448/**
449 * usbhs_omap_probe - initialize TI-based HCDs
450 *
451 * Allocates basic resources for this USB host controller.
452 */
Bill Pembertonf791be42012-11-19 13:23:04 -0500453static int usbhs_omap_probe(struct platform_device *pdev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530454{
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530455 struct device *dev = &pdev->dev;
456 struct usbhs_omap_platform_data *pdata = dev->platform_data;
457 struct usbhs_hcd_omap *omap;
458 struct resource *res;
459 int ret = 0;
460 int i;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530461
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530462 if (!pdata) {
463 dev_err(dev, "Missing platform data\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200464 return -ENODEV;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530465 }
466
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200467 omap = devm_kzalloc(dev, sizeof(*omap), GFP_KERNEL);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530468 if (!omap) {
469 dev_err(dev, "Memory allocation failed\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200470 return -ENOMEM;
471 }
472
473 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
474 omap->uhh_base = devm_request_and_ioremap(dev, res);
475 if (!omap->uhh_base) {
476 dev_err(dev, "Resource request/ioremap failed\n");
477 return -EADDRNOTAVAIL;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530478 }
479
480 spin_lock_init(&omap->lock);
481
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200482 omap->pdata = pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530483
484 pm_runtime_enable(dev);
485
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200486 platform_set_drvdata(pdev, omap);
487 pm_runtime_get_sync(dev);
488
489 omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
490
491 /* we need to call runtime suspend before we update omap->nports
492 * to prevent unbalanced clk_disable()
493 */
494 pm_runtime_put_sync(dev);
495
Roger Quadrosccac71a2012-11-08 19:18:08 +0200496 /*
497 * If platform data contains nports then use that
498 * else make out number of ports from USBHS revision
499 */
500 if (pdata->nports) {
501 omap->nports = pdata->nports;
502 } else {
503 switch (omap->usbhs_rev) {
504 case OMAP_USBHS_REV1:
505 omap->nports = 3;
506 break;
507 case OMAP_USBHS_REV2:
508 omap->nports = 2;
509 break;
510 default:
511 omap->nports = OMAP3_HS_USB_PORTS;
512 dev_dbg(dev,
513 "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
514 omap->usbhs_rev, omap->nports);
515 break;
516 }
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200517 }
518
519 for (i = 0; i < omap->nports; i++)
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530520 if (is_ehci_phy_mode(i) || is_ehci_tll_mode(i) ||
521 is_ehci_hsic_mode(i)) {
522 omap->ehci_logic_fck = clk_get(dev, "ehci_logic_fck");
523 if (IS_ERR(omap->ehci_logic_fck)) {
524 ret = PTR_ERR(omap->ehci_logic_fck);
525 dev_warn(dev, "ehci_logic_fck failed:%d\n",
526 ret);
527 }
528 break;
529 }
530
531 omap->utmi_p1_fck = clk_get(dev, "utmi_p1_gfclk");
532 if (IS_ERR(omap->utmi_p1_fck)) {
533 ret = PTR_ERR(omap->utmi_p1_fck);
534 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
535 goto err_end;
536 }
537
538 omap->xclk60mhsp1_ck = clk_get(dev, "xclk60mhsp1_ck");
539 if (IS_ERR(omap->xclk60mhsp1_ck)) {
540 ret = PTR_ERR(omap->xclk60mhsp1_ck);
541 dev_err(dev, "xclk60mhsp1_ck failed error:%d\n", ret);
542 goto err_utmi_p1_fck;
543 }
544
545 omap->utmi_p2_fck = clk_get(dev, "utmi_p2_gfclk");
546 if (IS_ERR(omap->utmi_p2_fck)) {
547 ret = PTR_ERR(omap->utmi_p2_fck);
548 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
549 goto err_xclk60mhsp1_ck;
550 }
551
552 omap->xclk60mhsp2_ck = clk_get(dev, "xclk60mhsp2_ck");
553 if (IS_ERR(omap->xclk60mhsp2_ck)) {
554 ret = PTR_ERR(omap->xclk60mhsp2_ck);
555 dev_err(dev, "xclk60mhsp2_ck failed error:%d\n", ret);
556 goto err_utmi_p2_fck;
557 }
558
559 omap->usbhost_p1_fck = clk_get(dev, "usb_host_hs_utmi_p1_clk");
560 if (IS_ERR(omap->usbhost_p1_fck)) {
561 ret = PTR_ERR(omap->usbhost_p1_fck);
562 dev_err(dev, "usbhost_p1_fck failed error:%d\n", ret);
563 goto err_xclk60mhsp2_ck;
564 }
565
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530566 omap->usbhost_p2_fck = clk_get(dev, "usb_host_hs_utmi_p2_clk");
567 if (IS_ERR(omap->usbhost_p2_fck)) {
568 ret = PTR_ERR(omap->usbhost_p2_fck);
569 dev_err(dev, "usbhost_p2_fck failed error:%d\n", ret);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530570 goto err_usbhost_p1_fck;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530571 }
572
573 omap->init_60m_fclk = clk_get(dev, "init_60m_fclk");
574 if (IS_ERR(omap->init_60m_fclk)) {
575 ret = PTR_ERR(omap->init_60m_fclk);
576 dev_err(dev, "init_60m_fclk failed error:%d\n", ret);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530577 goto err_usbhost_p2_fck;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530578 }
579
580 if (is_ehci_phy_mode(pdata->port_mode[0])) {
581 /* for OMAP3 , the clk set paretn fails */
582 ret = clk_set_parent(omap->utmi_p1_fck,
583 omap->xclk60mhsp1_ck);
584 if (ret != 0)
585 dev_err(dev, "xclk60mhsp1_ck set parent"
586 "failed error:%d\n", ret);
587 } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
588 ret = clk_set_parent(omap->utmi_p1_fck,
589 omap->init_60m_fclk);
590 if (ret != 0)
591 dev_err(dev, "init_60m_fclk set parent"
592 "failed error:%d\n", ret);
593 }
594
595 if (is_ehci_phy_mode(pdata->port_mode[1])) {
596 ret = clk_set_parent(omap->utmi_p2_fck,
597 omap->xclk60mhsp2_ck);
598 if (ret != 0)
599 dev_err(dev, "xclk60mhsp2_ck set parent"
600 "failed error:%d\n", ret);
601 } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
602 ret = clk_set_parent(omap->utmi_p2_fck,
603 omap->init_60m_fclk);
604 if (ret != 0)
605 dev_err(dev, "init_60m_fclk set parent"
606 "failed error:%d\n", ret);
607 }
608
Govindraj.Rf0447a62012-02-15 15:53:34 +0530609 omap_usbhs_init(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530610 ret = omap_usbhs_alloc_children(pdev);
611 if (ret) {
612 dev_err(dev, "omap_usbhs_alloc_children failed\n");
613 goto err_alloc;
614 }
615
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200616 return 0;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530617
618err_alloc:
Russ Dillc05995c2012-06-14 09:24:21 -0700619 omap_usbhs_deinit(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530620 clk_put(omap->init_60m_fclk);
621
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530622err_usbhost_p2_fck:
623 clk_put(omap->usbhost_p2_fck);
624
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530625err_usbhost_p1_fck:
626 clk_put(omap->usbhost_p1_fck);
627
628err_xclk60mhsp2_ck:
629 clk_put(omap->xclk60mhsp2_ck);
630
631err_utmi_p2_fck:
632 clk_put(omap->utmi_p2_fck);
633
634err_xclk60mhsp1_ck:
635 clk_put(omap->xclk60mhsp1_ck);
636
637err_utmi_p1_fck:
638 clk_put(omap->utmi_p1_fck);
639
640err_end:
641 clk_put(omap->ehci_logic_fck);
642 pm_runtime_disable(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530643
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530644 return ret;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530645}
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530646
647/**
648 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
649 * @pdev: USB Host Controller being removed
650 *
651 * Reverses the effect of usbhs_omap_probe().
652 */
Bill Pemberton4740f732012-11-19 13:26:01 -0500653static int usbhs_omap_remove(struct platform_device *pdev)
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530654{
655 struct usbhs_hcd_omap *omap = platform_get_drvdata(pdev);
656
Russ Dillc05995c2012-06-14 09:24:21 -0700657 omap_usbhs_deinit(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530658 clk_put(omap->init_60m_fclk);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530659 clk_put(omap->usbhost_p2_fck);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530660 clk_put(omap->usbhost_p1_fck);
661 clk_put(omap->xclk60mhsp2_ck);
662 clk_put(omap->utmi_p2_fck);
663 clk_put(omap->xclk60mhsp1_ck);
664 clk_put(omap->utmi_p1_fck);
665 clk_put(omap->ehci_logic_fck);
666 pm_runtime_disable(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530667
668 return 0;
669}
670
671static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
672 .runtime_suspend = usbhs_runtime_suspend,
673 .runtime_resume = usbhs_runtime_resume,
674};
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530675
676static struct platform_driver usbhs_omap_driver = {
677 .driver = {
678 .name = (char *)usbhs_driver_name,
679 .owner = THIS_MODULE,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530680 .pm = &usbhsomap_dev_pm_ops,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530681 },
682 .remove = __exit_p(usbhs_omap_remove),
683};
684
685MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
686MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
687MODULE_LICENSE("GPL v2");
688MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
689
690static int __init omap_usbhs_drvinit(void)
691{
692 return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
693}
694
695/*
696 * init before ehci and ohci drivers;
697 * The usbhs core driver should be initialized much before
698 * the omap ehci and ohci probe functions are called.
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530699 * This usbhs core driver should be initialized after
700 * usb tll driver
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530701 */
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530702fs_initcall_sync(omap_usbhs_drvinit);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530703
704static void __exit omap_usbhs_drvexit(void)
705{
706 platform_driver_unregister(&usbhs_omap_driver);
707}
708module_exit(omap_usbhs_drvexit);