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> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 30 | #include <linux/init.h> |
| 31 | #include <linux/list.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 32 | #include <linux/io.h> |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 33 | #include <linux/of.h> |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 34 | #include <linux/platform_device.h> |
| 35 | #include <linux/dma-mapping.h> |
Hema HK | 207b0e1 | 2011-02-17 12:07:22 +0530 | [diff] [blame] | 36 | #include <linux/pm_runtime.h> |
| 37 | #include <linux/err.h> |
NeilBrown | 12a19b5 | 2012-08-13 12:32:58 +1000 | [diff] [blame] | 38 | #include <linux/delay.h> |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 39 | #include <linux/usb/musb-omap.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 40 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 41 | #include "musb_core.h" |
| 42 | #include "omap2430.h" |
| 43 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 44 | struct omap2430_glue { |
| 45 | struct device *dev; |
| 46 | struct platform_device *musb; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 47 | enum omap_musb_vbus_id_status status; |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 48 | struct work_struct omap_musb_mailbox_work; |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 49 | u32 __iomem *control_otghs; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 50 | }; |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 51 | #define glue_to_musb(g) platform_get_drvdata(g->musb) |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 52 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 53 | struct omap2430_glue *_glue; |
| 54 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 55 | static struct timer_list musb_idle_timer; |
| 56 | |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 57 | /** |
| 58 | * omap4_usb_phy_mailbox - write to usb otg mailbox |
| 59 | * @glue: struct omap2430_glue * |
| 60 | * @val: the value to be written to the mailbox |
| 61 | * |
| 62 | * On detection of a device (ID pin is grounded), this API should be called |
| 63 | * to set AVALID, VBUSVALID and ID pin is grounded. |
| 64 | * |
| 65 | * When OMAP is connected to a host (OMAP in device mode), this API |
| 66 | * is called to set AVALID, VBUSVALID and ID pin in high impedance. |
| 67 | * |
| 68 | * XXX: This function will be removed once we have a seperate driver for |
| 69 | * control module |
| 70 | */ |
| 71 | static void omap4_usb_phy_mailbox(struct omap2430_glue *glue, u32 val) |
| 72 | { |
| 73 | if (glue->control_otghs) |
| 74 | writel(val, glue->control_otghs); |
| 75 | } |
| 76 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 77 | static void musb_do_idle(unsigned long _musb) |
| 78 | { |
| 79 | struct musb *musb = (void *)_musb; |
| 80 | unsigned long flags; |
| 81 | u8 power; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 82 | u8 devctl; |
| 83 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 84 | spin_lock_irqsave(&musb->lock, flags); |
| 85 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 86 | switch (musb->xceiv->state) { |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 87 | case OTG_STATE_A_WAIT_BCON: |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 88 | |
| 89 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 90 | if (devctl & MUSB_DEVCTL_BDEVICE) { |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 91 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 92 | MUSB_DEV_MODE(musb); |
| 93 | } else { |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 94 | musb->xceiv->state = OTG_STATE_A_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 95 | MUSB_HST_MODE(musb); |
| 96 | } |
| 97 | break; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 98 | case OTG_STATE_A_SUSPEND: |
| 99 | /* finish RESUME signaling? */ |
| 100 | if (musb->port1_status & MUSB_PORT_STAT_RESUME) { |
| 101 | power = musb_readb(musb->mregs, MUSB_POWER); |
| 102 | power &= ~MUSB_POWER_RESUME; |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 103 | dev_dbg(musb->controller, "root port resume stopped, power %02x\n", power); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 104 | musb_writeb(musb->mregs, MUSB_POWER, power); |
| 105 | musb->is_active = 1; |
| 106 | musb->port1_status &= ~(USB_PORT_STAT_SUSPEND |
| 107 | | MUSB_PORT_STAT_RESUME); |
| 108 | musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16; |
| 109 | usb_hcd_poll_rh_status(musb_to_hcd(musb)); |
| 110 | /* NOTE: it might really be A_WAIT_BCON ... */ |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 111 | musb->xceiv->state = OTG_STATE_A_HOST; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 112 | } |
| 113 | break; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 114 | case OTG_STATE_A_HOST: |
| 115 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 116 | if (devctl & MUSB_DEVCTL_BDEVICE) |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 117 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 118 | else |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 119 | musb->xceiv->state = OTG_STATE_A_WAIT_BCON; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 120 | default: |
| 121 | break; |
| 122 | } |
| 123 | spin_unlock_irqrestore(&musb->lock, flags); |
| 124 | } |
| 125 | |
| 126 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 127 | static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 128 | { |
| 129 | unsigned long default_timeout = jiffies + msecs_to_jiffies(3); |
| 130 | static unsigned long last_timer; |
| 131 | |
| 132 | if (timeout == 0) |
| 133 | timeout = default_timeout; |
| 134 | |
| 135 | /* Never idle if active, or when VBUS timeout is not set as host */ |
| 136 | if (musb->is_active || ((musb->a_wait_bcon == 0) |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 137 | && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) { |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 138 | dev_dbg(musb->controller, "%s active, deleting timer\n", |
Anatolij Gustschin | 3df0045 | 2011-05-05 12:11:21 +0200 | [diff] [blame] | 139 | otg_state_string(musb->xceiv->state)); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 140 | del_timer(&musb_idle_timer); |
| 141 | last_timer = jiffies; |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | if (time_after(last_timer, timeout)) { |
| 146 | if (!timer_pending(&musb_idle_timer)) |
| 147 | last_timer = timeout; |
| 148 | else { |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 149 | dev_dbg(musb->controller, "Longer idle timer already pending, ignoring\n"); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 150 | return; |
| 151 | } |
| 152 | } |
| 153 | last_timer = timeout; |
| 154 | |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 155 | dev_dbg(musb->controller, "%s inactive, for idle timer for %lu ms\n", |
Anatolij Gustschin | 3df0045 | 2011-05-05 12:11:21 +0200 | [diff] [blame] | 156 | otg_state_string(musb->xceiv->state), |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 157 | (unsigned long)jiffies_to_msecs(timeout - jiffies)); |
| 158 | mod_timer(&musb_idle_timer, timeout); |
| 159 | } |
| 160 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 161 | static void omap2430_musb_set_vbus(struct musb *musb, int is_on) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 162 | { |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 163 | struct usb_otg *otg = musb->xceiv->otg; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 164 | u8 devctl; |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 165 | unsigned long timeout = jiffies + msecs_to_jiffies(1000); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 166 | /* HDRC controls CPEN, but beware current surges during device |
| 167 | * connect. They can trigger transient overcurrent conditions |
| 168 | * that must be ignored. |
| 169 | */ |
| 170 | |
| 171 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 172 | |
| 173 | if (is_on) { |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 174 | if (musb->xceiv->state == OTG_STATE_A_IDLE) { |
NeilBrown | 12a19b5 | 2012-08-13 12:32:58 +1000 | [diff] [blame] | 175 | int loops = 100; |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 176 | /* start the session */ |
| 177 | devctl |= MUSB_DEVCTL_SESSION; |
| 178 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 179 | /* |
| 180 | * Wait for the musb to set as A device to enable the |
| 181 | * VBUS |
| 182 | */ |
| 183 | while (musb_readb(musb->mregs, MUSB_DEVCTL) & 0x80) { |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 184 | |
NeilBrown | 12a19b5 | 2012-08-13 12:32:58 +1000 | [diff] [blame] | 185 | mdelay(5); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 186 | cpu_relax(); |
| 187 | |
NeilBrown | 12a19b5 | 2012-08-13 12:32:58 +1000 | [diff] [blame] | 188 | if (time_after(jiffies, timeout) |
| 189 | || loops-- <= 0) { |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 190 | dev_err(musb->controller, |
| 191 | "configured as A device timeout"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 192 | break; |
| 193 | } |
| 194 | } |
| 195 | |
Matthias Brugger | 10770c5 | 2012-08-16 13:00:25 +0200 | [diff] [blame] | 196 | if (otg->set_vbus) |
Heikki Krogerus | 6e13c65 | 2012-02-13 13:24:20 +0200 | [diff] [blame] | 197 | otg_set_vbus(otg, 1); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 198 | } else { |
| 199 | musb->is_active = 1; |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 200 | otg->default_a = 1; |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 201 | musb->xceiv->state = OTG_STATE_A_WAIT_VRISE; |
| 202 | devctl |= MUSB_DEVCTL_SESSION; |
| 203 | MUSB_HST_MODE(musb); |
| 204 | } |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 205 | } else { |
| 206 | musb->is_active = 0; |
| 207 | |
| 208 | /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and |
| 209 | * jumping right to B_IDLE... |
| 210 | */ |
| 211 | |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 212 | otg->default_a = 0; |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 213 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 214 | devctl &= ~MUSB_DEVCTL_SESSION; |
| 215 | |
| 216 | MUSB_DEV_MODE(musb); |
| 217 | } |
| 218 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 219 | |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 220 | dev_dbg(musb->controller, "VBUS %s, devctl %02x " |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 221 | /* otg %3x conf %08x prcm %08x */ "\n", |
Anatolij Gustschin | 3df0045 | 2011-05-05 12:11:21 +0200 | [diff] [blame] | 222 | otg_state_string(musb->xceiv->state), |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 223 | musb_readb(musb->mregs, MUSB_DEVCTL)); |
| 224 | } |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 225 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 226 | static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 227 | { |
| 228 | u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 229 | |
| 230 | devctl |= MUSB_DEVCTL_SESSION; |
| 231 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 232 | |
David Brownell | 96a274d | 2008-11-24 13:06:47 +0200 | [diff] [blame] | 233 | return 0; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 234 | } |
| 235 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 236 | static inline void omap2430_low_level_exit(struct musb *musb) |
| 237 | { |
| 238 | u32 l; |
| 239 | |
| 240 | /* in any role */ |
| 241 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 242 | l |= ENABLEFORCE; /* enable MSTANDBY */ |
| 243 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static inline void omap2430_low_level_init(struct musb *musb) |
| 247 | { |
| 248 | u32 l; |
| 249 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 250 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 251 | l &= ~ENABLEFORCE; /* disable MSTANDBY */ |
| 252 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
| 253 | } |
| 254 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 255 | void omap_musb_mailbox(enum omap_musb_vbus_id_status status) |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 256 | { |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 257 | struct omap2430_glue *glue = _glue; |
| 258 | struct musb *musb = glue_to_musb(glue); |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 259 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 260 | glue->status = status; |
| 261 | if (!musb) { |
| 262 | dev_err(glue->dev, "musb core is not yet ready\n"); |
| 263 | return; |
| 264 | } |
| 265 | |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 266 | schedule_work(&glue->omap_musb_mailbox_work); |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 267 | } |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 268 | EXPORT_SYMBOL_GPL(omap_musb_mailbox); |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 269 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 270 | static void omap_musb_set_mailbox(struct omap2430_glue *glue) |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 271 | { |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 272 | u32 val; |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 273 | struct musb *musb = glue_to_musb(glue); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 274 | struct device *dev = musb->controller; |
| 275 | struct musb_hdrc_platform_data *pdata = dev->platform_data; |
| 276 | struct omap_musb_board_data *data = pdata->board_data; |
Kishon Vijay Abraham I | c83a854 | 2012-06-22 17:40:53 +0530 | [diff] [blame] | 277 | struct usb_otg *otg = musb->xceiv->otg; |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 278 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 279 | switch (glue->status) { |
| 280 | case OMAP_MUSB_ID_GROUND: |
| 281 | dev_dbg(dev, "ID GND\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 282 | |
Kishon Vijay Abraham I | c83a854 | 2012-06-22 17:40:53 +0530 | [diff] [blame] | 283 | otg->default_a = true; |
| 284 | musb->xceiv->state = OTG_STATE_A_IDLE; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 285 | musb->xceiv->last_event = USB_EVENT_ID; |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 286 | if (musb->gadget_driver) { |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 287 | pm_runtime_get_sync(dev); |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 288 | val = AVALID | VBUSVALID; |
| 289 | omap4_usb_phy_mailbox(glue, val); |
Hema HK | 70045c5 | 2011-02-28 15:05:29 +0530 | [diff] [blame] | 290 | omap2430_musb_set_vbus(musb, 1); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 291 | } |
| 292 | break; |
| 293 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 294 | case OMAP_MUSB_VBUS_VALID: |
| 295 | dev_dbg(dev, "VBUS Connect\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 296 | |
Kishon Vijay Abraham I | c83a854 | 2012-06-22 17:40:53 +0530 | [diff] [blame] | 297 | otg->default_a = false; |
| 298 | musb->xceiv->state = OTG_STATE_B_IDLE; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 299 | musb->xceiv->last_event = USB_EVENT_VBUS; |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 300 | if (musb->gadget_driver) |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 301 | pm_runtime_get_sync(dev); |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 302 | val = IDDIG | AVALID | VBUSVALID; |
| 303 | omap4_usb_phy_mailbox(glue, val); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 304 | break; |
| 305 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 306 | case OMAP_MUSB_ID_FLOAT: |
| 307 | case OMAP_MUSB_VBUS_OFF: |
| 308 | dev_dbg(dev, "VBUS Disconnect\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 309 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 310 | musb->xceiv->last_event = USB_EVENT_NONE; |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 311 | if (musb->gadget_driver) { |
| 312 | pm_runtime_mark_last_busy(dev); |
| 313 | pm_runtime_put_autosuspend(dev); |
| 314 | } |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 315 | |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 316 | if (data->interface_type == MUSB_INTERFACE_UTMI) { |
Heikki Krogerus | 6e13c65 | 2012-02-13 13:24:20 +0200 | [diff] [blame] | 317 | if (musb->xceiv->otg->set_vbus) |
| 318 | otg_set_vbus(musb->xceiv->otg, 0); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 319 | } |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 320 | val = SESSEND | IDDIG; |
| 321 | omap4_usb_phy_mailbox(glue, val); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 322 | break; |
| 323 | default: |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 324 | dev_dbg(dev, "ID float\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 325 | } |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 326 | } |
| 327 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 328 | |
| 329 | static void omap_musb_mailbox_work(struct work_struct *mailbox_work) |
| 330 | { |
| 331 | struct omap2430_glue *glue = container_of(mailbox_work, |
| 332 | struct omap2430_glue, omap_musb_mailbox_work); |
| 333 | omap_musb_set_mailbox(glue); |
| 334 | } |
| 335 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 336 | static int omap2430_musb_init(struct musb *musb) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 337 | { |
Shubhrajyoti D | ad57969 | 2012-03-22 12:48:06 +0530 | [diff] [blame] | 338 | u32 l; |
| 339 | int status = 0; |
Hema Kalliguddi | ea65df5 | 2010-09-22 19:27:40 -0500 | [diff] [blame] | 340 | struct device *dev = musb->controller; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 341 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
Hema Kalliguddi | ea65df5 | 2010-09-22 19:27:40 -0500 | [diff] [blame] | 342 | struct musb_hdrc_platform_data *plat = dev->platform_data; |
| 343 | struct omap_musb_board_data *data = plat->board_data; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 344 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 345 | /* We require some kind of external transceiver, hooked |
| 346 | * up through ULPI. TWL4030-family PMICs include one, |
| 347 | * which needs a driver, drivers aren't always needed. |
| 348 | */ |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 349 | musb->xceiv = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2); |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 350 | if (IS_ERR_OR_NULL(musb->xceiv)) { |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 351 | pr_err("HS USB OTG: no transceiver configured\n"); |
| 352 | return -ENODEV; |
| 353 | } |
| 354 | |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 355 | status = pm_runtime_get_sync(dev); |
| 356 | if (status < 0) { |
Shubhrajyoti D | ad57969 | 2012-03-22 12:48:06 +0530 | [diff] [blame] | 357 | dev_err(dev, "pm_runtime_get_sync FAILED %d\n", status); |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 358 | goto err1; |
| 359 | } |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 360 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 361 | l = musb_readl(musb->mregs, OTG_INTERFSEL); |
Maulik Mankad | de2e1b0 | 2010-03-12 10:29:07 +0200 | [diff] [blame] | 362 | |
| 363 | if (data->interface_type == MUSB_INTERFACE_UTMI) { |
| 364 | /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */ |
| 365 | l &= ~ULPI_12PIN; /* Disable ULPI */ |
| 366 | l |= UTMI_8BIT; /* Enable UTMI */ |
| 367 | } else { |
| 368 | l |= ULPI_12PIN; |
| 369 | } |
| 370 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 371 | musb_writel(musb->mregs, OTG_INTERFSEL, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 372 | |
| 373 | pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, " |
| 374 | "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n", |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 375 | musb_readl(musb->mregs, OTG_REVISION), |
| 376 | musb_readl(musb->mregs, OTG_SYSCONFIG), |
| 377 | musb_readl(musb->mregs, OTG_SYSSTATUS), |
| 378 | musb_readl(musb->mregs, OTG_INTERFSEL), |
| 379 | musb_readl(musb->mregs, OTG_SIMENABLE)); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 380 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 381 | setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb); |
| 382 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 383 | if (glue->status != OMAP_MUSB_UNKNOWN) |
| 384 | omap_musb_set_mailbox(glue); |
| 385 | |
Grazvydas Ignotas | c04352a | 2012-02-04 19:43:51 +0200 | [diff] [blame] | 386 | pm_runtime_put_noidle(musb->controller); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 387 | return 0; |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 388 | |
| 389 | err1: |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 390 | return status; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 391 | } |
| 392 | |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 393 | static void omap2430_musb_enable(struct musb *musb) |
| 394 | { |
| 395 | u8 devctl; |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 396 | u32 val; |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 397 | unsigned long timeout = jiffies + msecs_to_jiffies(1000); |
| 398 | struct device *dev = musb->controller; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 399 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 400 | struct musb_hdrc_platform_data *pdata = dev->platform_data; |
| 401 | struct omap_musb_board_data *data = pdata->board_data; |
| 402 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 403 | switch (glue->status) { |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 404 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 405 | case OMAP_MUSB_ID_GROUND: |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 406 | val = AVALID | VBUSVALID; |
| 407 | omap4_usb_phy_mailbox(glue, val); |
Felipe Contreras | 08dec56 | 2011-12-19 22:17:50 +0200 | [diff] [blame] | 408 | if (data->interface_type != MUSB_INTERFACE_UTMI) |
| 409 | break; |
| 410 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 411 | /* start the session */ |
| 412 | devctl |= MUSB_DEVCTL_SESSION; |
| 413 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 414 | while (musb_readb(musb->mregs, MUSB_DEVCTL) & |
| 415 | MUSB_DEVCTL_BDEVICE) { |
| 416 | cpu_relax(); |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 417 | |
Felipe Contreras | 08dec56 | 2011-12-19 22:17:50 +0200 | [diff] [blame] | 418 | if (time_after(jiffies, timeout)) { |
| 419 | dev_err(dev, "configured as A device timeout"); |
| 420 | break; |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | break; |
| 424 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 425 | case OMAP_MUSB_VBUS_VALID: |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 426 | val = IDDIG | AVALID | VBUSVALID; |
| 427 | omap4_usb_phy_mailbox(glue, val); |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 428 | break; |
| 429 | |
| 430 | default: |
| 431 | break; |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | static void omap2430_musb_disable(struct musb *musb) |
| 436 | { |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 437 | u32 val; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 438 | struct device *dev = musb->controller; |
| 439 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
| 440 | |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 441 | if (glue->status != OMAP_MUSB_UNKNOWN) { |
| 442 | val = SESSEND | IDDIG; |
| 443 | omap4_usb_phy_mailbox(glue, val); |
| 444 | } |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 445 | } |
| 446 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 447 | static int omap2430_musb_exit(struct musb *musb) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 448 | { |
Johan Hovold | 19b9a83 | 2011-02-11 16:57:08 +0100 | [diff] [blame] | 449 | del_timer_sync(&musb_idle_timer); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 450 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 451 | omap2430_low_level_exit(musb); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 452 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 453 | return 0; |
| 454 | } |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 455 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 456 | static const struct musb_platform_ops omap2430_ops = { |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 457 | .init = omap2430_musb_init, |
| 458 | .exit = omap2430_musb_exit, |
| 459 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 460 | .set_mode = omap2430_musb_set_mode, |
| 461 | .try_idle = omap2430_musb_try_idle, |
| 462 | |
| 463 | .set_vbus = omap2430_musb_set_vbus, |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 464 | |
| 465 | .enable = omap2430_musb_enable, |
| 466 | .disable = omap2430_musb_disable, |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 467 | }; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 468 | |
| 469 | static u64 omap2430_dmamask = DMA_BIT_MASK(32); |
| 470 | |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 471 | static int __devinit omap2430_probe(struct platform_device *pdev) |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 472 | { |
| 473 | struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data; |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 474 | struct omap_musb_board_data *data; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 475 | struct platform_device *musb; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 476 | struct omap2430_glue *glue; |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 477 | struct device_node *np = pdev->dev.of_node; |
| 478 | struct musb_hdrc_config *config; |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 479 | struct resource *res; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 480 | int ret = -ENOMEM; |
| 481 | |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 482 | glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL); |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 483 | if (!glue) { |
| 484 | dev_err(&pdev->dev, "failed to allocate glue context\n"); |
| 485 | goto err0; |
| 486 | } |
| 487 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 488 | musb = platform_device_alloc("musb-hdrc", -1); |
| 489 | if (!musb) { |
| 490 | dev_err(&pdev->dev, "failed to allocate musb device\n"); |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 491 | goto err0; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | musb->dev.parent = &pdev->dev; |
| 495 | musb->dev.dma_mask = &omap2430_dmamask; |
| 496 | musb->dev.coherent_dma_mask = omap2430_dmamask; |
| 497 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 498 | glue->dev = &pdev->dev; |
| 499 | glue->musb = musb; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 500 | glue->status = OMAP_MUSB_UNKNOWN; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 501 | |
Kishon Vijay Abraham I | 5ec4059 | 2012-09-11 14:39:39 +0530 | [diff] [blame] | 502 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 503 | |
| 504 | glue->control_otghs = devm_request_and_ioremap(&pdev->dev, res); |
| 505 | if (glue->control_otghs == NULL) |
| 506 | dev_dbg(&pdev->dev, "Failed to obtain control memory\n"); |
| 507 | |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 508 | if (np) { |
| 509 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 510 | if (!pdata) { |
| 511 | dev_err(&pdev->dev, |
| 512 | "failed to allocate musb platfrom data\n"); |
| 513 | ret = -ENOMEM; |
| 514 | goto err1; |
| 515 | } |
| 516 | |
| 517 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); |
| 518 | if (!data) { |
| 519 | dev_err(&pdev->dev, |
| 520 | "failed to allocate musb board data\n"); |
| 521 | ret = -ENOMEM; |
| 522 | goto err1; |
| 523 | } |
| 524 | |
| 525 | config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL); |
| 526 | if (!data) { |
| 527 | dev_err(&pdev->dev, |
| 528 | "failed to allocate musb hdrc config\n"); |
| 529 | goto err1; |
| 530 | } |
| 531 | |
| 532 | of_property_read_u32(np, "mode", (u32 *)&pdata->mode); |
| 533 | of_property_read_u32(np, "interface_type", |
| 534 | (u32 *)&data->interface_type); |
| 535 | of_property_read_u32(np, "num_eps", (u32 *)&config->num_eps); |
| 536 | of_property_read_u32(np, "ram_bits", (u32 *)&config->ram_bits); |
| 537 | of_property_read_u32(np, "power", (u32 *)&pdata->power); |
| 538 | config->multipoint = of_property_read_bool(np, "multipoint"); |
| 539 | |
| 540 | pdata->board_data = data; |
| 541 | pdata->config = config; |
| 542 | } |
| 543 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 544 | pdata->platform_ops = &omap2430_ops; |
| 545 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 546 | platform_set_drvdata(pdev, glue); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 547 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 548 | /* |
| 549 | * REVISIT if we ever have two instances of the wrapper, we will be |
| 550 | * in big trouble |
| 551 | */ |
| 552 | _glue = glue; |
| 553 | |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 554 | INIT_WORK(&glue->omap_musb_mailbox_work, omap_musb_mailbox_work); |
| 555 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 556 | ret = platform_device_add_resources(musb, pdev->resource, |
| 557 | pdev->num_resources); |
| 558 | if (ret) { |
| 559 | dev_err(&pdev->dev, "failed to add resources\n"); |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 560 | goto err1; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | ret = platform_device_add_data(musb, pdata, sizeof(*pdata)); |
| 564 | if (ret) { |
| 565 | dev_err(&pdev->dev, "failed to add platform_data\n"); |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 566 | goto err1; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 567 | } |
| 568 | |
Kishon Vijay Abraham I | 3006dc8 | 2012-03-21 21:30:20 +0530 | [diff] [blame] | 569 | pm_runtime_enable(&pdev->dev); |
| 570 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 571 | ret = platform_device_add(musb); |
| 572 | if (ret) { |
| 573 | dev_err(&pdev->dev, "failed to register musb device\n"); |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 574 | goto err1; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | return 0; |
| 578 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 579 | err1: |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 580 | platform_device_put(musb); |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 581 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 582 | err0: |
| 583 | return ret; |
| 584 | } |
| 585 | |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 586 | static int __devexit omap2430_remove(struct platform_device *pdev) |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 587 | { |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 588 | struct omap2430_glue *glue = platform_get_drvdata(pdev); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 589 | |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 590 | cancel_work_sync(&glue->omap_musb_mailbox_work); |
Kishon Vijay Abraham I | f039df5 | 2012-08-02 15:30:07 +0530 | [diff] [blame] | 591 | platform_device_unregister(glue->musb); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 596 | #ifdef CONFIG_PM |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 597 | |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 598 | static int omap2430_runtime_suspend(struct device *dev) |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 599 | { |
| 600 | struct omap2430_glue *glue = dev_get_drvdata(dev); |
| 601 | struct musb *musb = glue_to_musb(glue); |
| 602 | |
Vladimir Zapolskiy | afb76df | 2011-12-23 18:37:18 +0200 | [diff] [blame] | 603 | if (musb) { |
| 604 | musb->context.otg_interfsel = musb_readl(musb->mregs, |
| 605 | OTG_INTERFSEL); |
Hema HK | e25bec1 | 2011-09-07 09:19:24 -0700 | [diff] [blame] | 606 | |
Vladimir Zapolskiy | afb76df | 2011-12-23 18:37:18 +0200 | [diff] [blame] | 607 | omap2430_low_level_exit(musb); |
| 608 | usb_phy_set_suspend(musb->xceiv, 1); |
| 609 | } |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 610 | |
| 611 | return 0; |
| 612 | } |
| 613 | |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 614 | static int omap2430_runtime_resume(struct device *dev) |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 615 | { |
| 616 | struct omap2430_glue *glue = dev_get_drvdata(dev); |
| 617 | struct musb *musb = glue_to_musb(glue); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 618 | |
Vladimir Zapolskiy | afb76df | 2011-12-23 18:37:18 +0200 | [diff] [blame] | 619 | if (musb) { |
| 620 | omap2430_low_level_init(musb); |
| 621 | musb_writel(musb->mregs, OTG_INTERFSEL, |
| 622 | musb->context.otg_interfsel); |
Hema HK | e25bec1 | 2011-09-07 09:19:24 -0700 | [diff] [blame] | 623 | |
Vladimir Zapolskiy | afb76df | 2011-12-23 18:37:18 +0200 | [diff] [blame] | 624 | usb_phy_set_suspend(musb->xceiv, 0); |
| 625 | } |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 626 | |
| 627 | return 0; |
| 628 | } |
| 629 | |
| 630 | static struct dev_pm_ops omap2430_pm_ops = { |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 631 | .runtime_suspend = omap2430_runtime_suspend, |
| 632 | .runtime_resume = omap2430_runtime_resume, |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 633 | }; |
| 634 | |
| 635 | #define DEV_PM_OPS (&omap2430_pm_ops) |
| 636 | #else |
| 637 | #define DEV_PM_OPS NULL |
| 638 | #endif |
| 639 | |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 640 | #ifdef CONFIG_OF |
| 641 | static const struct of_device_id omap2430_id_table[] = { |
| 642 | { |
| 643 | .compatible = "ti,omap4-musb" |
| 644 | }, |
| 645 | { |
| 646 | .compatible = "ti,omap3-musb" |
| 647 | }, |
| 648 | {}, |
| 649 | }; |
| 650 | MODULE_DEVICE_TABLE(of, omap2430_id_table); |
| 651 | #endif |
| 652 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 653 | static struct platform_driver omap2430_driver = { |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 654 | .probe = omap2430_probe, |
| 655 | .remove = __devexit_p(omap2430_remove), |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 656 | .driver = { |
| 657 | .name = "musb-omap2430", |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 658 | .pm = DEV_PM_OPS, |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame^] | 659 | .of_match_table = of_match_ptr(omap2430_id_table), |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 660 | }, |
| 661 | }; |
| 662 | |
| 663 | MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer"); |
| 664 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); |
| 665 | MODULE_LICENSE("GPL v2"); |
| 666 | |
| 667 | static int __init omap2430_init(void) |
| 668 | { |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 669 | return platform_driver_register(&omap2430_driver); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 670 | } |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 671 | subsys_initcall(omap2430_init); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 672 | |
| 673 | static void __exit omap2430_exit(void) |
| 674 | { |
| 675 | platform_driver_unregister(&omap2430_driver); |
| 676 | } |
| 677 | module_exit(omap2430_exit); |