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
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>
35 #include "musb_core.h"
39 static struct timer_list musb_idle_timer
;
41 static void musb_do_idle(unsigned long _musb
)
43 struct musb
*musb
= (void *)_musb
;
45 #ifdef CONFIG_USB_MUSB_HDRC_HCD
50 spin_lock_irqsave(&musb
->lock
, flags
);
52 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
54 switch (musb
->xceiv
->state
) {
55 case OTG_STATE_A_WAIT_BCON
:
56 devctl
&= ~MUSB_DEVCTL_SESSION
;
57 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
59 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
60 if (devctl
& MUSB_DEVCTL_BDEVICE
) {
61 musb
->xceiv
->state
= OTG_STATE_B_IDLE
;
64 musb
->xceiv
->state
= OTG_STATE_A_IDLE
;
68 #ifdef CONFIG_USB_MUSB_HDRC_HCD
69 case OTG_STATE_A_SUSPEND
:
70 /* finish RESUME signaling? */
71 if (musb
->port1_status
& MUSB_PORT_STAT_RESUME
) {
72 power
= musb_readb(musb
->mregs
, MUSB_POWER
);
73 power
&= ~MUSB_POWER_RESUME
;
74 DBG(1, "root port resume stopped, power %02x\n", power
);
75 musb_writeb(musb
->mregs
, MUSB_POWER
, power
);
77 musb
->port1_status
&= ~(USB_PORT_STAT_SUSPEND
78 | MUSB_PORT_STAT_RESUME
);
79 musb
->port1_status
|= USB_PORT_STAT_C_SUSPEND
<< 16;
80 usb_hcd_poll_rh_status(musb_to_hcd(musb
));
81 /* NOTE: it might really be A_WAIT_BCON ... */
82 musb
->xceiv
->state
= OTG_STATE_A_HOST
;
86 #ifdef CONFIG_USB_MUSB_HDRC_HCD
87 case OTG_STATE_A_HOST
:
88 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
89 if (devctl
& MUSB_DEVCTL_BDEVICE
)
90 musb
->xceiv
->state
= OTG_STATE_B_IDLE
;
92 musb
->xceiv
->state
= OTG_STATE_A_WAIT_BCON
;
97 spin_unlock_irqrestore(&musb
->lock
, flags
);
101 void musb_platform_try_idle(struct musb
*musb
, unsigned long timeout
)
103 unsigned long default_timeout
= jiffies
+ msecs_to_jiffies(3);
104 static unsigned long last_timer
;
107 timeout
= default_timeout
;
109 /* Never idle if active, or when VBUS timeout is not set as host */
110 if (musb
->is_active
|| ((musb
->a_wait_bcon
== 0)
111 && (musb
->xceiv
->state
== OTG_STATE_A_WAIT_BCON
))) {
112 DBG(4, "%s active, deleting timer\n", otg_state_string(musb
));
113 del_timer(&musb_idle_timer
);
114 last_timer
= jiffies
;
118 if (time_after(last_timer
, timeout
)) {
119 if (!timer_pending(&musb_idle_timer
))
120 last_timer
= timeout
;
122 DBG(4, "Longer idle timer already pending, ignoring\n");
126 last_timer
= timeout
;
128 DBG(4, "%s inactive, for idle timer for %lu ms\n",
129 otg_state_string(musb
),
130 (unsigned long)jiffies_to_msecs(timeout
- jiffies
));
131 mod_timer(&musb_idle_timer
, timeout
);
134 void musb_platform_enable(struct musb
*musb
)
137 void musb_platform_disable(struct musb
*musb
)
140 static void omap_set_vbus(struct musb
*musb
, int is_on
)
143 /* HDRC controls CPEN, but beware current surges during device
144 * connect. They can trigger transient overcurrent conditions
145 * that must be ignored.
148 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
152 musb
->xceiv
->default_a
= 1;
153 musb
->xceiv
->state
= OTG_STATE_A_WAIT_VRISE
;
154 devctl
|= MUSB_DEVCTL_SESSION
;
160 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
161 * jumping right to B_IDLE...
164 musb
->xceiv
->default_a
= 0;
165 musb
->xceiv
->state
= OTG_STATE_B_IDLE
;
166 devctl
&= ~MUSB_DEVCTL_SESSION
;
170 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
172 DBG(1, "VBUS %s, devctl %02x "
173 /* otg %3x conf %08x prcm %08x */ "\n",
174 otg_state_string(musb
),
175 musb_readb(musb
->mregs
, MUSB_DEVCTL
));
178 static int musb_platform_resume(struct musb
*musb
);
180 int musb_platform_set_mode(struct musb
*musb
, u8 musb_mode
)
182 u8 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
184 devctl
|= MUSB_DEVCTL_SESSION
;
185 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
190 int __init
musb_platform_init(struct musb
*musb
, void *board_data
)
193 struct omap_musb_board_data
*data
= board_data
;
195 /* We require some kind of external transceiver, hooked
196 * up through ULPI. TWL4030-family PMICs include one,
197 * which needs a driver, drivers aren't always needed.
199 musb
->xceiv
= otg_get_transceiver();
201 pr_err("HS USB OTG: no transceiver configured\n");
205 musb_platform_resume(musb
);
207 l
= musb_readl(musb
->mregs
, OTG_SYSCONFIG
);
208 l
&= ~ENABLEWAKEUP
; /* disable wakeup */
209 l
&= ~NOSTDBY
; /* remove possible nostdby */
210 l
|= SMARTSTDBY
; /* enable smart standby */
211 l
&= ~AUTOIDLE
; /* disable auto idle */
212 l
&= ~NOIDLE
; /* remove possible noidle */
213 l
|= SMARTIDLE
; /* enable smart idle */
215 * MUSB AUTOIDLE don't work in 3430.
216 * Workaround by Richard Woodruff/TI
218 if (!cpu_is_omap3430())
219 l
|= AUTOIDLE
; /* enable auto idle */
220 musb_writel(musb
->mregs
, OTG_SYSCONFIG
, l
);
222 l
= musb_readl(musb
->mregs
, OTG_INTERFSEL
);
224 if (data
->interface_type
== MUSB_INTERFACE_UTMI
) {
225 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
226 l
&= ~ULPI_12PIN
; /* Disable ULPI */
227 l
|= UTMI_8BIT
; /* Enable UTMI */
232 musb_writel(musb
->mregs
, OTG_INTERFSEL
, l
);
234 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
235 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
236 musb_readl(musb
->mregs
, OTG_REVISION
),
237 musb_readl(musb
->mregs
, OTG_SYSCONFIG
),
238 musb_readl(musb
->mregs
, OTG_SYSSTATUS
),
239 musb_readl(musb
->mregs
, OTG_INTERFSEL
),
240 musb_readl(musb
->mregs
, OTG_SIMENABLE
));
242 if (is_host_enabled(musb
))
243 musb
->board_set_vbus
= omap_set_vbus
;
245 setup_timer(&musb_idle_timer
, musb_do_idle
, (unsigned long) musb
);
251 void musb_platform_save_context(struct musb
*musb
,
252 struct musb_context_registers
*musb_context
)
254 musb_context
->otg_sysconfig
= musb_readl(musb
->mregs
, OTG_SYSCONFIG
);
255 musb_context
->otg_forcestandby
= musb_readl(musb
->mregs
, OTG_FORCESTDBY
);
258 void musb_platform_restore_context(struct musb
*musb
,
259 struct musb_context_registers
*musb_context
)
261 musb_writel(musb
->mregs
, OTG_SYSCONFIG
, musb_context
->otg_sysconfig
);
262 musb_writel(musb
->mregs
, OTG_FORCESTDBY
, musb_context
->otg_forcestandby
);
266 static int musb_platform_suspend(struct musb
*musb
)
274 l
= musb_readl(musb
->mregs
, OTG_FORCESTDBY
);
275 l
|= ENABLEFORCE
; /* enable MSTANDBY */
276 musb_writel(musb
->mregs
, OTG_FORCESTDBY
, l
);
278 l
= musb_readl(musb
->mregs
, OTG_SYSCONFIG
);
279 l
|= ENABLEWAKEUP
; /* enable wakeup */
280 musb_writel(musb
->mregs
, OTG_SYSCONFIG
, l
);
282 otg_set_suspend(musb
->xceiv
, 1);
285 musb
->set_clock(musb
->clock
, 0);
287 clk_disable(musb
->clock
);
292 static int musb_platform_resume(struct musb
*musb
)
299 otg_set_suspend(musb
->xceiv
, 0);
302 musb
->set_clock(musb
->clock
, 1);
304 clk_enable(musb
->clock
);
306 l
= musb_readl(musb
->mregs
, OTG_SYSCONFIG
);
307 l
&= ~ENABLEWAKEUP
; /* disable wakeup */
308 musb_writel(musb
->mregs
, OTG_SYSCONFIG
, l
);
310 l
= musb_readl(musb
->mregs
, OTG_FORCESTDBY
);
311 l
&= ~ENABLEFORCE
; /* disable MSTANDBY */
312 musb_writel(musb
->mregs
, OTG_FORCESTDBY
, l
);
318 int musb_platform_exit(struct musb
*musb
)
321 musb_platform_suspend(musb
);