Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Texas Instruments DSPS platforms "glue layer" |
| 3 | * |
| 4 | * Copyright (C) 2012, by Texas Instruments |
| 5 | * |
| 6 | * Based on the am35x "glue layer" code. |
| 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 | * musb_dsps.c will be a common file for all the TI DSPS platforms |
| 27 | * such as dm64x, dm36x, dm35x, da8x, am35x and ti81x. |
| 28 | * For now only ti81x is using this and in future davinci.c, am35x.c |
| 29 | * da8xx.c would be merged to this file after testing. |
| 30 | */ |
| 31 | |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/io.h> |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 34 | #include <linux/err.h> |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 35 | #include <linux/platform_device.h> |
| 36 | #include <linux/dma-mapping.h> |
| 37 | #include <linux/pm_runtime.h> |
| 38 | #include <linux/module.h> |
Sebastian Andrzej Siewior | 3fa4d73 | 2013-07-26 12:16:42 +0200 | [diff] [blame] | 39 | #include <linux/usb/usb_phy_gen_xceiv.h> |
Felipe Balbi | e8c4a7a | 2012-10-24 14:26:19 -0700 | [diff] [blame] | 40 | #include <linux/platform_data/usb-omap.h> |
Felipe Balbi | 0f53e48 | 2013-02-06 09:47:58 +0200 | [diff] [blame] | 41 | #include <linux/sizes.h> |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 42 | |
| 43 | #include <linux/of.h> |
| 44 | #include <linux/of_device.h> |
| 45 | #include <linux/of_address.h> |
| 46 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 47 | #include "musb_core.h" |
| 48 | |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 49 | static const struct of_device_id musb_dsps_of_match[]; |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 50 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 51 | /** |
| 52 | * avoid using musb_readx()/musb_writex() as glue layer should not be |
| 53 | * dependent on musb core layer symbols. |
| 54 | */ |
| 55 | static inline u8 dsps_readb(const void __iomem *addr, unsigned offset) |
| 56 | { return __raw_readb(addr + offset); } |
| 57 | |
| 58 | static inline u32 dsps_readl(const void __iomem *addr, unsigned offset) |
| 59 | { return __raw_readl(addr + offset); } |
| 60 | |
| 61 | static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data) |
| 62 | { __raw_writeb(data, addr + offset); } |
| 63 | |
| 64 | static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data) |
| 65 | { __raw_writel(data, addr + offset); } |
| 66 | |
| 67 | /** |
| 68 | * DSPS musb wrapper register offset. |
| 69 | * FIXME: This should be expanded to have all the wrapper registers from TI DSPS |
| 70 | * musb ips. |
| 71 | */ |
| 72 | struct dsps_musb_wrapper { |
| 73 | u16 revision; |
| 74 | u16 control; |
| 75 | u16 status; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 76 | u16 epintr_set; |
| 77 | u16 epintr_clear; |
| 78 | u16 epintr_status; |
| 79 | u16 coreintr_set; |
| 80 | u16 coreintr_clear; |
| 81 | u16 coreintr_status; |
| 82 | u16 phy_utmi; |
| 83 | u16 mode; |
| 84 | |
| 85 | /* bit positions for control */ |
| 86 | unsigned reset:5; |
| 87 | |
| 88 | /* bit positions for interrupt */ |
| 89 | unsigned usb_shift:5; |
| 90 | u32 usb_mask; |
| 91 | u32 usb_bitmap; |
| 92 | unsigned drvvbus:5; |
| 93 | |
| 94 | unsigned txep_shift:5; |
| 95 | u32 txep_mask; |
| 96 | u32 txep_bitmap; |
| 97 | |
| 98 | unsigned rxep_shift:5; |
| 99 | u32 rxep_mask; |
| 100 | u32 rxep_bitmap; |
| 101 | |
| 102 | /* bit positions for phy_utmi */ |
| 103 | unsigned otg_disable:5; |
| 104 | |
| 105 | /* bit positions for mode */ |
| 106 | unsigned iddig:5; |
| 107 | /* miscellaneous stuff */ |
| 108 | u32 musb_core_offset; |
| 109 | u8 poll_seconds; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 110 | /* number of musb instances */ |
| 111 | u8 instances; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | /** |
| 115 | * DSPS glue structure. |
| 116 | */ |
| 117 | struct dsps_glue { |
| 118 | struct device *dev; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 119 | struct platform_device *musb[2]; /* child musb pdev */ |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 120 | const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */ |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 121 | struct timer_list timer[2]; /* otg_workaround timer */ |
| 122 | unsigned long last_timer[2]; /* last timer data for each instance */ |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /** |
| 126 | * dsps_musb_enable - enable interrupts |
| 127 | */ |
| 128 | static void dsps_musb_enable(struct musb *musb) |
| 129 | { |
| 130 | struct device *dev = musb->controller; |
| 131 | struct platform_device *pdev = to_platform_device(dev->parent); |
| 132 | struct dsps_glue *glue = platform_get_drvdata(pdev); |
| 133 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
| 134 | void __iomem *reg_base = musb->ctrl_base; |
| 135 | u32 epmask, coremask; |
| 136 | |
| 137 | /* Workaround: setup IRQs through both register sets. */ |
| 138 | epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) | |
| 139 | ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift); |
| 140 | coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF); |
| 141 | |
| 142 | dsps_writel(reg_base, wrp->epintr_set, epmask); |
| 143 | dsps_writel(reg_base, wrp->coreintr_set, coremask); |
| 144 | /* Force the DRVVBUS IRQ so we can start polling for ID change. */ |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 145 | dsps_writel(reg_base, wrp->coreintr_set, |
| 146 | (1 << wrp->drvvbus) << wrp->usb_shift); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /** |
| 150 | * dsps_musb_disable - disable HDRC and flush interrupts |
| 151 | */ |
| 152 | static void dsps_musb_disable(struct musb *musb) |
| 153 | { |
| 154 | struct device *dev = musb->controller; |
| 155 | struct platform_device *pdev = to_platform_device(dev->parent); |
| 156 | struct dsps_glue *glue = platform_get_drvdata(pdev); |
| 157 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
| 158 | void __iomem *reg_base = musb->ctrl_base; |
| 159 | |
| 160 | dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap); |
| 161 | dsps_writel(reg_base, wrp->epintr_clear, |
| 162 | wrp->txep_bitmap | wrp->rxep_bitmap); |
| 163 | dsps_writeb(musb->mregs, MUSB_DEVCTL, 0); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | static void otg_timer(unsigned long _musb) |
| 167 | { |
| 168 | struct musb *musb = (void *)_musb; |
| 169 | void __iomem *mregs = musb->mregs; |
| 170 | struct device *dev = musb->controller; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 171 | struct platform_device *pdev = to_platform_device(dev); |
| 172 | struct dsps_glue *glue = dev_get_drvdata(dev->parent); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 173 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
| 174 | u8 devctl; |
| 175 | unsigned long flags; |
| 176 | |
| 177 | /* |
| 178 | * We poll because DSPS IP's won't expose several OTG-critical |
| 179 | * status change events (from the transceiver) otherwise. |
| 180 | */ |
| 181 | devctl = dsps_readb(mregs, MUSB_DEVCTL); |
| 182 | dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl, |
Felipe Balbi | 42c0bf1 | 2013-03-07 10:39:57 +0200 | [diff] [blame] | 183 | usb_otg_state_string(musb->xceiv->state)); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 184 | |
| 185 | spin_lock_irqsave(&musb->lock, flags); |
| 186 | switch (musb->xceiv->state) { |
| 187 | case OTG_STATE_A_WAIT_BCON: |
| 188 | devctl &= ~MUSB_DEVCTL_SESSION; |
| 189 | dsps_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 190 | |
| 191 | devctl = dsps_readb(musb->mregs, MUSB_DEVCTL); |
| 192 | if (devctl & MUSB_DEVCTL_BDEVICE) { |
| 193 | musb->xceiv->state = OTG_STATE_B_IDLE; |
| 194 | MUSB_DEV_MODE(musb); |
| 195 | } else { |
| 196 | musb->xceiv->state = OTG_STATE_A_IDLE; |
| 197 | MUSB_HST_MODE(musb); |
| 198 | } |
| 199 | break; |
| 200 | case OTG_STATE_A_WAIT_VFALL: |
| 201 | musb->xceiv->state = OTG_STATE_A_WAIT_VRISE; |
| 202 | dsps_writel(musb->ctrl_base, wrp->coreintr_set, |
| 203 | MUSB_INTR_VBUSERROR << wrp->usb_shift); |
| 204 | break; |
| 205 | case OTG_STATE_B_IDLE: |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 206 | devctl = dsps_readb(mregs, MUSB_DEVCTL); |
| 207 | if (devctl & MUSB_DEVCTL_BDEVICE) |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 208 | mod_timer(&glue->timer[pdev->id], |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 209 | jiffies + wrp->poll_seconds * HZ); |
| 210 | else |
| 211 | musb->xceiv->state = OTG_STATE_A_IDLE; |
| 212 | break; |
| 213 | default: |
| 214 | break; |
| 215 | } |
| 216 | spin_unlock_irqrestore(&musb->lock, flags); |
| 217 | } |
| 218 | |
| 219 | static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout) |
| 220 | { |
| 221 | struct device *dev = musb->controller; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 222 | struct platform_device *pdev = to_platform_device(dev); |
| 223 | struct dsps_glue *glue = dev_get_drvdata(dev->parent); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 224 | |
| 225 | if (timeout == 0) |
| 226 | timeout = jiffies + msecs_to_jiffies(3); |
| 227 | |
| 228 | /* Never idle if active, or when VBUS timeout is not set as host */ |
| 229 | if (musb->is_active || (musb->a_wait_bcon == 0 && |
| 230 | musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) { |
| 231 | dev_dbg(musb->controller, "%s active, deleting timer\n", |
Felipe Balbi | 42c0bf1 | 2013-03-07 10:39:57 +0200 | [diff] [blame] | 232 | usb_otg_state_string(musb->xceiv->state)); |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 233 | del_timer(&glue->timer[pdev->id]); |
| 234 | glue->last_timer[pdev->id] = jiffies; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 235 | return; |
| 236 | } |
| 237 | |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 238 | if (time_after(glue->last_timer[pdev->id], timeout) && |
| 239 | timer_pending(&glue->timer[pdev->id])) { |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 240 | dev_dbg(musb->controller, |
| 241 | "Longer idle timer already pending, ignoring...\n"); |
| 242 | return; |
| 243 | } |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 244 | glue->last_timer[pdev->id] = timeout; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 245 | |
| 246 | dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n", |
Felipe Balbi | 42c0bf1 | 2013-03-07 10:39:57 +0200 | [diff] [blame] | 247 | usb_otg_state_string(musb->xceiv->state), |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 248 | jiffies_to_msecs(timeout - jiffies)); |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 249 | mod_timer(&glue->timer[pdev->id], timeout); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static irqreturn_t dsps_interrupt(int irq, void *hci) |
| 253 | { |
| 254 | struct musb *musb = hci; |
| 255 | void __iomem *reg_base = musb->ctrl_base; |
| 256 | struct device *dev = musb->controller; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 257 | struct platform_device *pdev = to_platform_device(dev); |
| 258 | struct dsps_glue *glue = dev_get_drvdata(dev->parent); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 259 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
| 260 | unsigned long flags; |
| 261 | irqreturn_t ret = IRQ_NONE; |
| 262 | u32 epintr, usbintr; |
| 263 | |
| 264 | spin_lock_irqsave(&musb->lock, flags); |
| 265 | |
| 266 | /* Get endpoint interrupts */ |
| 267 | epintr = dsps_readl(reg_base, wrp->epintr_status); |
| 268 | musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift; |
| 269 | musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift; |
| 270 | |
| 271 | if (epintr) |
| 272 | dsps_writel(reg_base, wrp->epintr_status, epintr); |
| 273 | |
| 274 | /* Get usb core interrupts */ |
| 275 | usbintr = dsps_readl(reg_base, wrp->coreintr_status); |
| 276 | if (!usbintr && !epintr) |
Sebastian Andrzej Siewior | 9be73ba | 2013-07-26 11:11:38 +0200 | [diff] [blame] | 277 | goto out; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 278 | |
| 279 | musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift; |
| 280 | if (usbintr) |
| 281 | dsps_writel(reg_base, wrp->coreintr_status, usbintr); |
| 282 | |
| 283 | dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n", |
| 284 | usbintr, epintr); |
| 285 | /* |
| 286 | * DRVVBUS IRQs are the only proxy we have (a very poor one!) for |
| 287 | * DSPS IP's missing ID change IRQ. We need an ID change IRQ to |
| 288 | * switch appropriately between halves of the OTG state machine. |
| 289 | * Managing DEVCTL.SESSION per Mentor docs requires that we know its |
| 290 | * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set. |
| 291 | * Also, DRVVBUS pulses for SRP (but not at 5V) ... |
| 292 | */ |
Ravi Babu | 96449f0 | 2013-04-02 13:21:54 +0530 | [diff] [blame] | 293 | if (is_host_active(musb) && usbintr & MUSB_INTR_BABBLE) |
Masanari Iida | 984e833 | 2012-11-01 00:03:51 +0900 | [diff] [blame] | 294 | pr_info("CAUTION: musb: Babble Interrupt Occurred\n"); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 295 | |
| 296 | if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) { |
| 297 | int drvvbus = dsps_readl(reg_base, wrp->status); |
| 298 | void __iomem *mregs = musb->mregs; |
| 299 | u8 devctl = dsps_readb(mregs, MUSB_DEVCTL); |
| 300 | int err; |
| 301 | |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 302 | err = musb->int_usb & MUSB_INTR_VBUSERROR; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 303 | if (err) { |
| 304 | /* |
| 305 | * The Mentor core doesn't debounce VBUS as needed |
| 306 | * to cope with device connect current spikes. This |
| 307 | * means it's not uncommon for bus-powered devices |
| 308 | * to get VBUS errors during enumeration. |
| 309 | * |
| 310 | * This is a workaround, but newer RTL from Mentor |
| 311 | * seems to allow a better one: "re"-starting sessions |
| 312 | * without waiting for VBUS to stop registering in |
| 313 | * devctl. |
| 314 | */ |
| 315 | musb->int_usb &= ~MUSB_INTR_VBUSERROR; |
| 316 | musb->xceiv->state = OTG_STATE_A_WAIT_VFALL; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 317 | mod_timer(&glue->timer[pdev->id], |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 318 | jiffies + wrp->poll_seconds * HZ); |
| 319 | WARNING("VBUS error workaround (delay coming)\n"); |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 320 | } else if (drvvbus) { |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 321 | musb->is_active = 1; |
| 322 | MUSB_HST_MODE(musb); |
| 323 | musb->xceiv->otg->default_a = 1; |
| 324 | musb->xceiv->state = OTG_STATE_A_WAIT_VRISE; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 325 | del_timer(&glue->timer[pdev->id]); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 326 | } else { |
| 327 | musb->is_active = 0; |
| 328 | MUSB_DEV_MODE(musb); |
| 329 | musb->xceiv->otg->default_a = 0; |
| 330 | musb->xceiv->state = OTG_STATE_B_IDLE; |
| 331 | } |
| 332 | |
| 333 | /* NOTE: this must complete power-on within 100 ms. */ |
| 334 | dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n", |
| 335 | drvvbus ? "on" : "off", |
Felipe Balbi | 42c0bf1 | 2013-03-07 10:39:57 +0200 | [diff] [blame] | 336 | usb_otg_state_string(musb->xceiv->state), |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 337 | err ? " ERROR" : "", |
| 338 | devctl); |
| 339 | ret = IRQ_HANDLED; |
| 340 | } |
| 341 | |
| 342 | if (musb->int_tx || musb->int_rx || musb->int_usb) |
| 343 | ret |= musb_interrupt(musb); |
| 344 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 345 | /* Poll for ID change */ |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 346 | if (musb->xceiv->state == OTG_STATE_B_IDLE) |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 347 | mod_timer(&glue->timer[pdev->id], |
| 348 | jiffies + wrp->poll_seconds * HZ); |
Sebastian Andrzej Siewior | 9be73ba | 2013-07-26 11:11:38 +0200 | [diff] [blame] | 349 | out: |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 350 | spin_unlock_irqrestore(&musb->lock, flags); |
| 351 | |
| 352 | return ret; |
| 353 | } |
| 354 | |
| 355 | static int dsps_musb_init(struct musb *musb) |
| 356 | { |
| 357 | struct device *dev = musb->controller; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 358 | struct platform_device *pdev = to_platform_device(dev); |
| 359 | struct dsps_glue *glue = dev_get_drvdata(dev->parent); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 360 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 361 | void __iomem *reg_base = musb->ctrl_base; |
| 362 | u32 rev, val; |
| 363 | int status; |
| 364 | |
| 365 | /* mentor core register starts at offset of 0x400 from musb base */ |
| 366 | musb->mregs += wrp->musb_core_offset; |
| 367 | |
Afzal Mohammed | d755422 | 2012-11-06 20:47:24 +0530 | [diff] [blame] | 368 | /* NOP driver needs change if supporting dual instance */ |
Sebastian Andrzej Siewior | e96bdc3 | 2013-07-05 12:33:33 +0200 | [diff] [blame^] | 369 | musb->xceiv = devm_usb_get_phy_by_phandle(glue->dev, "phys", 0); |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 370 | if (IS_ERR_OR_NULL(musb->xceiv)) |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 371 | return -EPROBE_DEFER; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 372 | |
| 373 | /* Returns zero if e.g. not clocked */ |
| 374 | rev = dsps_readl(reg_base, wrp->revision); |
| 375 | if (!rev) { |
| 376 | status = -ENODEV; |
| 377 | goto err0; |
| 378 | } |
| 379 | |
Sebastian Andrzej Siewior | 7557a57 | 2013-07-22 20:09:52 +0200 | [diff] [blame] | 380 | usb_phy_init(musb->xceiv); |
| 381 | |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 382 | setup_timer(&glue->timer[pdev->id], otg_timer, (unsigned long) musb); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 383 | |
| 384 | /* Reset the musb */ |
| 385 | dsps_writel(reg_base, wrp->control, (1 << wrp->reset)); |
| 386 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 387 | musb->isr = dsps_interrupt; |
| 388 | |
| 389 | /* reset the otgdisable bit, needed for host mode to work */ |
| 390 | val = dsps_readl(reg_base, wrp->phy_utmi); |
| 391 | val &= ~(1 << wrp->otg_disable); |
| 392 | dsps_writel(musb->ctrl_base, wrp->phy_utmi, val); |
| 393 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 394 | return 0; |
| 395 | err0: |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 396 | return status; |
| 397 | } |
| 398 | |
| 399 | static int dsps_musb_exit(struct musb *musb) |
| 400 | { |
| 401 | struct device *dev = musb->controller; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 402 | struct platform_device *pdev = to_platform_device(dev); |
| 403 | struct dsps_glue *glue = dev_get_drvdata(dev->parent); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 404 | |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 405 | del_timer_sync(&glue->timer[pdev->id]); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 406 | |
Sebastian Andrzej Siewior | 7557a57 | 2013-07-22 20:09:52 +0200 | [diff] [blame] | 407 | usb_phy_shutdown(musb->xceiv); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | static struct musb_platform_ops dsps_ops = { |
| 412 | .init = dsps_musb_init, |
| 413 | .exit = dsps_musb_exit, |
| 414 | |
| 415 | .enable = dsps_musb_enable, |
| 416 | .disable = dsps_musb_disable, |
| 417 | |
| 418 | .try_idle = dsps_musb_try_idle, |
| 419 | }; |
| 420 | |
| 421 | static u64 musb_dmamask = DMA_BIT_MASK(32); |
| 422 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 423 | static int dsps_create_musb_pdev(struct dsps_glue *glue, u8 id) |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 424 | { |
| 425 | struct device *dev = glue->dev; |
| 426 | struct platform_device *pdev = to_platform_device(dev); |
Jingoo Han | c1a7d67 | 2013-07-30 17:03:12 +0900 | [diff] [blame] | 427 | struct musb_hdrc_platform_data *pdata = dev_get_platdata(dev); |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 428 | struct device_node *np = pdev->dev.of_node; |
| 429 | struct musb_hdrc_config *config; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 430 | struct platform_device *musb; |
| 431 | struct resource *res; |
| 432 | struct resource resources[2]; |
Daniel Mack | ca749b2 | 2012-10-17 22:17:35 +0200 | [diff] [blame] | 433 | char res_name[11]; |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 434 | int ret; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 435 | |
Afzal Mohammed | 3e594b1 | 2012-11-02 22:02:41 +0530 | [diff] [blame] | 436 | /* first resource is for usbss, so start index from 1 */ |
| 437 | res = platform_get_resource(pdev, IORESOURCE_MEM, id + 1); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 438 | if (!res) { |
Afzal Mohammed | 3e594b1 | 2012-11-02 22:02:41 +0530 | [diff] [blame] | 439 | dev_err(dev, "failed to get memory for instance %d\n", id); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 440 | ret = -ENODEV; |
| 441 | goto err0; |
| 442 | } |
| 443 | res->parent = NULL; |
| 444 | resources[0] = *res; |
| 445 | |
Afzal Mohammed | 3e594b1 | 2012-11-02 22:02:41 +0530 | [diff] [blame] | 446 | /* first resource is for usbss, so start index from 1 */ |
| 447 | res = platform_get_resource(pdev, IORESOURCE_IRQ, id + 1); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 448 | if (!res) { |
Afzal Mohammed | 3e594b1 | 2012-11-02 22:02:41 +0530 | [diff] [blame] | 449 | dev_err(dev, "failed to get irq for instance %d\n", id); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 450 | ret = -ENODEV; |
| 451 | goto err0; |
| 452 | } |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 453 | res->parent = NULL; |
| 454 | resources[1] = *res; |
Ajay Kumar Gupta | 3bb5534 | 2012-07-03 17:37:10 +0530 | [diff] [blame] | 455 | resources[1].name = "mc"; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 456 | |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 457 | /* allocate the child platform device */ |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 458 | musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 459 | if (!musb) { |
| 460 | dev_err(dev, "failed to allocate musb device\n"); |
| 461 | ret = -ENOMEM; |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 462 | goto err0; |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 463 | } |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 464 | |
| 465 | musb->dev.parent = dev; |
| 466 | musb->dev.dma_mask = &musb_dmamask; |
| 467 | musb->dev.coherent_dma_mask = musb_dmamask; |
| 468 | |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 469 | glue->musb[id] = musb; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 470 | |
| 471 | ret = platform_device_add_resources(musb, resources, 2); |
| 472 | if (ret) { |
| 473 | dev_err(dev, "failed to add resources\n"); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 474 | goto err2; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 475 | } |
| 476 | |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 477 | if (np) { |
| 478 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 479 | if (!pdata) { |
| 480 | dev_err(&pdev->dev, |
Masanari Iida | 8b513d0 | 2013-05-21 23:13:12 +0900 | [diff] [blame] | 481 | "failed to allocate musb platform data\n"); |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 482 | ret = -ENOMEM; |
| 483 | goto err2; |
| 484 | } |
| 485 | |
| 486 | config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL); |
| 487 | if (!config) { |
| 488 | dev_err(&pdev->dev, |
| 489 | "failed to allocate musb hdrc config\n"); |
Wei Yongjun | b25e5f1 | 2013-05-07 19:47:44 +0800 | [diff] [blame] | 490 | ret = -ENOMEM; |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 491 | goto err2; |
| 492 | } |
| 493 | |
| 494 | of_property_read_u32(np, "num-eps", (u32 *)&config->num_eps); |
| 495 | of_property_read_u32(np, "ram-bits", (u32 *)&config->ram_bits); |
Daniel Mack | ca749b2 | 2012-10-17 22:17:35 +0200 | [diff] [blame] | 496 | snprintf(res_name, sizeof(res_name), "port%d-mode", id); |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 497 | of_property_read_u32(np, res_name, (u32 *)&pdata->mode); |
| 498 | of_property_read_u32(np, "power", (u32 *)&pdata->power); |
| 499 | config->multipoint = of_property_read_bool(np, "multipoint"); |
| 500 | |
| 501 | pdata->config = config; |
| 502 | } |
| 503 | |
| 504 | pdata->platform_ops = &dsps_ops; |
| 505 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 506 | ret = platform_device_add_data(musb, pdata, sizeof(*pdata)); |
| 507 | if (ret) { |
| 508 | dev_err(dev, "failed to add platform_data\n"); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 509 | goto err2; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | ret = platform_device_add(musb); |
| 513 | if (ret) { |
| 514 | dev_err(dev, "failed to register musb device\n"); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 515 | goto err2; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | return 0; |
| 519 | |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 520 | err2: |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 521 | platform_device_put(musb); |
| 522 | err0: |
| 523 | return ret; |
| 524 | } |
| 525 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 526 | static int dsps_probe(struct platform_device *pdev) |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 527 | { |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 528 | const struct of_device_id *match; |
| 529 | const struct dsps_musb_wrapper *wrp; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 530 | struct dsps_glue *glue; |
| 531 | struct resource *iomem; |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 532 | int ret, i; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 533 | |
Felipe Balbi | cc50603 | 2013-02-06 09:57:18 +0200 | [diff] [blame] | 534 | match = of_match_node(musb_dsps_of_match, pdev->dev.of_node); |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 535 | if (!match) { |
| 536 | dev_err(&pdev->dev, "fail to get matching of_match struct\n"); |
| 537 | ret = -EINVAL; |
| 538 | goto err0; |
| 539 | } |
| 540 | wrp = match->data; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 541 | |
| 542 | /* allocate glue */ |
| 543 | glue = kzalloc(sizeof(*glue), GFP_KERNEL); |
| 544 | if (!glue) { |
| 545 | dev_err(&pdev->dev, "unable to allocate glue memory\n"); |
| 546 | ret = -ENOMEM; |
| 547 | goto err0; |
| 548 | } |
| 549 | |
| 550 | /* get memory resource */ |
| 551 | iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 552 | if (!iomem) { |
| 553 | dev_err(&pdev->dev, "failed to get usbss mem resourse\n"); |
| 554 | ret = -ENODEV; |
| 555 | goto err1; |
| 556 | } |
| 557 | |
| 558 | glue->dev = &pdev->dev; |
| 559 | |
| 560 | glue->wrp = kmemdup(wrp, sizeof(*wrp), GFP_KERNEL); |
| 561 | if (!glue->wrp) { |
| 562 | dev_err(&pdev->dev, "failed to duplicate wrapper struct memory\n"); |
| 563 | ret = -ENOMEM; |
| 564 | goto err1; |
| 565 | } |
| 566 | platform_set_drvdata(pdev, glue); |
| 567 | |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 568 | /* enable the usbss clocks */ |
| 569 | pm_runtime_enable(&pdev->dev); |
| 570 | |
| 571 | ret = pm_runtime_get_sync(&pdev->dev); |
| 572 | if (ret < 0) { |
| 573 | dev_err(&pdev->dev, "pm_runtime_get_sync FAILED"); |
Ajay Kumar Gupta | 0e38c4e | 2012-07-03 17:37:11 +0530 | [diff] [blame] | 574 | goto err2; |
| 575 | } |
| 576 | |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 577 | /* create the child platform device for all instances of musb */ |
| 578 | for (i = 0; i < wrp->instances ; i++) { |
| 579 | ret = dsps_create_musb_pdev(glue, i); |
| 580 | if (ret != 0) { |
| 581 | dev_err(&pdev->dev, "failed to create child pdev\n"); |
| 582 | /* release resources of previously created instances */ |
| 583 | for (i--; i >= 0 ; i--) |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 584 | platform_device_unregister(glue->musb[i]); |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 585 | goto err3; |
| 586 | } |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | return 0; |
| 590 | |
| 591 | err3: |
Ajay Kumar Gupta | 0e38c4e | 2012-07-03 17:37:11 +0530 | [diff] [blame] | 592 | pm_runtime_put(&pdev->dev); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 593 | err2: |
Ajay Kumar Gupta | 0e38c4e | 2012-07-03 17:37:11 +0530 | [diff] [blame] | 594 | pm_runtime_disable(&pdev->dev); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 595 | kfree(glue->wrp); |
| 596 | err1: |
| 597 | kfree(glue); |
| 598 | err0: |
| 599 | return ret; |
| 600 | } |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 601 | static int dsps_remove(struct platform_device *pdev) |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 602 | { |
| 603 | struct dsps_glue *glue = platform_get_drvdata(pdev); |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 604 | const struct dsps_musb_wrapper *wrp = glue->wrp; |
| 605 | int i; |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 606 | |
| 607 | /* delete the child platform device */ |
B, Ravi | db4a932 | 2012-08-31 11:09:51 +0000 | [diff] [blame] | 608 | for (i = 0; i < wrp->instances ; i++) |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 609 | platform_device_unregister(glue->musb[i]); |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 610 | |
| 611 | /* disable usbss clocks */ |
| 612 | pm_runtime_put(&pdev->dev); |
| 613 | pm_runtime_disable(&pdev->dev); |
| 614 | kfree(glue->wrp); |
| 615 | kfree(glue); |
| 616 | return 0; |
| 617 | } |
| 618 | |
Sebastian Andrzej Siewior | fa7b4ca | 2013-07-26 11:11:37 +0200 | [diff] [blame] | 619 | static const struct dsps_musb_wrapper am33xx_driver_data = { |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 620 | .revision = 0x00, |
| 621 | .control = 0x14, |
| 622 | .status = 0x18, |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 623 | .epintr_set = 0x38, |
| 624 | .epintr_clear = 0x40, |
| 625 | .epintr_status = 0x30, |
| 626 | .coreintr_set = 0x3c, |
| 627 | .coreintr_clear = 0x44, |
| 628 | .coreintr_status = 0x34, |
| 629 | .phy_utmi = 0xe0, |
| 630 | .mode = 0xe8, |
| 631 | .reset = 0, |
| 632 | .otg_disable = 21, |
| 633 | .iddig = 8, |
| 634 | .usb_shift = 0, |
| 635 | .usb_mask = 0x1ff, |
| 636 | .usb_bitmap = (0x1ff << 0), |
| 637 | .drvvbus = 8, |
| 638 | .txep_shift = 0, |
| 639 | .txep_mask = 0xffff, |
| 640 | .txep_bitmap = (0xffff << 0), |
| 641 | .rxep_shift = 16, |
| 642 | .rxep_mask = 0xfffe, |
| 643 | .rxep_bitmap = (0xfffe << 16), |
| 644 | .musb_core_offset = 0x400, |
| 645 | .poll_seconds = 2, |
Afzal Mohammed | 3b46dd7 | 2012-11-02 22:02:35 +0530 | [diff] [blame] | 646 | .instances = 1, |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 647 | }; |
| 648 | |
Bill Pemberton | 2f82686 | 2012-11-19 13:25:20 -0500 | [diff] [blame] | 649 | static const struct of_device_id musb_dsps_of_match[] = { |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 650 | { .compatible = "ti,musb-am33xx", |
Sebastian Andrzej Siewior | fa7b4ca | 2013-07-26 11:11:37 +0200 | [diff] [blame] | 651 | .data = (void *) &am33xx_driver_data, }, |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 652 | { }, |
| 653 | }; |
| 654 | MODULE_DEVICE_TABLE(of, musb_dsps_of_match); |
| 655 | |
| 656 | static struct platform_driver dsps_usbss_driver = { |
| 657 | .probe = dsps_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 658 | .remove = dsps_remove, |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 659 | .driver = { |
| 660 | .name = "musb-dsps", |
Ajay Kumar Gupta | 6514567 | 2012-08-31 11:09:53 +0000 | [diff] [blame] | 661 | .of_match_table = of_match_ptr(musb_dsps_of_match), |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 662 | }, |
Ajay Kumar Gupta | 9ecb887 | 2012-03-12 19:30:22 +0530 | [diff] [blame] | 663 | }; |
| 664 | |
| 665 | MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer"); |
| 666 | MODULE_AUTHOR("Ravi B <ravibabu@ti.com>"); |
| 667 | MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>"); |
| 668 | MODULE_LICENSE("GPL v2"); |
| 669 | |
| 670 | static int __init dsps_init(void) |
| 671 | { |
| 672 | return platform_driver_register(&dsps_usbss_driver); |
| 673 | } |
| 674 | subsys_initcall(dsps_init); |
| 675 | |
| 676 | static void __exit dsps_exit(void) |
| 677 | { |
| 678 | platform_driver_unregister(&dsps_usbss_driver); |
| 679 | } |
| 680 | module_exit(dsps_exit); |