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 * Jarkko Nikula <jarkko.nikula@nokia.com>
7 * Tony Lindgren <tony@atomide.com>
9 * This file is part of the Inventra Controller Driver for Linux.
11 * The Inventra Controller Driver for Linux is free software; you
12 * can redistribute it and/or modify it under the terms of the GNU
13 * General Public License version 2 as published by the Free Software
16 * The Inventra Controller Driver for Linux is distributed in
17 * the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
20 * License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with The Inventra Controller Driver for Linux ; if not,
24 * write to the Free Software Foundation, Inc., 59 Temple Place,
25 * Suite 330, Boston, MA 02111-1307 USA
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/sched.h>
31 #include <linux/slab.h>
32 #include <linux/init.h>
33 #include <linux/list.h>
34 #include <linux/clk.h>
37 #include <asm/mach-types.h>
38 #include <mach/hardware.h>
41 #include "musb_core.h"
44 #ifdef CONFIG_ARCH_OMAP3430
45 #define get_cpu_rev() 2
48 #define MUSB_TIMEOUT_A_WAIT_BCON 1100
50 static struct timer_list musb_idle_timer
;
52 static void musb_do_idle(unsigned long _musb
)
54 struct musb
*musb
= (void *)_musb
;
56 #ifdef CONFIG_USB_MUSB_HDRC_HCD
61 spin_lock_irqsave(&musb
->lock
, flags
);
63 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
65 switch (musb
->xceiv
.state
) {
66 case OTG_STATE_A_WAIT_BCON
:
67 devctl
&= ~MUSB_DEVCTL_SESSION
;
68 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
70 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
71 if (devctl
& MUSB_DEVCTL_BDEVICE
) {
72 musb
->xceiv
.state
= OTG_STATE_B_IDLE
;
75 musb
->xceiv
.state
= OTG_STATE_A_IDLE
;
79 #ifdef CONFIG_USB_MUSB_HDRC_HCD
80 case OTG_STATE_A_SUSPEND
:
81 /* finish RESUME signaling? */
82 if (musb
->port1_status
& MUSB_PORT_STAT_RESUME
) {
83 power
= musb_readb(musb
->mregs
, MUSB_POWER
);
84 power
&= ~MUSB_POWER_RESUME
;
85 DBG(1, "root port resume stopped, power %02x\n", power
);
86 musb_writeb(musb
->mregs
, MUSB_POWER
, power
);
88 musb
->port1_status
&= ~(USB_PORT_STAT_SUSPEND
89 | MUSB_PORT_STAT_RESUME
);
90 musb
->port1_status
|= USB_PORT_STAT_C_SUSPEND
<< 16;
91 usb_hcd_poll_rh_status(musb_to_hcd(musb
));
92 /* NOTE: it might really be A_WAIT_BCON ... */
93 musb
->xceiv
.state
= OTG_STATE_A_HOST
;
97 #ifdef CONFIG_USB_MUSB_HDRC_HCD
98 case OTG_STATE_A_HOST
:
99 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
100 if (devctl
& MUSB_DEVCTL_BDEVICE
)
101 musb
->xceiv
.state
= OTG_STATE_B_IDLE
;
103 musb
->xceiv
.state
= OTG_STATE_A_WAIT_BCON
;
108 spin_unlock_irqrestore(&musb
->lock
, flags
);
112 void musb_platform_try_idle(struct musb
*musb
, unsigned long timeout
)
114 unsigned long default_timeout
= jiffies
+ msecs_to_jiffies(3);
115 static unsigned long last_timer
;
118 timeout
= default_timeout
;
120 /* Never idle if active, or when VBUS timeout is not set as host */
121 if (musb
->is_active
|| ((musb
->a_wait_bcon
== 0)
122 && (musb
->xceiv
.state
== OTG_STATE_A_WAIT_BCON
))) {
123 DBG(4, "%s active, deleting timer\n", otg_state_string(musb
));
124 del_timer(&musb_idle_timer
);
125 last_timer
= jiffies
;
129 if (time_after(last_timer
, timeout
)) {
130 if (!timer_pending(&musb_idle_timer
))
131 last_timer
= timeout
;
133 DBG(4, "Longer idle timer already pending, ignoring\n");
137 last_timer
= timeout
;
139 DBG(4, "%s inactive, for idle timer for %lu ms\n",
140 otg_state_string(musb
),
141 (unsigned long)jiffies_to_msecs(timeout
- jiffies
));
142 mod_timer(&musb_idle_timer
, timeout
);
145 void musb_platform_enable(struct musb
*musb
)
148 void musb_platform_disable(struct musb
*musb
)
151 static void omap_vbus_power(struct musb
*musb
, int is_on
, int sleeping
)
155 static void omap_set_vbus(struct musb
*musb
, int is_on
)
158 /* HDRC controls CPEN, but beware current surges during device
159 * connect. They can trigger transient overcurrent conditions
160 * that must be ignored.
163 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
167 musb
->xceiv
.default_a
= 1;
168 musb
->xceiv
.state
= OTG_STATE_A_WAIT_VRISE
;
169 devctl
|= MUSB_DEVCTL_SESSION
;
175 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
176 * jumping right to B_IDLE...
179 musb
->xceiv
.default_a
= 0;
180 musb
->xceiv
.state
= OTG_STATE_B_IDLE
;
181 devctl
&= ~MUSB_DEVCTL_SESSION
;
185 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
187 DBG(1, "VBUS %s, devctl %02x "
188 /* otg %3x conf %08x prcm %08x */ "\n",
189 otg_state_string(musb
),
190 musb_readb(musb
->mregs
, MUSB_DEVCTL
));
192 static int omap_set_power(struct otg_transceiver
*x
, unsigned mA
)
197 static int musb_platform_resume(struct musb
*musb
);
199 int musb_platform_set_mode(struct musb
*musb
, u8 musb_mode
)
201 u8 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
203 devctl
|= MUSB_DEVCTL_SESSION
;
204 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
207 #ifdef CONFIG_USB_MUSB_HDRC_HCD
209 otg_set_host(&musb
->xceiv
, musb
->xceiv
.host
);
212 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
213 case MUSB_PERIPHERAL
:
214 otg_set_peripheral(&musb
->xceiv
, musb
->xceiv
.gadget
);
217 #ifdef CONFIG_USB_MUSB_OTG
227 int __init
musb_platform_init(struct musb
*musb
)
231 #if defined(CONFIG_ARCH_OMAP2430)
232 omap_cfg_reg(AE5_2430_USB0HS_STP
);
235 musb_platform_resume(musb
);
237 l
= omap_readl(OTG_SYSCONFIG
);
238 l
&= ~ENABLEWAKEUP
; /* disable wakeup */
239 l
&= ~NOSTDBY
; /* remove possible nostdby */
240 l
|= SMARTSTDBY
; /* enable smart standby */
241 l
&= ~AUTOIDLE
; /* disable auto idle */
242 l
&= ~NOIDLE
; /* remove possible noidle */
243 l
|= SMARTIDLE
; /* enable smart idle */
244 l
|= AUTOIDLE
; /* enable auto idle */
245 omap_writel(l
, OTG_SYSCONFIG
);
247 l
= omap_readl(OTG_INTERFSEL
);
249 omap_writel(l
, OTG_INTERFSEL
);
251 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
252 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
253 omap_readl(OTG_REVISION
), omap_readl(OTG_SYSCONFIG
),
254 omap_readl(OTG_SYSSTATUS
), omap_readl(OTG_INTERFSEL
),
255 omap_readl(OTG_SIMENABLE
));
257 omap_vbus_power(musb
, musb
->board_mode
== MUSB_HOST
, 1);
259 if (is_host_enabled(musb
))
260 musb
->board_set_vbus
= omap_set_vbus
;
261 if (is_peripheral_enabled(musb
))
262 musb
->xceiv
.set_power
= omap_set_power
;
263 musb
->a_wait_bcon
= MUSB_TIMEOUT_A_WAIT_BCON
;
265 setup_timer(&musb_idle_timer
, musb_do_idle
, (unsigned long) musb
);
270 int musb_platform_suspend(struct musb
*musb
)
278 l
= omap_readl(OTG_FORCESTDBY
);
279 l
|= ENABLEFORCE
; /* enable MSTANDBY */
280 omap_writel(l
, OTG_FORCESTDBY
);
282 l
= omap_readl(OTG_SYSCONFIG
);
283 l
|= ENABLEWAKEUP
; /* enable wakeup */
284 omap_writel(l
, OTG_SYSCONFIG
);
286 if (musb
->xceiv
.set_suspend
)
287 musb
->xceiv
.set_suspend(&musb
->xceiv
, 1);
290 musb
->set_clock(musb
->clock
, 0);
292 clk_disable(musb
->clock
);
297 static int musb_platform_resume(struct musb
*musb
)
304 if (musb
->xceiv
.set_suspend
)
305 musb
->xceiv
.set_suspend(&musb
->xceiv
, 0);
308 musb
->set_clock(musb
->clock
, 1);
310 clk_enable(musb
->clock
);
312 l
= omap_readl(OTG_SYSCONFIG
);
313 l
&= ~ENABLEWAKEUP
; /* disable wakeup */
314 omap_writel(l
, OTG_SYSCONFIG
);
316 l
= omap_readl(OTG_FORCESTDBY
);
317 l
&= ~ENABLEFORCE
; /* disable MSTANDBY */
318 omap_writel(l
, OTG_FORCESTDBY
);
324 int musb_platform_exit(struct musb
*musb
)
327 omap_vbus_power(musb
, 0 /*off*/, 1);
329 musb_platform_suspend(musb
);
331 clk_put(musb
->clock
);