usb: musb: omap2430: give it a context structure
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / musb / omap2430.c
blobbca9df7557a4dd3fa857778897877b7386abc717
1 /*
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
6 * Tony Lindgren <tony@atomide.com>
8 * This file is part of the Inventra Controller Driver for Linux.
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.
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.
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
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/sched.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/clk.h>
33 #include <linux/io.h>
34 #include <linux/platform_device.h>
35 #include <linux/dma-mapping.h>
37 #include "musb_core.h"
38 #include "omap2430.h"
40 struct omap2430_glue {
41 struct device *dev;
42 struct platform_device *musb;
45 static struct timer_list musb_idle_timer;
47 static void musb_do_idle(unsigned long _musb)
49 struct musb *musb = (void *)_musb;
50 unsigned long flags;
51 #ifdef CONFIG_USB_MUSB_HDRC_HCD
52 u8 power;
53 #endif
54 u8 devctl;
56 spin_lock_irqsave(&musb->lock, flags);
58 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
60 switch (musb->xceiv->state) {
61 case OTG_STATE_A_WAIT_BCON:
62 devctl &= ~MUSB_DEVCTL_SESSION;
63 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
65 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
66 if (devctl & MUSB_DEVCTL_BDEVICE) {
67 musb->xceiv->state = OTG_STATE_B_IDLE;
68 MUSB_DEV_MODE(musb);
69 } else {
70 musb->xceiv->state = OTG_STATE_A_IDLE;
71 MUSB_HST_MODE(musb);
73 break;
74 #ifdef CONFIG_USB_MUSB_HDRC_HCD
75 case OTG_STATE_A_SUSPEND:
76 /* finish RESUME signaling? */
77 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
78 power = musb_readb(musb->mregs, MUSB_POWER);
79 power &= ~MUSB_POWER_RESUME;
80 DBG(1, "root port resume stopped, power %02x\n", power);
81 musb_writeb(musb->mregs, MUSB_POWER, power);
82 musb->is_active = 1;
83 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
84 | MUSB_PORT_STAT_RESUME);
85 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
86 usb_hcd_poll_rh_status(musb_to_hcd(musb));
87 /* NOTE: it might really be A_WAIT_BCON ... */
88 musb->xceiv->state = OTG_STATE_A_HOST;
90 break;
91 #endif
92 #ifdef CONFIG_USB_MUSB_HDRC_HCD
93 case OTG_STATE_A_HOST:
94 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
95 if (devctl & MUSB_DEVCTL_BDEVICE)
96 musb->xceiv->state = OTG_STATE_B_IDLE;
97 else
98 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
99 #endif
100 default:
101 break;
103 spin_unlock_irqrestore(&musb->lock, flags);
107 static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
109 unsigned long default_timeout = jiffies + msecs_to_jiffies(3);
110 static unsigned long last_timer;
112 if (timeout == 0)
113 timeout = default_timeout;
115 /* Never idle if active, or when VBUS timeout is not set as host */
116 if (musb->is_active || ((musb->a_wait_bcon == 0)
117 && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) {
118 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
119 del_timer(&musb_idle_timer);
120 last_timer = jiffies;
121 return;
124 if (time_after(last_timer, timeout)) {
125 if (!timer_pending(&musb_idle_timer))
126 last_timer = timeout;
127 else {
128 DBG(4, "Longer idle timer already pending, ignoring\n");
129 return;
132 last_timer = timeout;
134 DBG(4, "%s inactive, for idle timer for %lu ms\n",
135 otg_state_string(musb),
136 (unsigned long)jiffies_to_msecs(timeout - jiffies));
137 mod_timer(&musb_idle_timer, timeout);
140 static void omap2430_musb_enable(struct musb *musb)
144 static void omap2430_musb_disable(struct musb *musb)
148 static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
150 u8 devctl;
151 /* HDRC controls CPEN, but beware current surges during device
152 * connect. They can trigger transient overcurrent conditions
153 * that must be ignored.
156 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
158 if (is_on) {
159 musb->is_active = 1;
160 musb->xceiv->default_a = 1;
161 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
162 devctl |= MUSB_DEVCTL_SESSION;
164 MUSB_HST_MODE(musb);
165 } else {
166 musb->is_active = 0;
168 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
169 * jumping right to B_IDLE...
172 musb->xceiv->default_a = 0;
173 musb->xceiv->state = OTG_STATE_B_IDLE;
174 devctl &= ~MUSB_DEVCTL_SESSION;
176 MUSB_DEV_MODE(musb);
178 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
180 DBG(1, "VBUS %s, devctl %02x "
181 /* otg %3x conf %08x prcm %08x */ "\n",
182 otg_state_string(musb),
183 musb_readb(musb->mregs, MUSB_DEVCTL));
186 static int omap2430_musb_resume(struct musb *musb);
188 static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
190 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
192 devctl |= MUSB_DEVCTL_SESSION;
193 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
195 return 0;
198 static int omap2430_musb_init(struct musb *musb)
200 u32 l;
201 struct device *dev = musb->controller;
202 struct musb_hdrc_platform_data *plat = dev->platform_data;
203 struct omap_musb_board_data *data = plat->board_data;
205 /* We require some kind of external transceiver, hooked
206 * up through ULPI. TWL4030-family PMICs include one,
207 * which needs a driver, drivers aren't always needed.
209 musb->xceiv = otg_get_transceiver();
210 if (!musb->xceiv) {
211 pr_err("HS USB OTG: no transceiver configured\n");
212 return -ENODEV;
215 omap2430_musb_resume(musb);
217 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
218 l &= ~ENABLEWAKEUP; /* disable wakeup */
219 l &= ~NOSTDBY; /* remove possible nostdby */
220 l |= SMARTSTDBY; /* enable smart standby */
221 l &= ~AUTOIDLE; /* disable auto idle */
222 l &= ~NOIDLE; /* remove possible noidle */
223 l |= SMARTIDLE; /* enable smart idle */
225 * MUSB AUTOIDLE don't work in 3430.
226 * Workaround by Richard Woodruff/TI
228 if (!cpu_is_omap3430())
229 l |= AUTOIDLE; /* enable auto idle */
230 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
232 l = musb_readl(musb->mregs, OTG_INTERFSEL);
234 if (data->interface_type == MUSB_INTERFACE_UTMI) {
235 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
236 l &= ~ULPI_12PIN; /* Disable ULPI */
237 l |= UTMI_8BIT; /* Enable UTMI */
238 } else {
239 l |= ULPI_12PIN;
242 musb_writel(musb->mregs, OTG_INTERFSEL, l);
244 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
245 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
246 musb_readl(musb->mregs, OTG_REVISION),
247 musb_readl(musb->mregs, OTG_SYSCONFIG),
248 musb_readl(musb->mregs, OTG_SYSSTATUS),
249 musb_readl(musb->mregs, OTG_INTERFSEL),
250 musb_readl(musb->mregs, OTG_SIMENABLE));
252 if (is_host_enabled(musb))
253 musb->board_set_vbus = omap2430_musb_set_vbus;
255 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
257 return 0;
260 #ifdef CONFIG_PM
261 void musb_platform_save_context(struct musb *musb,
262 struct musb_context_registers *musb_context)
264 musb_context->otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG);
265 musb_context->otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY);
268 void musb_platform_restore_context(struct musb *musb,
269 struct musb_context_registers *musb_context)
271 musb_writel(musb->mregs, OTG_SYSCONFIG, musb_context->otg_sysconfig);
272 musb_writel(musb->mregs, OTG_FORCESTDBY, musb_context->otg_forcestandby);
274 #endif
276 static int omap2430_musb_suspend(struct musb *musb)
278 u32 l;
280 if (!musb->clock)
281 return 0;
283 /* in any role */
284 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
285 l |= ENABLEFORCE; /* enable MSTANDBY */
286 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
288 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
289 l |= ENABLEWAKEUP; /* enable wakeup */
290 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
292 otg_set_suspend(musb->xceiv, 1);
294 if (musb->set_clock)
295 musb->set_clock(musb->clock, 0);
296 else
297 clk_disable(musb->clock);
299 return 0;
302 static int omap2430_musb_resume(struct musb *musb)
304 u32 l;
306 if (!musb->clock)
307 return 0;
309 otg_set_suspend(musb->xceiv, 0);
311 if (musb->set_clock)
312 musb->set_clock(musb->clock, 1);
313 else
314 clk_enable(musb->clock);
316 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
317 l &= ~ENABLEWAKEUP; /* disable wakeup */
318 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
320 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
321 l &= ~ENABLEFORCE; /* disable MSTANDBY */
322 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
324 return 0;
327 static int omap2430_musb_exit(struct musb *musb)
330 omap2430_musb_suspend(musb);
332 otg_put_transceiver(musb->xceiv);
333 return 0;
336 const struct musb_platform_ops musb_ops = {
337 .init = omap2430_musb_init,
338 .exit = omap2430_musb_exit,
340 .suspend = omap2430_musb_suspend,
341 .resume = omap2430_musb_resume,
343 .enable = omap2430_musb_enable,
344 .disable = omap2430_musb_disable,
346 .set_mode = omap2430_musb_set_mode,
347 .try_idle = omap2430_musb_try_idle,
349 .set_vbus = omap2430_musb_set_vbus,
352 static u64 omap2430_dmamask = DMA_BIT_MASK(32);
354 static int __init omap2430_probe(struct platform_device *pdev)
356 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
357 struct platform_device *musb;
358 struct omap2430_glue *glue;
360 int ret = -ENOMEM;
362 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
363 if (!glue) {
364 dev_err(&pdev->dev, "failed to allocate glue context\n");
365 goto err0;
368 musb = platform_device_alloc("musb-hdrc", -1);
369 if (!musb) {
370 dev_err(&pdev->dev, "failed to allocate musb device\n");
371 goto err1;
374 musb->dev.parent = &pdev->dev;
375 musb->dev.dma_mask = &omap2430_dmamask;
376 musb->dev.coherent_dma_mask = omap2430_dmamask;
378 glue->dev = &pdev->dev;
379 glue->musb = musb;
381 platform_set_drvdata(pdev, glue);
383 ret = platform_device_add_resources(musb, pdev->resource,
384 pdev->num_resources);
385 if (ret) {
386 dev_err(&pdev->dev, "failed to add resources\n");
387 goto err2;
390 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
391 if (ret) {
392 dev_err(&pdev->dev, "failed to add platform_data\n");
393 goto err2;
396 ret = platform_device_add(musb);
397 if (ret) {
398 dev_err(&pdev->dev, "failed to register musb device\n");
399 goto err2;
402 return 0;
404 err2:
405 platform_device_put(musb);
407 err1:
408 kfree(glue);
410 err0:
411 return ret;
414 static int __exit omap2430_remove(struct platform_device *pdev)
416 struct omap2430_glue *glue = platform_get_drvdata(pdev);
418 platform_device_del(glue->musb);
419 platform_device_put(glue->musb);
420 kfree(glue);
422 return 0;
425 static struct platform_driver omap2430_driver = {
426 .remove = __exit_p(omap2430_remove),
427 .driver = {
428 .name = "musb-omap2430",
432 MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer");
433 MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
434 MODULE_LICENSE("GPL v2");
436 static int __init omap2430_init(void)
438 return platform_driver_probe(&omap2430_driver, omap2430_probe);
440 subsys_initcall(omap2430_init);
442 static void __exit omap2430_exit(void)
444 platform_driver_unregister(&omap2430_driver);
446 module_exit(omap2430_exit);