blob: 5f0d0f1059896a3b8c293f9a31f3d51eccab4a8c [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>
34
Felipe Balbi550a7372008-07-24 12:27:36 +030035#include "musb_core.h"
36#include "omap2430.h"
37
Felipe Balbi550a7372008-07-24 12:27:36 +030038static struct timer_list musb_idle_timer;
39
40static void musb_do_idle(unsigned long _musb)
41{
42 struct musb *musb = (void *)_musb;
43 unsigned long flags;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020044#ifdef CONFIG_USB_MUSB_HDRC_HCD
Felipe Balbi550a7372008-07-24 12:27:36 +030045 u8 power;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020046#endif
Felipe Balbi550a7372008-07-24 12:27:36 +030047 u8 devctl;
48
Felipe Balbi550a7372008-07-24 12:27:36 +030049 spin_lock_irqsave(&musb->lock, flags);
50
David Brownell71783e02008-11-24 13:06:49 +020051 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
52
David Brownell84e250f2009-03-31 12:30:04 -070053 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +030054 case OTG_STATE_A_WAIT_BCON:
55 devctl &= ~MUSB_DEVCTL_SESSION;
56 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
57
58 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
59 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -070060 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030061 MUSB_DEV_MODE(musb);
62 } else {
David Brownell84e250f2009-03-31 12:30:04 -070063 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030064 MUSB_HST_MODE(musb);
65 }
66 break;
67#ifdef CONFIG_USB_MUSB_HDRC_HCD
68 case OTG_STATE_A_SUSPEND:
69 /* finish RESUME signaling? */
70 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
71 power = musb_readb(musb->mregs, MUSB_POWER);
72 power &= ~MUSB_POWER_RESUME;
73 DBG(1, "root port resume stopped, power %02x\n", power);
74 musb_writeb(musb->mregs, MUSB_POWER, power);
75 musb->is_active = 1;
76 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
77 | MUSB_PORT_STAT_RESUME);
78 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
79 usb_hcd_poll_rh_status(musb_to_hcd(musb));
80 /* NOTE: it might really be A_WAIT_BCON ... */
David Brownell84e250f2009-03-31 12:30:04 -070081 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +030082 }
83 break;
84#endif
85#ifdef CONFIG_USB_MUSB_HDRC_HCD
86 case OTG_STATE_A_HOST:
87 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
88 if (devctl & MUSB_DEVCTL_BDEVICE)
David Brownell84e250f2009-03-31 12:30:04 -070089 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030090 else
David Brownell84e250f2009-03-31 12:30:04 -070091 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +030092#endif
93 default:
94 break;
95 }
96 spin_unlock_irqrestore(&musb->lock, flags);
97}
98
99
Felipe Balbi743411b2010-12-01 13:22:05 +0200100static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
Felipe Balbi550a7372008-07-24 12:27:36 +0300101{
102 unsigned long default_timeout = jiffies + msecs_to_jiffies(3);
103 static unsigned long last_timer;
104
105 if (timeout == 0)
106 timeout = default_timeout;
107
108 /* Never idle if active, or when VBUS timeout is not set as host */
109 if (musb->is_active || ((musb->a_wait_bcon == 0)
David Brownell84e250f2009-03-31 12:30:04 -0700110 && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300111 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
112 del_timer(&musb_idle_timer);
113 last_timer = jiffies;
114 return;
115 }
116
117 if (time_after(last_timer, timeout)) {
118 if (!timer_pending(&musb_idle_timer))
119 last_timer = timeout;
120 else {
121 DBG(4, "Longer idle timer already pending, ignoring\n");
122 return;
123 }
124 }
125 last_timer = timeout;
126
127 DBG(4, "%s inactive, for idle timer for %lu ms\n",
128 otg_state_string(musb),
129 (unsigned long)jiffies_to_msecs(timeout - jiffies));
130 mod_timer(&musb_idle_timer, timeout);
131}
132
Felipe Balbi743411b2010-12-01 13:22:05 +0200133static void omap2430_musb_enable(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300134{
135}
Felipe Balbi743411b2010-12-01 13:22:05 +0200136
137static void omap2430_musb_disable(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300138{
139}
Felipe Balbi743411b2010-12-01 13:22:05 +0200140
141static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
Felipe Balbi550a7372008-07-24 12:27:36 +0300142{
143 u8 devctl;
144 /* HDRC controls CPEN, but beware current surges during device
145 * connect. They can trigger transient overcurrent conditions
146 * that must be ignored.
147 */
148
149 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
150
151 if (is_on) {
152 musb->is_active = 1;
David Brownell84e250f2009-03-31 12:30:04 -0700153 musb->xceiv->default_a = 1;
154 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300155 devctl |= MUSB_DEVCTL_SESSION;
156
157 MUSB_HST_MODE(musb);
158 } else {
159 musb->is_active = 0;
160
161 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
162 * jumping right to B_IDLE...
163 */
164
David Brownell84e250f2009-03-31 12:30:04 -0700165 musb->xceiv->default_a = 0;
166 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300167 devctl &= ~MUSB_DEVCTL_SESSION;
168
169 MUSB_DEV_MODE(musb);
170 }
171 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
172
173 DBG(1, "VBUS %s, devctl %02x "
174 /* otg %3x conf %08x prcm %08x */ "\n",
175 otg_state_string(musb),
176 musb_readb(musb->mregs, MUSB_DEVCTL));
177}
Felipe Balbi550a7372008-07-24 12:27:36 +0300178
Felipe Balbi743411b2010-12-01 13:22:05 +0200179static int omap2430_musb_resume(struct musb *musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300180
Felipe Balbi743411b2010-12-01 13:22:05 +0200181static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
Felipe Balbi550a7372008-07-24 12:27:36 +0300182{
183 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
184
185 devctl |= MUSB_DEVCTL_SESSION;
186 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
187
David Brownell96a274d2008-11-24 13:06:47 +0200188 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300189}
190
Felipe Balbi743411b2010-12-01 13:22:05 +0200191static int omap2430_musb_init(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300192{
193 u32 l;
Hema Kalliguddiea65df52010-09-22 19:27:40 -0500194 struct device *dev = musb->controller;
195 struct musb_hdrc_platform_data *plat = dev->platform_data;
196 struct omap_musb_board_data *data = plat->board_data;
Felipe Balbi550a7372008-07-24 12:27:36 +0300197
David Brownell84e250f2009-03-31 12:30:04 -0700198 /* We require some kind of external transceiver, hooked
199 * up through ULPI. TWL4030-family PMICs include one,
200 * which needs a driver, drivers aren't always needed.
201 */
202 musb->xceiv = otg_get_transceiver();
203 if (!musb->xceiv) {
204 pr_err("HS USB OTG: no transceiver configured\n");
205 return -ENODEV;
206 }
207
Felipe Balbi743411b2010-12-01 13:22:05 +0200208 omap2430_musb_resume(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300209
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200210 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300211 l &= ~ENABLEWAKEUP; /* disable wakeup */
212 l &= ~NOSTDBY; /* remove possible nostdby */
213 l |= SMARTSTDBY; /* enable smart standby */
214 l &= ~AUTOIDLE; /* disable auto idle */
215 l &= ~NOIDLE; /* remove possible noidle */
216 l |= SMARTIDLE; /* enable smart idle */
Niilo Minkkinen9a4b5e32009-05-18 17:54:16 +0300217 /*
218 * MUSB AUTOIDLE don't work in 3430.
219 * Workaround by Richard Woodruff/TI
220 */
221 if (!cpu_is_omap3430())
222 l |= AUTOIDLE; /* enable auto idle */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200223 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300224
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200225 l = musb_readl(musb->mregs, OTG_INTERFSEL);
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200226
227 if (data->interface_type == MUSB_INTERFACE_UTMI) {
228 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
229 l &= ~ULPI_12PIN; /* Disable ULPI */
230 l |= UTMI_8BIT; /* Enable UTMI */
231 } else {
232 l |= ULPI_12PIN;
233 }
234
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200235 musb_writel(musb->mregs, OTG_INTERFSEL, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300236
237 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
238 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200239 musb_readl(musb->mregs, OTG_REVISION),
240 musb_readl(musb->mregs, OTG_SYSCONFIG),
241 musb_readl(musb->mregs, OTG_SYSSTATUS),
242 musb_readl(musb->mregs, OTG_INTERFSEL),
243 musb_readl(musb->mregs, OTG_SIMENABLE));
Felipe Balbi550a7372008-07-24 12:27:36 +0300244
Felipe Balbi550a7372008-07-24 12:27:36 +0300245 if (is_host_enabled(musb))
Felipe Balbi743411b2010-12-01 13:22:05 +0200246 musb->board_set_vbus = omap2430_musb_set_vbus;
Felipe Balbi550a7372008-07-24 12:27:36 +0300247
248 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
249
250 return 0;
251}
252
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200253#ifdef CONFIG_PM
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200254void musb_platform_save_context(struct musb *musb,
255 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200256{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200257 musb_context->otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG);
258 musb_context->otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200259}
260
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200261void musb_platform_restore_context(struct musb *musb,
262 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200263{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200264 musb_writel(musb->mregs, OTG_SYSCONFIG, musb_context->otg_sysconfig);
265 musb_writel(musb->mregs, OTG_FORCESTDBY, musb_context->otg_forcestandby);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200266}
267#endif
268
Felipe Balbi743411b2010-12-01 13:22:05 +0200269static int omap2430_musb_suspend(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300270{
271 u32 l;
272
273 if (!musb->clock)
274 return 0;
275
276 /* in any role */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200277 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300278 l |= ENABLEFORCE; /* enable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200279 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300280
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200281 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300282 l |= ENABLEWAKEUP; /* enable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200283 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300284
David Brownell84e250f2009-03-31 12:30:04 -0700285 otg_set_suspend(musb->xceiv, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300286
287 if (musb->set_clock)
288 musb->set_clock(musb->clock, 0);
289 else
290 clk_disable(musb->clock);
291
292 return 0;
293}
294
Felipe Balbi743411b2010-12-01 13:22:05 +0200295static int omap2430_musb_resume(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300296{
297 u32 l;
298
299 if (!musb->clock)
300 return 0;
301
David Brownell84e250f2009-03-31 12:30:04 -0700302 otg_set_suspend(musb->xceiv, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300303
304 if (musb->set_clock)
305 musb->set_clock(musb->clock, 1);
306 else
307 clk_enable(musb->clock);
308
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200309 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300310 l &= ~ENABLEWAKEUP; /* disable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200311 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300312
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200313 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300314 l &= ~ENABLEFORCE; /* disable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200315 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300316
317 return 0;
318}
319
Felipe Balbi743411b2010-12-01 13:22:05 +0200320static int omap2430_musb_exit(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300321{
322
Felipe Balbi743411b2010-12-01 13:22:05 +0200323 omap2430_musb_suspend(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300324
Sergei Shtylyovf4053872010-09-29 09:54:29 +0300325 otg_put_transceiver(musb->xceiv);
Felipe Balbi550a7372008-07-24 12:27:36 +0300326 return 0;
327}
Felipe Balbi743411b2010-12-01 13:22:05 +0200328
329const struct musb_platform_ops musb_ops = {
330 .init = omap2430_musb_init,
331 .exit = omap2430_musb_exit,
332
333 .suspend = omap2430_musb_suspend,
334 .resume = omap2430_musb_resume,
335
336 .enable = omap2430_musb_enable,
337 .disable = omap2430_musb_disable,
338
339 .set_mode = omap2430_musb_set_mode,
340 .try_idle = omap2430_musb_try_idle,
341
342 .set_vbus = omap2430_musb_set_vbus,
343};