blob: d7fe287d067803e484d56efdf53060546634ea1e [file] [log] [blame]
Felipe Balbi54ab2b02009-10-14 11:44:14 +03001/*
Anand Gadiyar4792a152010-11-21 23:23:42 +05302 * ehci-omap.c - driver for USBHOST on OMAP3/4 processors
Felipe Balbi54ab2b02009-10-14 11:44:14 +03003 *
Anand Gadiyar4792a152010-11-21 23:23:42 +05304 * Bus Glue for the EHCI controllers in OMAP3/4
5 * Tested on several OMAP3 boards, and OMAP4 Pandaboard
Felipe Balbi54ab2b02009-10-14 11:44:14 +03006 *
Keshava Munegowda19403162011-03-01 20:08:21 +05307 * Copyright (C) 2007-2011 Texas Instruments, Inc.
Felipe Balbi54ab2b02009-10-14 11:44:14 +03008 * Author: Vikram Pandita <vikram.pandita@ti.com>
Anand Gadiyar4792a152010-11-21 23:23:42 +05309 * Author: Anand Gadiyar <gadiyar@ti.com>
Keshava Munegowda19403162011-03-01 20:08:21 +053010 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
Felipe Balbi54ab2b02009-10-14 11:44:14 +030011 *
12 * Copyright (C) 2009 Nokia Corporation
13 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
14 *
15 * Based on "ehci-fsl.c" and "ehci-au1xxx.c" ehci glue layers
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 *
Keshava Munegowda19403162011-03-01 20:08:21 +053031 * TODO (last updated Feb 27, 2010):
Felipe Balbi54ab2b02009-10-14 11:44:14 +030032 * - add kernel-doc
33 * - enable AUTOIDLE
Felipe Balbi54ab2b02009-10-14 11:44:14 +030034 * - add suspend/resume
Anand Gadiyar4792a152010-11-21 23:23:42 +053035 * - add HSIC and TLL support
36 * - convert to use hwmod and runtime PM
Felipe Balbi54ab2b02009-10-14 11:44:14 +030037 */
38
39#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Ajay Kumar Gupta5aa4af22010-07-08 14:03:02 +053041#include <linux/usb/ulpi.h>
Thomas Weberc76f7822009-12-15 10:38:05 -080042#include <plat/usb.h>
Keshava Munegowda6e3d4be2011-04-21 19:52:43 +053043#include <linux/regulator/consumer.h>
Keshava Munegowda6c984b02011-10-11 13:22:11 +053044#include <linux/pm_runtime.h>
Keshava Munegowda1fcb57d2012-03-19 12:12:47 +053045#include <linux/gpio.h>
Anand Gadiyar354ab852012-06-05 15:34:27 +030046#include <linux/clk.h>
Felipe Balbi54ab2b02009-10-14 11:44:14 +030047
Felipe Balbi54ab2b02009-10-14 11:44:14 +030048/* EHCI Register Set */
Anand Gadiyar572538d2010-05-06 20:09:48 +053049#define EHCI_INSNREG04 (0xA0)
50#define EHCI_INSNREG04_DISABLE_UNSUSPEND (1 << 5)
Felipe Balbi54ab2b02009-10-14 11:44:14 +030051#define EHCI_INSNREG05_ULPI (0xA4)
52#define EHCI_INSNREG05_ULPI_CONTROL_SHIFT 31
53#define EHCI_INSNREG05_ULPI_PORTSEL_SHIFT 24
54#define EHCI_INSNREG05_ULPI_OPSEL_SHIFT 22
55#define EHCI_INSNREG05_ULPI_REGADD_SHIFT 16
56#define EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT 8
57#define EHCI_INSNREG05_ULPI_WRDATA_SHIFT 0
58
59/*-------------------------------------------------------------------------*/
60
Keshava Munegowda19403162011-03-01 20:08:21 +053061static const struct hc_driver ehci_omap_hc_driver;
62
63
64static inline void ehci_write(void __iomem *base, u32 reg, u32 val)
Felipe Balbi54ab2b02009-10-14 11:44:14 +030065{
66 __raw_writel(val, base + reg);
67}
68
Keshava Munegowda19403162011-03-01 20:08:21 +053069static inline u32 ehci_read(void __iomem *base, u32 reg)
Felipe Balbi54ab2b02009-10-14 11:44:14 +030070{
71 return __raw_readl(base + reg);
72}
73
Anand Gadiyar354ab852012-06-05 15:34:27 +030074
Ming Leiba5952e2012-07-13 17:25:24 +080075static void omap_ehci_soft_phy_reset(struct usb_hcd *hcd, u8 port)
Felipe Balbi54ab2b02009-10-14 11:44:14 +030076{
Ajay Kumar Gupta5aa4af22010-07-08 14:03:02 +053077 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
78 unsigned reg = 0;
79
80 reg = ULPI_FUNC_CTRL_RESET
81 /* FUNCTION_CTRL_SET register */
82 | (ULPI_SET(ULPI_FUNC_CTRL) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
83 /* Write */
84 | (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
85 /* PORTn */
86 | ((port + 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
87 /* start ULPI access*/
88 | (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);
89
Keshava Munegowda19403162011-03-01 20:08:21 +053090 ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg);
Ajay Kumar Gupta5aa4af22010-07-08 14:03:02 +053091
92 /* Wait for ULPI access completion */
Keshava Munegowda19403162011-03-01 20:08:21 +053093 while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
Ajay Kumar Gupta5aa4af22010-07-08 14:03:02 +053094 & (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
95 cpu_relax();
96
97 if (time_after(jiffies, timeout)) {
Ming Leiba5952e2012-07-13 17:25:24 +080098 dev_dbg(hcd->self.controller,
99 "phy reset operation timed out\n");
Ajay Kumar Gupta5aa4af22010-07-08 14:03:02 +0530100 break;
101 }
102 }
103}
104
Alan Stern1a49e2a2012-07-09 15:55:14 -0400105static int omap_ehci_init(struct usb_hcd *hcd)
106{
107 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
108 int rc;
109 struct ehci_hcd_omap_platform_data *pdata;
110
111 pdata = hcd->self.controller->platform_data;
Linus Torvalds3e701cd2012-07-30 12:41:17 -0700112
113 /* Hold PHYs in reset while initializing EHCI controller */
Alan Stern1a49e2a2012-07-09 15:55:14 -0400114 if (pdata->phy_reset) {
115 if (gpio_is_valid(pdata->reset_gpio_port[0]))
Linus Torvalds3e701cd2012-07-30 12:41:17 -0700116 gpio_set_value_cansleep(pdata->reset_gpio_port[0], 0);
Alan Stern1a49e2a2012-07-09 15:55:14 -0400117
118 if (gpio_is_valid(pdata->reset_gpio_port[1]))
Linus Torvalds3e701cd2012-07-30 12:41:17 -0700119 gpio_set_value_cansleep(pdata->reset_gpio_port[1], 0);
Alan Stern1a49e2a2012-07-09 15:55:14 -0400120
121 /* Hold the PHY in RESET for enough time till DIR is high */
122 udelay(10);
123 }
124
125 /* Soft reset the PHY using PHY reset command over ULPI */
126 if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_PHY)
Ming Leiba5952e2012-07-13 17:25:24 +0800127 omap_ehci_soft_phy_reset(hcd, 0);
Alan Stern1a49e2a2012-07-09 15:55:14 -0400128 if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_PHY)
Ming Leiba5952e2012-07-13 17:25:24 +0800129 omap_ehci_soft_phy_reset(hcd, 1);
Alan Stern1a49e2a2012-07-09 15:55:14 -0400130
131 /* we know this is the memory we want, no need to ioremap again */
132 ehci->caps = hcd->regs;
133
134 rc = ehci_setup(hcd);
135
136 if (pdata->phy_reset) {
137 /* Hold the PHY in RESET for enough time till
138 * PHY is settled and ready
139 */
140 udelay(10);
141
142 if (gpio_is_valid(pdata->reset_gpio_port[0]))
143 gpio_set_value_cansleep(pdata->reset_gpio_port[0], 1);
144
145 if (gpio_is_valid(pdata->reset_gpio_port[1]))
146 gpio_set_value_cansleep(pdata->reset_gpio_port[1], 1);
147 }
148
149 /* root ports should always stay powered */
150 ehci_port_power(ehci, 1);
151
152 return rc;
153}
154
Ming Leid4aefec2011-07-28 22:59:53 +0800155static void disable_put_regulator(
156 struct ehci_hcd_omap_platform_data *pdata)
157{
158 int i;
159
160 for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
161 if (pdata->regulator[i]) {
162 regulator_disable(pdata->regulator[i]);
163 regulator_put(pdata->regulator[i]);
164 }
165 }
166}
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300167
168/* configure so an HC device and id are always provided */
169/* always called with process context; sleeping is OK */
170
171/**
172 * ehci_hcd_omap_probe - initialize TI-based HCDs
173 *
174 * Allocates basic resources for this USB host controller, and
175 * then invokes the start() method for the HCD associated with it
176 * through the hotplug entry's driver_data.
177 */
178static int ehci_hcd_omap_probe(struct platform_device *pdev)
179{
Keshava Munegowda19403162011-03-01 20:08:21 +0530180 struct device *dev = &pdev->dev;
181 struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
182 struct resource *res;
183 struct usb_hcd *hcd;
184 void __iomem *regs;
Keshava Munegowda19403162011-03-01 20:08:21 +0530185 int ret = -ENODEV;
186 int irq;
Keshava Munegowda6e3d4be2011-04-21 19:52:43 +0530187 int i;
188 char supply[7];
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300189
190 if (usb_disabled())
Keshava Munegowda19403162011-03-01 20:08:21 +0530191 return -ENODEV;
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300192
Keshava Munegowda19403162011-03-01 20:08:21 +0530193 if (!dev->parent) {
194 dev_err(dev, "Missing parent device\n");
195 return -ENODEV;
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300196 }
197
Keshava Munegowda19403162011-03-01 20:08:21 +0530198 irq = platform_get_irq_byname(pdev, "ehci-irq");
199 if (irq < 0) {
200 dev_err(dev, "EHCI irq failed\n");
201 return -ENODEV;
202 }
203
204 res = platform_get_resource_byname(pdev,
205 IORESOURCE_MEM, "ehci");
206 if (!res) {
207 dev_err(dev, "UHH EHCI get resource failed\n");
208 return -ENODEV;
209 }
210
211 regs = ioremap(res->start, resource_size(res));
212 if (!regs) {
213 dev_err(dev, "UHH EHCI ioremap failed\n");
214 return -ENOMEM;
215 }
216
217 hcd = usb_create_hcd(&ehci_omap_hc_driver, dev,
218 dev_name(dev));
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300219 if (!hcd) {
Keshava Munegowda19403162011-03-01 20:08:21 +0530220 dev_err(dev, "failed to create hcd with err %d\n", ret);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300221 ret = -ENOMEM;
Keshava Munegowda19403162011-03-01 20:08:21 +0530222 goto err_io;
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300223 }
224
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300225 hcd->rsrc_start = res->start;
226 hcd->rsrc_len = resource_size(res);
Keshava Munegowda19403162011-03-01 20:08:21 +0530227 hcd->regs = regs;
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300228
Keshava Munegowda6e3d4be2011-04-21 19:52:43 +0530229 /* get ehci regulator and enable */
230 for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
231 if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) {
232 pdata->regulator[i] = NULL;
233 continue;
234 }
235 snprintf(supply, sizeof(supply), "hsusb%d", i);
236 pdata->regulator[i] = regulator_get(dev, supply);
237 if (IS_ERR(pdata->regulator[i])) {
238 pdata->regulator[i] = NULL;
239 dev_dbg(dev,
240 "failed to get ehci port%d regulator\n", i);
241 } else {
242 regulator_enable(pdata->regulator[i]);
243 }
244 }
245
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530246 pm_runtime_enable(dev);
247 pm_runtime_get_sync(dev);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300248
Keshava Munegowda19403162011-03-01 20:08:21 +0530249 /*
250 * An undocumented "feature" in the OMAP3 EHCI controller,
251 * causes suspended ports to be taken out of suspend when
252 * the USBCMD.Run/Stop bit is cleared (for example when
253 * we do ehci_bus_suspend).
254 * This breaks suspend-resume if the root-hub is allowed
255 * to suspend. Writing 1 to this undocumented register bit
256 * disables this feature and restores normal behavior.
257 */
258 ehci_write(regs, EHCI_INSNREG04,
259 EHCI_INSNREG04_DISABLE_UNSUSPEND);
260
Russ Dill3aa2ae72012-05-04 04:24:47 -0700261 ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
262 if (ret) {
263 dev_err(dev, "failed to add hcd with err %d\n", ret);
Russ Dill984e9742012-06-21 03:44:31 -0700264 goto err_pm_runtime;
Russ Dill3aa2ae72012-05-04 04:24:47 -0700265 }
266
Anand Gadiyar354ab852012-06-05 15:34:27 +0300267
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300268 return 0;
269
Russ Dill984e9742012-06-21 03:44:31 -0700270err_pm_runtime:
Ming Leid4aefec2011-07-28 22:59:53 +0800271 disable_put_regulator(pdata);
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530272 pm_runtime_put_sync(dev);
Russ Dill984e9742012-06-21 03:44:31 -0700273 usb_put_hcd(hcd);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300274
Keshava Munegowda19403162011-03-01 20:08:21 +0530275err_io:
Ming Leid4aefec2011-07-28 22:59:53 +0800276 iounmap(regs);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300277 return ret;
278}
279
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300280
281/**
282 * ehci_hcd_omap_remove - shutdown processing for EHCI HCDs
283 * @pdev: USB Host Controller being removed
284 *
285 * Reverses the effect of usb_ehci_hcd_omap_probe(), first invoking
286 * the HCD's stop() method. It is always called from a thread
287 * context, normally "rmmod", "apmd", or something similar.
288 */
289static int ehci_hcd_omap_remove(struct platform_device *pdev)
290{
Keshava Munegowda1fcb57d2012-03-19 12:12:47 +0530291 struct device *dev = &pdev->dev;
292 struct usb_hcd *hcd = dev_get_drvdata(dev);
293 struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300294
295 usb_remove_hcd(hcd);
Ming Leid4aefec2011-07-28 22:59:53 +0800296 disable_put_regulator(dev->platform_data);
297 iounmap(hcd->regs);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300298 usb_put_hcd(hcd);
Anand Gadiyar354ab852012-06-05 15:34:27 +0300299
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530300 pm_runtime_put_sync(dev);
301 pm_runtime_disable(dev);
302
Keshava Munegowda1fcb57d2012-03-19 12:12:47 +0530303 if (pdata->phy_reset) {
304 if (gpio_is_valid(pdata->reset_gpio_port[0]))
305 gpio_free(pdata->reset_gpio_port[0]);
306
307 if (gpio_is_valid(pdata->reset_gpio_port[1]))
308 gpio_free(pdata->reset_gpio_port[1]);
309 }
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300310 return 0;
311}
312
313static void ehci_hcd_omap_shutdown(struct platform_device *pdev)
314{
Keshava Munegowda19403162011-03-01 20:08:21 +0530315 struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300316
317 if (hcd->driver->shutdown)
318 hcd->driver->shutdown(hcd);
319}
320
321static struct platform_driver ehci_hcd_omap_driver = {
322 .probe = ehci_hcd_omap_probe,
323 .remove = ehci_hcd_omap_remove,
324 .shutdown = ehci_hcd_omap_shutdown,
325 /*.suspend = ehci_hcd_omap_suspend, */
326 /*.resume = ehci_hcd_omap_resume, */
327 .driver = {
328 .name = "ehci-omap",
329 }
330};
331
332/*-------------------------------------------------------------------------*/
333
334static const struct hc_driver ehci_omap_hc_driver = {
335 .description = hcd_name,
336 .product_desc = "OMAP-EHCI Host Controller",
337 .hcd_priv_size = sizeof(struct ehci_hcd),
338
339 /*
340 * generic hardware linkage
341 */
342 .irq = ehci_irq,
343 .flags = HCD_MEMORY | HCD_USB2,
344
345 /*
346 * basic lifecycle operations
347 */
Alan Stern1a49e2a2012-07-09 15:55:14 -0400348 .reset = omap_ehci_init,
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300349 .start = ehci_run,
350 .stop = ehci_stop,
351 .shutdown = ehci_shutdown,
352
353 /*
354 * managing i/o requests and associated device resources
355 */
356 .urb_enqueue = ehci_urb_enqueue,
357 .urb_dequeue = ehci_urb_dequeue,
358 .endpoint_disable = ehci_endpoint_disable,
359 .endpoint_reset = ehci_endpoint_reset,
360
361 /*
362 * scheduling support
363 */
364 .get_frame_number = ehci_get_frame,
365
366 /*
367 * root hub support
368 */
369 .hub_status_data = ehci_hub_status_data,
Keshava Munegowda872c4952012-07-20 15:13:35 +0530370 .hub_control = ehci_hub_control,
Felipe Balbi54ab2b02009-10-14 11:44:14 +0300371 .bus_suspend = ehci_bus_suspend,
372 .bus_resume = ehci_bus_resume,
373
374 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
375};
376
377MODULE_ALIAS("platform:omap-ehci");
378MODULE_AUTHOR("Texas Instruments, Inc.");
379MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");
380