Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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 |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 6 | * 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> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/clk.h> |
| 34 | #include <linux/io.h> |
| 35 | |
| 36 | #include <asm/mach-types.h> |
Felipe Balbi | 0590d58 | 2008-08-30 19:42:02 +0300 | [diff] [blame] | 37 | #include <mach/hardware.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 38 | #include <plat/mux.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 39 | |
| 40 | #include "musb_core.h" |
| 41 | #include "omap2430.h" |
| 42 | |
| 43 | #ifdef CONFIG_ARCH_OMAP3430 |
| 44 | #define get_cpu_rev() 2 |
| 45 | #endif |
| 46 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 47 | |
| 48 | static struct timer_list musb_idle_timer; |
| 49 | |
| 50 | static void musb_do_idle(unsigned long _musb) |
| 51 | { |
| 52 | struct musb *musb = (void *)_musb; |
| 53 | unsigned long flags; |
Ajay Kumar Gupta | eef767b | 2008-10-29 15:10:38 +0200 | [diff] [blame] | 54 | #ifdef CONFIG_USB_MUSB_HDRC_HCD |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 55 | u8 power; |
Ajay Kumar Gupta | eef767b | 2008-10-29 15:10:38 +0200 | [diff] [blame] | 56 | #endif |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 57 | u8 devctl; |
| 58 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 59 | spin_lock_irqsave(&musb->lock, flags); |
| 60 | |
David Brownell | 71783e0d | 2008-11-24 13:06:49 +0200 | [diff] [blame] | 61 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 62 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 63 | switch (musb->xceiv->state) { |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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) { |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 70 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 71 | MUSB_DEV_MODE(musb); |
| 72 | } else { |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 73 | musb->xceiv->state = OTG_STATE_A_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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 ... */ |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 91 | musb->xceiv->state = OTG_STATE_A_HOST; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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) |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 99 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 100 | else |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 101 | musb->xceiv->state = OTG_STATE_A_WAIT_BCON; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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) |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 120 | && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) { |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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; |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 165 | musb->xceiv->default_a = 1; |
| 166 | musb->xceiv->state = OTG_STATE_A_WAIT_VRISE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 177 | musb->xceiv->default_a = 0; |
| 178 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 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 | } |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 190 | |
| 191 | static int musb_platform_resume(struct musb *musb); |
| 192 | |
David Brownell | 96a274d | 2008-11-24 13:06:47 +0200 | [diff] [blame] | 193 | int musb_platform_set_mode(struct musb *musb, u8 musb_mode) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 194 | { |
| 195 | u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 196 | |
| 197 | devctl |= MUSB_DEVCTL_SESSION; |
| 198 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 199 | |
David Brownell | 96a274d | 2008-11-24 13:06:47 +0200 | [diff] [blame] | 200 | return 0; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | int __init musb_platform_init(struct musb *musb) |
| 204 | { |
| 205 | u32 l; |
| 206 | |
| 207 | #if defined(CONFIG_ARCH_OMAP2430) |
| 208 | omap_cfg_reg(AE5_2430_USB0HS_STP); |
| 209 | #endif |
| 210 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 211 | /* We require some kind of external transceiver, hooked |
| 212 | * up through ULPI. TWL4030-family PMICs include one, |
| 213 | * which needs a driver, drivers aren't always needed. |
| 214 | */ |
| 215 | musb->xceiv = otg_get_transceiver(); |
| 216 | if (!musb->xceiv) { |
| 217 | pr_err("HS USB OTG: no transceiver configured\n"); |
| 218 | return -ENODEV; |
| 219 | } |
| 220 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 221 | musb_platform_resume(musb); |
| 222 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 223 | l = musb_readl(musb->mregs, OTG_SYSCONFIG); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 224 | l &= ~ENABLEWAKEUP; /* disable wakeup */ |
| 225 | l &= ~NOSTDBY; /* remove possible nostdby */ |
| 226 | l |= SMARTSTDBY; /* enable smart standby */ |
| 227 | l &= ~AUTOIDLE; /* disable auto idle */ |
| 228 | l &= ~NOIDLE; /* remove possible noidle */ |
| 229 | l |= SMARTIDLE; /* enable smart idle */ |
Niilo Minkkinen | 9a4b5e3 | 2009-05-18 17:54:16 +0300 | [diff] [blame] | 230 | /* |
| 231 | * MUSB AUTOIDLE don't work in 3430. |
| 232 | * Workaround by Richard Woodruff/TI |
| 233 | */ |
| 234 | if (!cpu_is_omap3430()) |
| 235 | l |= AUTOIDLE; /* enable auto idle */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 236 | musb_writel(musb->mregs, OTG_SYSCONFIG, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 237 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 238 | l = musb_readl(musb->mregs, OTG_INTERFSEL); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 239 | l |= ULPI_12PIN; |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 240 | musb_writel(musb->mregs, OTG_INTERFSEL, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 241 | |
| 242 | pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, " |
| 243 | "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n", |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 244 | musb_readl(musb->mregs, OTG_REVISION), |
| 245 | musb_readl(musb->mregs, OTG_SYSCONFIG), |
| 246 | musb_readl(musb->mregs, OTG_SYSSTATUS), |
| 247 | musb_readl(musb->mregs, OTG_INTERFSEL), |
| 248 | musb_readl(musb->mregs, OTG_SIMENABLE)); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 249 | |
| 250 | omap_vbus_power(musb, musb->board_mode == MUSB_HOST, 1); |
| 251 | |
| 252 | if (is_host_enabled(musb)) |
| 253 | musb->board_set_vbus = omap_set_vbus; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 254 | |
| 255 | setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb); |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
Ajay Kumar Gupta | 4f712e0 | 2010-01-21 15:33:52 +0200 | [diff] [blame] | 260 | #ifdef CONFIG_PM |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 261 | void musb_platform_save_context(struct musb *musb, |
| 262 | struct musb_context_registers *musb_context) |
Ajay Kumar Gupta | 4f712e0 | 2010-01-21 15:33:52 +0200 | [diff] [blame] | 263 | { |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 264 | musb_context->otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG); |
| 265 | musb_context->otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY); |
Ajay Kumar Gupta | 4f712e0 | 2010-01-21 15:33:52 +0200 | [diff] [blame] | 266 | } |
| 267 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 268 | void musb_platform_restore_context(struct musb *musb, |
| 269 | struct musb_context_registers *musb_context) |
Ajay Kumar Gupta | 4f712e0 | 2010-01-21 15:33:52 +0200 | [diff] [blame] | 270 | { |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 271 | musb_writel(musb->mregs, OTG_SYSCONFIG, musb_context->otg_sysconfig); |
| 272 | musb_writel(musb->mregs, OTG_FORCESTDBY, musb_context->otg_forcestandby); |
Ajay Kumar Gupta | 4f712e0 | 2010-01-21 15:33:52 +0200 | [diff] [blame] | 273 | } |
| 274 | #endif |
| 275 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 276 | int musb_platform_suspend(struct musb *musb) |
| 277 | { |
| 278 | u32 l; |
| 279 | |
| 280 | if (!musb->clock) |
| 281 | return 0; |
| 282 | |
| 283 | /* in any role */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 284 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 285 | l |= ENABLEFORCE; /* enable MSTANDBY */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 286 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 287 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 288 | l = musb_readl(musb->mregs, OTG_SYSCONFIG); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 289 | l |= ENABLEWAKEUP; /* enable wakeup */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 290 | musb_writel(musb->mregs, OTG_SYSCONFIG, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 291 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 292 | otg_set_suspend(musb->xceiv, 1); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 293 | |
| 294 | if (musb->set_clock) |
| 295 | musb->set_clock(musb->clock, 0); |
| 296 | else |
| 297 | clk_disable(musb->clock); |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | static int musb_platform_resume(struct musb *musb) |
| 303 | { |
| 304 | u32 l; |
| 305 | |
| 306 | if (!musb->clock) |
| 307 | return 0; |
| 308 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 309 | otg_set_suspend(musb->xceiv, 0); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 310 | |
| 311 | if (musb->set_clock) |
| 312 | musb->set_clock(musb->clock, 1); |
| 313 | else |
| 314 | clk_enable(musb->clock); |
| 315 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 316 | l = musb_readl(musb->mregs, OTG_SYSCONFIG); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 317 | l &= ~ENABLEWAKEUP; /* disable wakeup */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 318 | musb_writel(musb->mregs, OTG_SYSCONFIG, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 319 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 320 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 321 | l &= ~ENABLEFORCE; /* disable MSTANDBY */ |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame^] | 322 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 323 | |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | |
| 328 | int musb_platform_exit(struct musb *musb) |
| 329 | { |
| 330 | |
| 331 | omap_vbus_power(musb, 0 /*off*/, 1); |
| 332 | |
| 333 | musb_platform_suspend(musb); |
| 334 | |
| 335 | clk_put(musb->clock); |
Felipe Balbi | ff85494 | 2009-12-04 15:47:45 +0200 | [diff] [blame] | 336 | musb->clock = NULL; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 337 | |
| 338 | return 0; |
| 339 | } |