blob: d05eef2baaaf669e6e89ebc3fa6c1fb8e338e53b [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
35#include <asm/mach-types.h>
Felipe Balbi0590d582008-08-30 19:42:02 +030036#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/mux.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030038
39#include "musb_core.h"
40#include "omap2430.h"
41
42#ifdef CONFIG_ARCH_OMAP3430
43#define get_cpu_rev() 2
44#endif
45
Felipe Balbi550a7372008-07-24 12:27:36 +030046
47static 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
109void musb_platform_try_idle(struct musb *musb, unsigned long timeout)
110{
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
142void musb_platform_enable(struct musb *musb)
143{
144}
145void musb_platform_disable(struct musb *musb)
146{
147}
Felipe Balbi550a7372008-07-24 12:27:36 +0300148static void omap_set_vbus(struct musb *musb, int is_on)
149{
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.
154 */
155
156 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
157
158 if (is_on) {
159 musb->is_active = 1;
David Brownell84e250f2009-03-31 12:30:04 -0700160 musb->xceiv->default_a = 1;
161 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300162 devctl |= MUSB_DEVCTL_SESSION;
163
164 MUSB_HST_MODE(musb);
165 } else {
166 musb->is_active = 0;
167
168 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
169 * jumping right to B_IDLE...
170 */
171
David Brownell84e250f2009-03-31 12:30:04 -0700172 musb->xceiv->default_a = 0;
173 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300174 devctl &= ~MUSB_DEVCTL_SESSION;
175
176 MUSB_DEV_MODE(musb);
177 }
178 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
179
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));
184}
Felipe Balbi550a7372008-07-24 12:27:36 +0300185
186static int musb_platform_resume(struct musb *musb);
187
David Brownell96a274d2008-11-24 13:06:47 +0200188int musb_platform_set_mode(struct musb *musb, u8 musb_mode)
Felipe Balbi550a7372008-07-24 12:27:36 +0300189{
190 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
191
192 devctl |= MUSB_DEVCTL_SESSION;
193 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
194
David Brownell96a274d2008-11-24 13:06:47 +0200195 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300196}
197
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200198int __init musb_platform_init(struct musb *musb, void *board_data)
Felipe Balbi550a7372008-07-24 12:27:36 +0300199{
200 u32 l;
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200201 struct omap_musb_board_data *data = board_data;
Felipe Balbi550a7372008-07-24 12:27:36 +0300202
203#if defined(CONFIG_ARCH_OMAP2430)
204 omap_cfg_reg(AE5_2430_USB0HS_STP);
205#endif
206
David Brownell84e250f2009-03-31 12:30:04 -0700207 /* We require some kind of external transceiver, hooked
208 * up through ULPI. TWL4030-family PMICs include one,
209 * which needs a driver, drivers aren't always needed.
210 */
211 musb->xceiv = otg_get_transceiver();
212 if (!musb->xceiv) {
213 pr_err("HS USB OTG: no transceiver configured\n");
214 return -ENODEV;
215 }
216
Felipe Balbi550a7372008-07-24 12:27:36 +0300217 musb_platform_resume(musb);
218
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200219 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300220 l &= ~ENABLEWAKEUP; /* disable wakeup */
221 l &= ~NOSTDBY; /* remove possible nostdby */
222 l |= SMARTSTDBY; /* enable smart standby */
223 l &= ~AUTOIDLE; /* disable auto idle */
224 l &= ~NOIDLE; /* remove possible noidle */
225 l |= SMARTIDLE; /* enable smart idle */
Niilo Minkkinen9a4b5e32009-05-18 17:54:16 +0300226 /*
227 * MUSB AUTOIDLE don't work in 3430.
228 * Workaround by Richard Woodruff/TI
229 */
230 if (!cpu_is_omap3430())
231 l |= AUTOIDLE; /* enable auto idle */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200232 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300233
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200234 l = musb_readl(musb->mregs, OTG_INTERFSEL);
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200235
236 if (data->interface_type == MUSB_INTERFACE_UTMI) {
237 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
238 l &= ~ULPI_12PIN; /* Disable ULPI */
239 l |= UTMI_8BIT; /* Enable UTMI */
240 } else {
241 l |= ULPI_12PIN;
242 }
243
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200244 musb_writel(musb->mregs, OTG_INTERFSEL, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300245
246 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
247 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200248 musb_readl(musb->mregs, OTG_REVISION),
249 musb_readl(musb->mregs, OTG_SYSCONFIG),
250 musb_readl(musb->mregs, OTG_SYSSTATUS),
251 musb_readl(musb->mregs, OTG_INTERFSEL),
252 musb_readl(musb->mregs, OTG_SIMENABLE));
Felipe Balbi550a7372008-07-24 12:27:36 +0300253
Felipe Balbi550a7372008-07-24 12:27:36 +0300254 if (is_host_enabled(musb))
255 musb->board_set_vbus = omap_set_vbus;
Felipe Balbi550a7372008-07-24 12:27:36 +0300256
257 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
258
259 return 0;
260}
261
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200262#ifdef CONFIG_PM
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200263void musb_platform_save_context(struct musb *musb,
264 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200265{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200266 musb_context->otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG);
267 musb_context->otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200268}
269
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200270void musb_platform_restore_context(struct musb *musb,
271 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200272{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200273 musb_writel(musb->mregs, OTG_SYSCONFIG, musb_context->otg_sysconfig);
274 musb_writel(musb->mregs, OTG_FORCESTDBY, musb_context->otg_forcestandby);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200275}
276#endif
277
Sergei Shtylyov5b3078b2010-03-25 13:25:22 +0200278static int musb_platform_suspend(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300279{
280 u32 l;
281
282 if (!musb->clock)
283 return 0;
284
285 /* in any role */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200286 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300287 l |= ENABLEFORCE; /* enable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200288 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300289
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200290 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300291 l |= ENABLEWAKEUP; /* enable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200292 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300293
David Brownell84e250f2009-03-31 12:30:04 -0700294 otg_set_suspend(musb->xceiv, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300295
296 if (musb->set_clock)
297 musb->set_clock(musb->clock, 0);
298 else
299 clk_disable(musb->clock);
300
301 return 0;
302}
303
304static int musb_platform_resume(struct musb *musb)
305{
306 u32 l;
307
308 if (!musb->clock)
309 return 0;
310
David Brownell84e250f2009-03-31 12:30:04 -0700311 otg_set_suspend(musb->xceiv, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300312
313 if (musb->set_clock)
314 musb->set_clock(musb->clock, 1);
315 else
316 clk_enable(musb->clock);
317
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200318 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300319 l &= ~ENABLEWAKEUP; /* disable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200320 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300321
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200322 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300323 l &= ~ENABLEFORCE; /* disable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200324 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300325
326 return 0;
327}
328
329
330int musb_platform_exit(struct musb *musb)
331{
332
Felipe Balbi550a7372008-07-24 12:27:36 +0300333 musb_platform_suspend(musb);
334
Felipe Balbi550a7372008-07-24 12:27:36 +0300335 return 0;
336}