blob: 5939823990c93150bd5651ed11b5dd8a5b22045a [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
2 * Copyright (C) 2005-2007 by Texas Instruments
3 * Some code has been taken from tusb6010.c
4 * Copyrights for that are attributable to:
5 * Copyright (C) 2006 Nokia Corporation
Felipe Balbi550a7372008-07-24 12:27:36 +03006 * Tony Lindgren <tony@atomide.com>
7 *
8 * This file is part of the Inventra Controller Driver for Linux.
9 *
10 * The Inventra Controller Driver for Linux is free software; you
11 * can redistribute it and/or modify it under the terms of the GNU
12 * General Public License version 2 as published by the Free Software
13 * Foundation.
14 *
15 * The Inventra Controller Driver for Linux is distributed in
16 * the hope that it will be useful, but WITHOUT ANY WARRANTY;
17 * without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
19 * License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with The Inventra Controller Driver for Linux ; if not,
23 * write to the Free Software Foundation, Inc., 59 Temple Place,
24 * Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/sched.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030030#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/clk.h>
33#include <linux/io.h>
Felipe Balbidc098862010-12-01 15:01:11 +020034#include <linux/platform_device.h>
35#include <linux/dma-mapping.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030036
Felipe Balbi550a7372008-07-24 12:27:36 +030037#include "musb_core.h"
38#include "omap2430.h"
39
Felipe Balbia3cee122010-12-02 09:27:29 +020040struct omap2430_glue {
41 struct device *dev;
42 struct platform_device *musb;
Felipe Balbi03491762010-12-02 09:57:08 +020043 struct clk *clk;
Felipe Balbia3cee122010-12-02 09:27:29 +020044};
Felipe Balbic20aebb2010-12-02 12:44:40 +020045#define glue_to_musb(g) platform_get_drvdata(g->musb)
Felipe Balbia3cee122010-12-02 09:27:29 +020046
Felipe Balbi550a7372008-07-24 12:27:36 +030047static struct timer_list musb_idle_timer;
48
49static void musb_do_idle(unsigned long _musb)
50{
51 struct musb *musb = (void *)_musb;
52 unsigned long flags;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020053#ifdef CONFIG_USB_MUSB_HDRC_HCD
Felipe Balbi550a7372008-07-24 12:27:36 +030054 u8 power;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020055#endif
Felipe Balbi550a7372008-07-24 12:27:36 +030056 u8 devctl;
57
Felipe Balbi550a7372008-07-24 12:27:36 +030058 spin_lock_irqsave(&musb->lock, flags);
59
David Brownell71783e02008-11-24 13:06:49 +020060 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
61
David Brownell84e250f2009-03-31 12:30:04 -070062 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +030063 case OTG_STATE_A_WAIT_BCON:
64 devctl &= ~MUSB_DEVCTL_SESSION;
65 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
66
67 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
68 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -070069 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030070 MUSB_DEV_MODE(musb);
71 } else {
David Brownell84e250f2009-03-31 12:30:04 -070072 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030073 MUSB_HST_MODE(musb);
74 }
75 break;
76#ifdef CONFIG_USB_MUSB_HDRC_HCD
77 case OTG_STATE_A_SUSPEND:
78 /* finish RESUME signaling? */
79 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
80 power = musb_readb(musb->mregs, MUSB_POWER);
81 power &= ~MUSB_POWER_RESUME;
82 DBG(1, "root port resume stopped, power %02x\n", power);
83 musb_writeb(musb->mregs, MUSB_POWER, power);
84 musb->is_active = 1;
85 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
86 | MUSB_PORT_STAT_RESUME);
87 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
88 usb_hcd_poll_rh_status(musb_to_hcd(musb));
89 /* NOTE: it might really be A_WAIT_BCON ... */
David Brownell84e250f2009-03-31 12:30:04 -070090 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +030091 }
92 break;
93#endif
94#ifdef CONFIG_USB_MUSB_HDRC_HCD
95 case OTG_STATE_A_HOST:
96 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
97 if (devctl & MUSB_DEVCTL_BDEVICE)
David Brownell84e250f2009-03-31 12:30:04 -070098 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030099 else
David Brownell84e250f2009-03-31 12:30:04 -0700100 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +0300101#endif
102 default:
103 break;
104 }
105 spin_unlock_irqrestore(&musb->lock, flags);
106}
107
108
Felipe Balbi743411b2010-12-01 13:22:05 +0200109static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
Felipe Balbi550a7372008-07-24 12:27:36 +0300110{
111 unsigned long default_timeout = jiffies + msecs_to_jiffies(3);
112 static unsigned long last_timer;
113
114 if (timeout == 0)
115 timeout = default_timeout;
116
117 /* Never idle if active, or when VBUS timeout is not set as host */
118 if (musb->is_active || ((musb->a_wait_bcon == 0)
David Brownell84e250f2009-03-31 12:30:04 -0700119 && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300120 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
121 del_timer(&musb_idle_timer);
122 last_timer = jiffies;
123 return;
124 }
125
126 if (time_after(last_timer, timeout)) {
127 if (!timer_pending(&musb_idle_timer))
128 last_timer = timeout;
129 else {
130 DBG(4, "Longer idle timer already pending, ignoring\n");
131 return;
132 }
133 }
134 last_timer = timeout;
135
136 DBG(4, "%s inactive, for idle timer for %lu ms\n",
137 otg_state_string(musb),
138 (unsigned long)jiffies_to_msecs(timeout - jiffies));
139 mod_timer(&musb_idle_timer, timeout);
140}
141
Felipe Balbi743411b2010-12-01 13:22:05 +0200142static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
Felipe Balbi550a7372008-07-24 12:27:36 +0300143{
144 u8 devctl;
145 /* HDRC controls CPEN, but beware current surges during device
146 * connect. They can trigger transient overcurrent conditions
147 * that must be ignored.
148 */
149
150 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
151
152 if (is_on) {
153 musb->is_active = 1;
David Brownell84e250f2009-03-31 12:30:04 -0700154 musb->xceiv->default_a = 1;
155 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300156 devctl |= MUSB_DEVCTL_SESSION;
157
158 MUSB_HST_MODE(musb);
159 } else {
160 musb->is_active = 0;
161
162 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
163 * jumping right to B_IDLE...
164 */
165
David Brownell84e250f2009-03-31 12:30:04 -0700166 musb->xceiv->default_a = 0;
167 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300168 devctl &= ~MUSB_DEVCTL_SESSION;
169
170 MUSB_DEV_MODE(musb);
171 }
172 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
173
174 DBG(1, "VBUS %s, devctl %02x "
175 /* otg %3x conf %08x prcm %08x */ "\n",
176 otg_state_string(musb),
177 musb_readb(musb->mregs, MUSB_DEVCTL));
178}
Felipe Balbi550a7372008-07-24 12:27:36 +0300179
Felipe Balbi743411b2010-12-01 13:22:05 +0200180static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
Felipe Balbi550a7372008-07-24 12:27:36 +0300181{
182 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
183
184 devctl |= MUSB_DEVCTL_SESSION;
185 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
186
David Brownell96a274d2008-11-24 13:06:47 +0200187 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300188}
189
Felipe Balbic20aebb2010-12-02 12:44:40 +0200190static inline void omap2430_low_level_exit(struct musb *musb)
191{
192 u32 l;
193
194 /* in any role */
195 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
196 l |= ENABLEFORCE; /* enable MSTANDBY */
197 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
198
199 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
200 l |= ENABLEWAKEUP; /* enable wakeup */
201 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
202}
203
204static inline void omap2430_low_level_init(struct musb *musb)
205{
206 u32 l;
207
208 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
209 l &= ~ENABLEWAKEUP; /* disable wakeup */
210 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
211
212 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
213 l &= ~ENABLEFORCE; /* disable MSTANDBY */
214 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
215}
216
Felipe Balbi743411b2010-12-01 13:22:05 +0200217static int omap2430_musb_init(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300218{
219 u32 l;
Hema Kalliguddiea65df52010-09-22 19:27:40 -0500220 struct device *dev = musb->controller;
221 struct musb_hdrc_platform_data *plat = dev->platform_data;
222 struct omap_musb_board_data *data = plat->board_data;
Felipe Balbi550a7372008-07-24 12:27:36 +0300223
David Brownell84e250f2009-03-31 12:30:04 -0700224 /* We require some kind of external transceiver, hooked
225 * up through ULPI. TWL4030-family PMICs include one,
226 * which needs a driver, drivers aren't always needed.
227 */
228 musb->xceiv = otg_get_transceiver();
229 if (!musb->xceiv) {
230 pr_err("HS USB OTG: no transceiver configured\n");
231 return -ENODEV;
232 }
233
Felipe Balbic20aebb2010-12-02 12:44:40 +0200234 omap2430_low_level_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300235
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200236 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300237 l &= ~ENABLEWAKEUP; /* disable wakeup */
238 l &= ~NOSTDBY; /* remove possible nostdby */
239 l |= SMARTSTDBY; /* enable smart standby */
240 l &= ~AUTOIDLE; /* disable auto idle */
241 l &= ~NOIDLE; /* remove possible noidle */
242 l |= SMARTIDLE; /* enable smart idle */
Niilo Minkkinen9a4b5e32009-05-18 17:54:16 +0300243 /*
244 * MUSB AUTOIDLE don't work in 3430.
245 * Workaround by Richard Woodruff/TI
246 */
247 if (!cpu_is_omap3430())
248 l |= AUTOIDLE; /* enable auto idle */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200249 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300250
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200251 l = musb_readl(musb->mregs, OTG_INTERFSEL);
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200252
253 if (data->interface_type == MUSB_INTERFACE_UTMI) {
254 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
255 l &= ~ULPI_12PIN; /* Disable ULPI */
256 l |= UTMI_8BIT; /* Enable UTMI */
257 } else {
258 l |= ULPI_12PIN;
259 }
260
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200261 musb_writel(musb->mregs, OTG_INTERFSEL, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300262
263 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
264 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200265 musb_readl(musb->mregs, OTG_REVISION),
266 musb_readl(musb->mregs, OTG_SYSCONFIG),
267 musb_readl(musb->mregs, OTG_SYSSTATUS),
268 musb_readl(musb->mregs, OTG_INTERFSEL),
269 musb_readl(musb->mregs, OTG_SIMENABLE));
Felipe Balbi550a7372008-07-24 12:27:36 +0300270
Felipe Balbi550a7372008-07-24 12:27:36 +0300271 if (is_host_enabled(musb))
Felipe Balbi743411b2010-12-01 13:22:05 +0200272 musb->board_set_vbus = omap2430_musb_set_vbus;
Felipe Balbi550a7372008-07-24 12:27:36 +0300273
274 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
275
276 return 0;
277}
278
Felipe Balbi743411b2010-12-01 13:22:05 +0200279static int omap2430_musb_exit(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300280{
281
Felipe Balbic20aebb2010-12-02 12:44:40 +0200282 omap2430_low_level_exit(musb);
Sergei Shtylyovf4053872010-09-29 09:54:29 +0300283 otg_put_transceiver(musb->xceiv);
Felipe Balbic20aebb2010-12-02 12:44:40 +0200284
Felipe Balbi550a7372008-07-24 12:27:36 +0300285 return 0;
286}
Felipe Balbi743411b2010-12-01 13:22:05 +0200287
Felipe Balbif7ec9432010-12-02 09:48:58 +0200288static const struct musb_platform_ops omap2430_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200289 .init = omap2430_musb_init,
290 .exit = omap2430_musb_exit,
291
Felipe Balbi743411b2010-12-01 13:22:05 +0200292 .set_mode = omap2430_musb_set_mode,
293 .try_idle = omap2430_musb_try_idle,
294
295 .set_vbus = omap2430_musb_set_vbus,
296};
Felipe Balbidc098862010-12-01 15:01:11 +0200297
298static u64 omap2430_dmamask = DMA_BIT_MASK(32);
299
300static int __init omap2430_probe(struct platform_device *pdev)
301{
302 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
303 struct platform_device *musb;
Felipe Balbia3cee122010-12-02 09:27:29 +0200304 struct omap2430_glue *glue;
Felipe Balbi03491762010-12-02 09:57:08 +0200305 struct clk *clk;
Felipe Balbidc098862010-12-01 15:01:11 +0200306
307 int ret = -ENOMEM;
308
Felipe Balbia3cee122010-12-02 09:27:29 +0200309 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
310 if (!glue) {
311 dev_err(&pdev->dev, "failed to allocate glue context\n");
312 goto err0;
313 }
314
Felipe Balbidc098862010-12-01 15:01:11 +0200315 musb = platform_device_alloc("musb-hdrc", -1);
316 if (!musb) {
317 dev_err(&pdev->dev, "failed to allocate musb device\n");
Felipe Balbia3cee122010-12-02 09:27:29 +0200318 goto err1;
Felipe Balbidc098862010-12-01 15:01:11 +0200319 }
320
Felipe Balbi03491762010-12-02 09:57:08 +0200321 clk = clk_get(&pdev->dev, "ick");
322 if (IS_ERR(clk)) {
323 dev_err(&pdev->dev, "failed to get clock\n");
324 ret = PTR_ERR(clk);
325 goto err2;
326 }
327
328 ret = clk_enable(clk);
329 if (ret) {
330 dev_err(&pdev->dev, "failed to enable clock\n");
331 goto err3;
332 }
333
Felipe Balbidc098862010-12-01 15:01:11 +0200334 musb->dev.parent = &pdev->dev;
335 musb->dev.dma_mask = &omap2430_dmamask;
336 musb->dev.coherent_dma_mask = omap2430_dmamask;
337
Felipe Balbia3cee122010-12-02 09:27:29 +0200338 glue->dev = &pdev->dev;
339 glue->musb = musb;
Felipe Balbi03491762010-12-02 09:57:08 +0200340 glue->clk = clk;
Felipe Balbia3cee122010-12-02 09:27:29 +0200341
Felipe Balbif7ec9432010-12-02 09:48:58 +0200342 pdata->platform_ops = &omap2430_ops;
343
Felipe Balbia3cee122010-12-02 09:27:29 +0200344 platform_set_drvdata(pdev, glue);
Felipe Balbidc098862010-12-01 15:01:11 +0200345
346 ret = platform_device_add_resources(musb, pdev->resource,
347 pdev->num_resources);
348 if (ret) {
349 dev_err(&pdev->dev, "failed to add resources\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200350 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200351 }
352
353 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
354 if (ret) {
355 dev_err(&pdev->dev, "failed to add platform_data\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200356 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200357 }
358
359 ret = platform_device_add(musb);
360 if (ret) {
361 dev_err(&pdev->dev, "failed to register musb device\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200362 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200363 }
364
365 return 0;
366
Felipe Balbi03491762010-12-02 09:57:08 +0200367err4:
368 clk_disable(clk);
369
370err3:
371 clk_put(clk);
372
Felipe Balbia3cee122010-12-02 09:27:29 +0200373err2:
Felipe Balbidc098862010-12-01 15:01:11 +0200374 platform_device_put(musb);
375
Felipe Balbia3cee122010-12-02 09:27:29 +0200376err1:
377 kfree(glue);
378
Felipe Balbidc098862010-12-01 15:01:11 +0200379err0:
380 return ret;
381}
382
383static int __exit omap2430_remove(struct platform_device *pdev)
384{
Felipe Balbia3cee122010-12-02 09:27:29 +0200385 struct omap2430_glue *glue = platform_get_drvdata(pdev);
Felipe Balbidc098862010-12-01 15:01:11 +0200386
Felipe Balbia3cee122010-12-02 09:27:29 +0200387 platform_device_del(glue->musb);
388 platform_device_put(glue->musb);
Felipe Balbi03491762010-12-02 09:57:08 +0200389 clk_disable(glue->clk);
390 clk_put(glue->clk);
Felipe Balbia3cee122010-12-02 09:27:29 +0200391 kfree(glue);
Felipe Balbidc098862010-12-01 15:01:11 +0200392
393 return 0;
394}
395
Felipe Balbic20aebb2010-12-02 12:44:40 +0200396#ifdef CONFIG_PM
397static void omap2430_save_context(struct musb *musb)
398{
399 musb->context.otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG);
400 musb->context.otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY);
401}
402
403static void omap2430_restore_context(struct musb *musb)
404{
405 musb_writel(musb->mregs, OTG_SYSCONFIG, musb->context.otg_sysconfig);
406 musb_writel(musb->mregs, OTG_FORCESTDBY, musb->context.otg_forcestandby);
407}
408
409static int omap2430_suspend(struct device *dev)
410{
411 struct omap2430_glue *glue = dev_get_drvdata(dev);
412 struct musb *musb = glue_to_musb(glue);
413
414 omap2430_low_level_exit(musb);
415 otg_set_suspend(musb->xceiv, 1);
416 omap2430_save_context(musb);
417 clk_disable(glue->clk);
418
419 return 0;
420}
421
422static int omap2430_resume(struct device *dev)
423{
424 struct omap2430_glue *glue = dev_get_drvdata(dev);
425 struct musb *musb = glue_to_musb(glue);
426 int ret;
427
428 ret = clk_enable(glue->clk);
429 if (ret) {
430 dev_err(dev, "faled to enable clock\n");
431 return ret;
432 }
433
434 omap2430_low_level_init(musb);
435 omap2430_restore_context(musb);
436 otg_set_suspend(musb->xceiv, 0);
437
438 return 0;
439}
440
441static struct dev_pm_ops omap2430_pm_ops = {
442 .suspend = omap2430_suspend,
443 .resume = omap2430_resume,
444};
445
446#define DEV_PM_OPS (&omap2430_pm_ops)
447#else
448#define DEV_PM_OPS NULL
449#endif
450
Felipe Balbidc098862010-12-01 15:01:11 +0200451static struct platform_driver omap2430_driver = {
452 .remove = __exit_p(omap2430_remove),
453 .driver = {
454 .name = "musb-omap2430",
Felipe Balbic20aebb2010-12-02 12:44:40 +0200455 .pm = DEV_PM_OPS,
Felipe Balbidc098862010-12-01 15:01:11 +0200456 },
457};
458
459MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer");
460MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
461MODULE_LICENSE("GPL v2");
462
463static int __init omap2430_init(void)
464{
465 return platform_driver_probe(&omap2430_driver, omap2430_probe);
466}
467subsys_initcall(omap2430_init);
468
469static void __exit omap2430_exit(void)
470{
471 platform_driver_unregister(&omap2430_driver);
472}
473module_exit(omap2430_exit);