]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/usb/musb/omap2430.c
e19a15e110b199a1db867e235fe7208eba3941ff
[linux-2.6-omap-h63xx.git] / drivers / usb / musb / omap2430.c
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  * Jarkko Nikula <jarkko.nikula@nokia.com>
7  * Tony Lindgren <tony@atomide.com>
8  *
9  * This file is part of the Inventra Controller Driver for Linux.
10  *
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
14  * Foundation.
15  *
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.
21  *
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
26  *
27  */
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>
35
36 #include <asm/io.h>
37 #include <asm/mach-types.h>
38 #include <asm/arch/hardware.h>
39 #include <asm/arch/mux.h>
40
41 #include "musb_core.h"
42 #include "omap2430.h"
43
44 #ifdef CONFIG_ARCH_OMAP3430
45 #define get_cpu_rev()   2
46 #endif
47
48 #define MUSB_TIMEOUT_A_WAIT_BCON        1100
49
50 static struct timer_list musb_idle_timer;
51
52 static void musb_do_idle(unsigned long _musb)
53 {
54         struct musb     *musb = (void *)_musb;
55         unsigned long   flags;
56         u8      power;
57         u8      devctl;
58
59         devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
60
61         spin_lock_irqsave(&musb->lock, flags);
62
63         switch (musb->xceiv.state) {
64         case OTG_STATE_A_WAIT_BCON:
65                 devctl &= ~MUSB_DEVCTL_SESSION;
66                 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
67
68                 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
69                 if (devctl & MUSB_DEVCTL_BDEVICE) {
70                         musb->xceiv.state = OTG_STATE_B_IDLE;
71                         MUSB_DEV_MODE(musb);
72                 } else {
73                         musb->xceiv.state = OTG_STATE_A_IDLE;
74                         MUSB_HST_MODE(musb);
75                 }
76                 break;
77 #ifdef CONFIG_USB_MUSB_HDRC_HCD
78         case OTG_STATE_A_SUSPEND:
79                 /* finish RESUME signaling? */
80                 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
81                         power = musb_readb(musb->mregs, MUSB_POWER);
82                         power &= ~MUSB_POWER_RESUME;
83                         DBG(1, "root port resume stopped, power %02x\n", power);
84                         musb_writeb(musb->mregs, MUSB_POWER, power);
85                         musb->is_active = 1;
86                         musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
87                                                 | MUSB_PORT_STAT_RESUME);
88                         musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
89                         usb_hcd_poll_rh_status(musb_to_hcd(musb));
90                         /* NOTE: it might really be A_WAIT_BCON ... */
91                         musb->xceiv.state = OTG_STATE_A_HOST;
92                 }
93                 break;
94 #endif
95 #ifdef CONFIG_USB_MUSB_HDRC_HCD
96         case OTG_STATE_A_HOST:
97                 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
98                 if (devctl &  MUSB_DEVCTL_BDEVICE)
99                         musb->xceiv.state = OTG_STATE_B_IDLE;
100                 else
101                         musb->xceiv.state = OTG_STATE_A_WAIT_BCON;
102 #endif
103         default:
104                 break;
105         }
106         spin_unlock_irqrestore(&musb->lock, flags);
107 }
108
109
110 void musb_platform_try_idle(struct musb *musb, unsigned long timeout)
111 {
112         unsigned long           default_timeout = jiffies + msecs_to_jiffies(3);
113         static unsigned long    last_timer;
114
115         if (timeout == 0)
116                 timeout = default_timeout;
117
118         /* Never idle if active, or when VBUS timeout is not set as host */
119         if (musb->is_active || ((musb->a_wait_bcon == 0)
120                         && (musb->xceiv.state == OTG_STATE_A_WAIT_BCON))) {
121                 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
122                 del_timer(&musb_idle_timer);
123                 last_timer = jiffies;
124                 return;
125         }
126
127         if (time_after(last_timer, timeout)) {
128                 if (!timer_pending(&musb_idle_timer))
129                         last_timer = timeout;
130                 else {
131                         DBG(4, "Longer idle timer already pending, ignoring\n");
132                         return;
133                 }
134         }
135         last_timer = timeout;
136
137         DBG(4, "%s inactive, for idle timer for %lu ms\n",
138                 otg_state_string(musb),
139                 (unsigned long)jiffies_to_msecs(timeout - jiffies));
140         mod_timer(&musb_idle_timer, timeout);
141 }
142
143 void musb_platform_enable(struct musb *musb)
144 {
145 }
146 void musb_platform_disable(struct musb *musb)
147 {
148 }
149 static void omap_vbus_power(struct musb *musb, int is_on, int sleeping)
150 {
151 }
152
153 static void omap_set_vbus(struct musb *musb, int is_on)
154 {
155         u8              devctl;
156         /* HDRC controls CPEN, but beware current surges during device
157          * connect.  They can trigger transient overcurrent conditions
158          * that must be ignored.
159          */
160
161         devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
162
163         if (is_on) {
164                 musb->is_active = 1;
165                 musb->xceiv.default_a = 1;
166                 musb->xceiv.state = OTG_STATE_A_WAIT_VRISE;
167                 devctl |= MUSB_DEVCTL_SESSION;
168
169                 MUSB_HST_MODE(musb);
170         } else {
171                 musb->is_active = 0;
172
173                 /* NOTE:  we're skipping A_WAIT_VFALL -> A_IDLE and
174                  * jumping right to B_IDLE...
175                  */
176
177                 musb->xceiv.default_a = 0;
178                 musb->xceiv.state = OTG_STATE_B_IDLE;
179                 devctl &= ~MUSB_DEVCTL_SESSION;
180
181                 MUSB_DEV_MODE(musb);
182         }
183         musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
184
185         DBG(1, "VBUS %s, devctl %02x "
186                 /* otg %3x conf %08x prcm %08x */ "\n",
187                 otg_state_string(musb),
188                 musb_readb(musb->mregs, MUSB_DEVCTL));
189 }
190 static int omap_set_power(struct otg_transceiver *x, unsigned mA)
191 {
192         return 0;
193 }
194
195 static int omap_set_suspend(struct otg_transceiver *x, int suspend)
196 {
197         if (suspend)
198                 twl4030_phy_suspend(1);
199         else
200                 twl4030_phy_resume();
201         return 0;
202 }
203
204 int musb_platform_resume(struct musb *musb);
205
206 int __init musb_platform_init(struct musb *musb)
207 {
208 #if defined(CONFIG_ARCH_OMAP2430)
209         omap_cfg_reg(AE5_2430_USB0HS_STP);
210         /* get the clock */
211         musb->clock = clk_get((struct device *)musb->controller, "usbhs_ick");
212 #else
213         musb->clock = clk_get((struct device *)musb->controller, "hsotgusb_ick");
214 #endif
215         if(IS_ERR(musb->clock))
216                 return PTR_ERR(musb->clock);
217
218         musb->xceiv.set_suspend = omap_set_suspend;
219         musb_platform_resume(musb);
220
221         OTG_INTERFSEL_REG |= ULPI_12PIN;
222
223         pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
224                         "sysstatus 0x%x, intrfsel 0x%x, simenable  0x%x\n",
225                         OTG_REVISION_REG, OTG_SYSCONFIG_REG, OTG_SYSSTATUS_REG,
226                         OTG_INTERFSEL_REG, OTG_SIMENABLE_REG);
227
228         omap_vbus_power(musb, musb->board_mode == MUSB_HOST, 1);
229
230
231         if (is_host_enabled(musb))
232                 musb->board_set_vbus = omap_set_vbus;
233         if (is_peripheral_enabled(musb))
234                 musb->xceiv.set_power = omap_set_power;
235         musb->a_wait_bcon = MUSB_TIMEOUT_A_WAIT_BCON;
236
237         setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
238
239         return 0;
240 }
241
242 int musb_platform_suspend(struct musb *musb)
243 {
244         /* in any role */
245         OTG_FORCESTDBY_REG &= ~ENABLEFORCE; /* disable MSTANDBY */
246         OTG_SYSCONFIG_REG &= FORCESTDBY;        /* enable force standby */
247         OTG_SYSCONFIG_REG &= ~AUTOIDLE;         /* disable auto idle */
248         OTG_SYSCONFIG_REG |= SMARTIDLE;         /* enable smart idle */
249         OTG_FORCESTDBY_REG |= ENABLEFORCE; /* enable MSTANDBY */
250         OTG_SYSCONFIG_REG |= AUTOIDLE;          /* enable auto idle */
251
252         musb->xceiv.set_suspend(&musb->xceiv, 1);
253         clk_disable(musb->clock);
254         return 0;
255 }
256
257 int musb_platform_resume(struct musb *musb)
258 {
259         clk_enable(musb->clock);
260         musb->xceiv.set_suspend(&musb->xceiv, 0);
261
262         OTG_FORCESTDBY_REG &= ~ENABLEFORCE; /* disable MSTANDBY */
263         OTG_SYSCONFIG_REG |= SMARTSTDBY;        /* enable smart standby */
264         OTG_SYSCONFIG_REG &= ~AUTOIDLE;         /* disable auto idle */
265         OTG_SYSCONFIG_REG |= SMARTIDLE;         /* enable smart idle */
266         OTG_SYSCONFIG_REG |= AUTOIDLE;          /* enable auto idle */
267
268         return 0;
269 }
270
271
272 int musb_platform_exit(struct musb *musb)
273 {
274
275         omap_vbus_power(musb, 0 /*off*/, 1);
276
277         musb_platform_suspend(musb);
278
279         clk_put(musb->clock);
280         musb->clock = 0;
281
282         return 0;
283 }