Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Texas Instruments DA8xx/OMAP-L1x "glue layer" |
| 3 | * |
| 4 | * Copyright (c) 2008-2009 MontaVista Software, Inc. <source@mvista.com> |
| 5 | * |
| 6 | * Based on the DaVinci "glue layer" code. |
| 7 | * Copyright (C) 2005-2006 by Texas Instruments |
| 8 | * |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 9 | * DT support |
| 10 | * Copyright (c) 2016 Petr Kulhavy <petr@barix.com> |
| 11 | * |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 12 | * This file is part of the Inventra Controller Driver for Linux. |
| 13 | * |
| 14 | * The Inventra Controller Driver for Linux is free software; you |
| 15 | * can redistribute it and/or modify it under the terms of the GNU |
| 16 | * General Public License version 2 as published by the Free Software |
| 17 | * Foundation. |
| 18 | * |
| 19 | * The Inventra Controller Driver for Linux is distributed in |
| 20 | * the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 21 | * without even the implied warranty of MERCHANTABILITY or |
| 22 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| 23 | * License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License |
| 26 | * along with The Inventra Controller Driver for Linux ; if not, |
| 27 | * write to the Free Software Foundation, Inc., 59 Temple Place, |
| 28 | * Suite 330, Boston, MA 02111-1307 USA |
| 29 | * |
| 30 | */ |
| 31 | |
Felipe Balbi | ab570da | 2011-11-10 09:58:04 +0200 | [diff] [blame] | 32 | #include <linux/module.h> |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 33 | #include <linux/clk.h> |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 34 | #include <linux/err.h> |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 35 | #include <linux/io.h> |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 36 | #include <linux/phy/phy.h> |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 37 | #include <linux/platform_device.h> |
| 38 | #include <linux/dma-mapping.h> |
Felipe Balbi | d7078df | 2014-04-16 15:28:32 -0500 | [diff] [blame] | 39 | #include <linux/usb/usb_phy_generic.h> |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 40 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 41 | #include "musb_core.h" |
| 42 | |
| 43 | /* |
| 44 | * DA8XX specific definitions |
| 45 | */ |
| 46 | |
| 47 | /* USB 2.0 OTG module registers */ |
| 48 | #define DA8XX_USB_REVISION_REG 0x00 |
| 49 | #define DA8XX_USB_CTRL_REG 0x04 |
| 50 | #define DA8XX_USB_STAT_REG 0x08 |
| 51 | #define DA8XX_USB_EMULATION_REG 0x0c |
| 52 | #define DA8XX_USB_MODE_REG 0x10 /* Transparent, CDC, [Generic] RNDIS */ |
| 53 | #define DA8XX_USB_AUTOREQ_REG 0x14 |
| 54 | #define DA8XX_USB_SRP_FIX_TIME_REG 0x18 |
| 55 | #define DA8XX_USB_TEARDOWN_REG 0x1c |
| 56 | #define DA8XX_USB_INTR_SRC_REG 0x20 |
| 57 | #define DA8XX_USB_INTR_SRC_SET_REG 0x24 |
| 58 | #define DA8XX_USB_INTR_SRC_CLEAR_REG 0x28 |
| 59 | #define DA8XX_USB_INTR_MASK_REG 0x2c |
| 60 | #define DA8XX_USB_INTR_MASK_SET_REG 0x30 |
| 61 | #define DA8XX_USB_INTR_MASK_CLEAR_REG 0x34 |
| 62 | #define DA8XX_USB_INTR_SRC_MASKED_REG 0x38 |
| 63 | #define DA8XX_USB_END_OF_INTR_REG 0x3c |
| 64 | #define DA8XX_USB_GENERIC_RNDIS_EP_SIZE_REG(n) (0x50 + (((n) - 1) << 2)) |
| 65 | |
| 66 | /* Control register bits */ |
| 67 | #define DA8XX_SOFT_RESET_MASK 1 |
| 68 | |
| 69 | #define DA8XX_USB_TX_EP_MASK 0x1f /* EP0 + 4 Tx EPs */ |
| 70 | #define DA8XX_USB_RX_EP_MASK 0x1e /* 4 Rx EPs */ |
| 71 | |
| 72 | /* USB interrupt register bits */ |
| 73 | #define DA8XX_INTR_USB_SHIFT 16 |
| 74 | #define DA8XX_INTR_USB_MASK (0x1ff << DA8XX_INTR_USB_SHIFT) /* 8 Mentor */ |
| 75 | /* interrupts and DRVVBUS interrupt */ |
| 76 | #define DA8XX_INTR_DRVVBUS 0x100 |
| 77 | #define DA8XX_INTR_RX_SHIFT 8 |
| 78 | #define DA8XX_INTR_RX_MASK (DA8XX_USB_RX_EP_MASK << DA8XX_INTR_RX_SHIFT) |
| 79 | #define DA8XX_INTR_TX_SHIFT 0 |
| 80 | #define DA8XX_INTR_TX_MASK (DA8XX_USB_TX_EP_MASK << DA8XX_INTR_TX_SHIFT) |
| 81 | |
| 82 | #define DA8XX_MENTOR_CORE_OFFSET 0x400 |
| 83 | |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 84 | struct da8xx_glue { |
| 85 | struct device *dev; |
| 86 | struct platform_device *musb; |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 87 | struct platform_device *usb_phy; |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 88 | struct clk *clk; |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 89 | struct phy *phy; |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 90 | }; |
| 91 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 92 | /* |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 93 | * Because we don't set CTRL.UINT, it's "important" to: |
| 94 | * - not read/write INTRUSB/INTRUSBE (except during |
| 95 | * initial setup, as a workaround); |
| 96 | * - use INTSET/INTCLR instead. |
| 97 | */ |
| 98 | |
| 99 | /** |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 100 | * da8xx_musb_enable - enable interrupts |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 101 | */ |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 102 | static void da8xx_musb_enable(struct musb *musb) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 103 | { |
| 104 | void __iomem *reg_base = musb->ctrl_base; |
| 105 | u32 mask; |
| 106 | |
| 107 | /* Workaround: setup IRQs through both register sets. */ |
| 108 | mask = ((musb->epmask & DA8XX_USB_TX_EP_MASK) << DA8XX_INTR_TX_SHIFT) | |
| 109 | ((musb->epmask & DA8XX_USB_RX_EP_MASK) << DA8XX_INTR_RX_SHIFT) | |
| 110 | DA8XX_INTR_USB_MASK; |
| 111 | musb_writel(reg_base, DA8XX_USB_INTR_MASK_SET_REG, mask); |
| 112 | |
| 113 | /* Force the DRVVBUS IRQ so we can start polling for ID change. */ |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 114 | musb_writel(reg_base, DA8XX_USB_INTR_SRC_SET_REG, |
| 115 | DA8XX_INTR_DRVVBUS << DA8XX_INTR_USB_SHIFT); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /** |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 119 | * da8xx_musb_disable - disable HDRC and flush interrupts |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 120 | */ |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 121 | static void da8xx_musb_disable(struct musb *musb) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 122 | { |
| 123 | void __iomem *reg_base = musb->ctrl_base; |
| 124 | |
| 125 | musb_writel(reg_base, DA8XX_USB_INTR_MASK_CLEAR_REG, |
| 126 | DA8XX_INTR_USB_MASK | |
| 127 | DA8XX_INTR_TX_MASK | DA8XX_INTR_RX_MASK); |
| 128 | musb_writeb(musb->mregs, MUSB_DEVCTL, 0); |
| 129 | musb_writel(reg_base, DA8XX_USB_END_OF_INTR_REG, 0); |
| 130 | } |
| 131 | |
Felipe Balbi | 6228596 | 2011-06-22 17:28:09 +0300 | [diff] [blame] | 132 | #define portstate(stmt) stmt |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 133 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 134 | static void da8xx_musb_set_vbus(struct musb *musb, int is_on) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 135 | { |
| 136 | WARN_ON(is_on && is_peripheral_active(musb)); |
| 137 | } |
| 138 | |
| 139 | #define POLL_SECONDS 2 |
| 140 | |
| 141 | static struct timer_list otg_workaround; |
| 142 | |
| 143 | static void otg_timer(unsigned long _musb) |
| 144 | { |
| 145 | struct musb *musb = (void *)_musb; |
| 146 | void __iomem *mregs = musb->mregs; |
| 147 | u8 devctl; |
| 148 | unsigned long flags; |
| 149 | |
| 150 | /* |
| 151 | * We poll because DaVinci's won't expose several OTG-critical |
| 152 | * status change events (from the transceiver) otherwise. |
| 153 | */ |
| 154 | devctl = musb_readb(mregs, MUSB_DEVCTL); |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 155 | dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl, |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 156 | usb_otg_state_string(musb->xceiv->otg->state)); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 157 | |
| 158 | spin_lock_irqsave(&musb->lock, flags); |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 159 | switch (musb->xceiv->otg->state) { |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 160 | case OTG_STATE_A_WAIT_BCON: |
| 161 | devctl &= ~MUSB_DEVCTL_SESSION; |
| 162 | musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); |
| 163 | |
| 164 | devctl = musb_readb(musb->mregs, MUSB_DEVCTL); |
| 165 | if (devctl & MUSB_DEVCTL_BDEVICE) { |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 166 | musb->xceiv->otg->state = OTG_STATE_B_IDLE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 167 | MUSB_DEV_MODE(musb); |
| 168 | } else { |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 169 | musb->xceiv->otg->state = OTG_STATE_A_IDLE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 170 | MUSB_HST_MODE(musb); |
| 171 | } |
| 172 | break; |
| 173 | case OTG_STATE_A_WAIT_VFALL: |
| 174 | /* |
| 175 | * Wait till VBUS falls below SessionEnd (~0.2 V); the 1.3 |
| 176 | * RTL seems to mis-handle session "start" otherwise (or in |
| 177 | * our case "recover"), in routine "VBUS was valid by the time |
| 178 | * VBUSERR got reported during enumeration" cases. |
| 179 | */ |
| 180 | if (devctl & MUSB_DEVCTL_VBUS) { |
| 181 | mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ); |
| 182 | break; |
| 183 | } |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 184 | musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 185 | musb_writel(musb->ctrl_base, DA8XX_USB_INTR_SRC_SET_REG, |
| 186 | MUSB_INTR_VBUSERROR << DA8XX_INTR_USB_SHIFT); |
| 187 | break; |
| 188 | case OTG_STATE_B_IDLE: |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 189 | /* |
| 190 | * There's no ID-changed IRQ, so we have no good way to tell |
| 191 | * when to switch to the A-Default state machine (by setting |
| 192 | * the DEVCTL.Session bit). |
| 193 | * |
| 194 | * Workaround: whenever we're in B_IDLE, try setting the |
| 195 | * session flag every few seconds. If it works, ID was |
| 196 | * grounded and we're now in the A-Default state machine. |
| 197 | * |
| 198 | * NOTE: setting the session flag is _supposed_ to trigger |
| 199 | * SRP but clearly it doesn't. |
| 200 | */ |
| 201 | musb_writeb(mregs, MUSB_DEVCTL, devctl | MUSB_DEVCTL_SESSION); |
| 202 | devctl = musb_readb(mregs, MUSB_DEVCTL); |
| 203 | if (devctl & MUSB_DEVCTL_BDEVICE) |
| 204 | mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ); |
| 205 | else |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 206 | musb->xceiv->otg->state = OTG_STATE_A_IDLE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 207 | break; |
| 208 | default: |
| 209 | break; |
| 210 | } |
| 211 | spin_unlock_irqrestore(&musb->lock, flags); |
| 212 | } |
| 213 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 214 | static void da8xx_musb_try_idle(struct musb *musb, unsigned long timeout) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 215 | { |
| 216 | static unsigned long last_timer; |
| 217 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 218 | if (timeout == 0) |
| 219 | timeout = jiffies + msecs_to_jiffies(3); |
| 220 | |
| 221 | /* Never idle if active, or when VBUS timeout is not set as host */ |
| 222 | if (musb->is_active || (musb->a_wait_bcon == 0 && |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 223 | musb->xceiv->otg->state == OTG_STATE_A_WAIT_BCON)) { |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 224 | dev_dbg(musb->controller, "%s active, deleting timer\n", |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 225 | usb_otg_state_string(musb->xceiv->otg->state)); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 226 | del_timer(&otg_workaround); |
| 227 | last_timer = jiffies; |
| 228 | return; |
| 229 | } |
| 230 | |
| 231 | if (time_after(last_timer, timeout) && timer_pending(&otg_workaround)) { |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 232 | dev_dbg(musb->controller, "Longer idle timer already pending, ignoring...\n"); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 233 | return; |
| 234 | } |
| 235 | last_timer = timeout; |
| 236 | |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 237 | dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n", |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 238 | usb_otg_state_string(musb->xceiv->otg->state), |
Anatolij Gustschin | 3df0045 | 2011-05-05 12:11:21 +0200 | [diff] [blame] | 239 | jiffies_to_msecs(timeout - jiffies)); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 240 | mod_timer(&otg_workaround, timeout); |
| 241 | } |
| 242 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 243 | static irqreturn_t da8xx_musb_interrupt(int irq, void *hci) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 244 | { |
| 245 | struct musb *musb = hci; |
| 246 | void __iomem *reg_base = musb->ctrl_base; |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 247 | struct usb_otg *otg = musb->xceiv->otg; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 248 | unsigned long flags; |
| 249 | irqreturn_t ret = IRQ_NONE; |
| 250 | u32 status; |
| 251 | |
| 252 | spin_lock_irqsave(&musb->lock, flags); |
| 253 | |
| 254 | /* |
| 255 | * NOTE: DA8XX shadows the Mentor IRQs. Don't manage them through |
| 256 | * the Mentor registers (except for setup), use the TI ones and EOI. |
| 257 | */ |
| 258 | |
| 259 | /* Acknowledge and handle non-CPPI interrupts */ |
| 260 | status = musb_readl(reg_base, DA8XX_USB_INTR_SRC_MASKED_REG); |
| 261 | if (!status) |
| 262 | goto eoi; |
| 263 | |
| 264 | musb_writel(reg_base, DA8XX_USB_INTR_SRC_CLEAR_REG, status); |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 265 | dev_dbg(musb->controller, "USB IRQ %08x\n", status); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 266 | |
| 267 | musb->int_rx = (status & DA8XX_INTR_RX_MASK) >> DA8XX_INTR_RX_SHIFT; |
| 268 | musb->int_tx = (status & DA8XX_INTR_TX_MASK) >> DA8XX_INTR_TX_SHIFT; |
| 269 | musb->int_usb = (status & DA8XX_INTR_USB_MASK) >> DA8XX_INTR_USB_SHIFT; |
| 270 | |
| 271 | /* |
| 272 | * DRVVBUS IRQs are the only proxy we have (a very poor one!) for |
| 273 | * DA8xx's missing ID change IRQ. We need an ID change IRQ to |
| 274 | * switch appropriately between halves of the OTG state machine. |
| 275 | * Managing DEVCTL.Session per Mentor docs requires that we know its |
| 276 | * value but DEVCTL.BDevice is invalid without DEVCTL.Session set. |
| 277 | * Also, DRVVBUS pulses for SRP (but not at 5 V)... |
| 278 | */ |
| 279 | if (status & (DA8XX_INTR_DRVVBUS << DA8XX_INTR_USB_SHIFT)) { |
| 280 | int drvvbus = musb_readl(reg_base, DA8XX_USB_STAT_REG); |
| 281 | void __iomem *mregs = musb->mregs; |
| 282 | u8 devctl = musb_readb(mregs, MUSB_DEVCTL); |
| 283 | int err; |
| 284 | |
Mikhail Kshevetskiy | db9e516 | 2013-03-14 10:18:29 +0100 | [diff] [blame] | 285 | err = musb->int_usb & MUSB_INTR_VBUSERROR; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 286 | if (err) { |
| 287 | /* |
| 288 | * The Mentor core doesn't debounce VBUS as needed |
| 289 | * to cope with device connect current spikes. This |
| 290 | * means it's not uncommon for bus-powered devices |
| 291 | * to get VBUS errors during enumeration. |
| 292 | * |
| 293 | * This is a workaround, but newer RTL from Mentor |
| 294 | * seems to allow a better one: "re"-starting sessions |
| 295 | * without waiting for VBUS to stop registering in |
| 296 | * devctl. |
| 297 | */ |
| 298 | musb->int_usb &= ~MUSB_INTR_VBUSERROR; |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 299 | musb->xceiv->otg->state = OTG_STATE_A_WAIT_VFALL; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 300 | mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ); |
| 301 | WARNING("VBUS error workaround (delay coming)\n"); |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 302 | } else if (drvvbus) { |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 303 | MUSB_HST_MODE(musb); |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 304 | otg->default_a = 1; |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 305 | musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 306 | portstate(musb->port1_status |= USB_PORT_STAT_POWER); |
| 307 | del_timer(&otg_workaround); |
| 308 | } else { |
| 309 | musb->is_active = 0; |
| 310 | MUSB_DEV_MODE(musb); |
Heikki Krogerus | d445b6d | 2012-02-13 13:24:15 +0200 | [diff] [blame] | 311 | otg->default_a = 0; |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 312 | musb->xceiv->otg->state = OTG_STATE_B_IDLE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 313 | portstate(musb->port1_status &= ~USB_PORT_STAT_POWER); |
| 314 | } |
| 315 | |
Felipe Balbi | 5c8a86e | 2011-05-11 12:44:08 +0300 | [diff] [blame] | 316 | dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n", |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 317 | drvvbus ? "on" : "off", |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 318 | usb_otg_state_string(musb->xceiv->otg->state), |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 319 | err ? " ERROR" : "", |
| 320 | devctl); |
| 321 | ret = IRQ_HANDLED; |
| 322 | } |
| 323 | |
| 324 | if (musb->int_tx || musb->int_rx || musb->int_usb) |
| 325 | ret |= musb_interrupt(musb); |
| 326 | |
| 327 | eoi: |
| 328 | /* EOI needs to be written for the IRQ to be re-asserted. */ |
| 329 | if (ret == IRQ_HANDLED || status) |
| 330 | musb_writel(reg_base, DA8XX_USB_END_OF_INTR_REG, 0); |
| 331 | |
| 332 | /* Poll for ID change */ |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 333 | if (musb->xceiv->otg->state == OTG_STATE_B_IDLE) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 334 | mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ); |
| 335 | |
| 336 | spin_unlock_irqrestore(&musb->lock, flags); |
| 337 | |
| 338 | return ret; |
| 339 | } |
| 340 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 341 | static int da8xx_musb_set_mode(struct musb *musb, u8 musb_mode) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 342 | { |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 343 | struct da8xx_glue *glue = dev_get_drvdata(musb->controller->parent); |
| 344 | enum phy_mode phy_mode; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 345 | |
Alexandre Bailon | 7ccf629 | 2016-11-21 08:59:31 -0600 | [diff] [blame] | 346 | /* |
| 347 | * The PHY has some issues when it is forced in device or host mode. |
| 348 | * Unless the user request another mode, configure the PHY in OTG mode. |
| 349 | */ |
| 350 | if (!musb->is_initialized) |
| 351 | return phy_set_mode(glue->phy, PHY_MODE_USB_OTG); |
| 352 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 353 | switch (musb_mode) { |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 354 | case MUSB_HOST: /* Force VBUS valid, ID = 0 */ |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 355 | phy_mode = PHY_MODE_USB_HOST; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 356 | break; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 357 | case MUSB_PERIPHERAL: /* Force VBUS valid, ID = 1 */ |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 358 | phy_mode = PHY_MODE_USB_DEVICE; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 359 | break; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 360 | case MUSB_OTG: /* Don't override the VBUS/ID comparators */ |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 361 | phy_mode = PHY_MODE_USB_OTG; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 362 | break; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 363 | default: |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 364 | return -EINVAL; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 365 | } |
| 366 | |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 367 | return phy_set_mode(glue->phy, phy_mode); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 368 | } |
| 369 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 370 | static int da8xx_musb_init(struct musb *musb) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 371 | { |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 372 | struct da8xx_glue *glue = dev_get_drvdata(musb->controller->parent); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 373 | void __iomem *reg_base = musb->ctrl_base; |
| 374 | u32 rev; |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 375 | int ret = -ENODEV; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 376 | |
| 377 | musb->mregs += DA8XX_MENTOR_CORE_OFFSET; |
| 378 | |
Alexandre Bailon | 09721ba | 2016-11-21 08:59:30 -0600 | [diff] [blame] | 379 | ret = clk_prepare_enable(glue->clk); |
| 380 | if (ret) { |
| 381 | dev_err(glue->dev, "failed to enable clock\n"); |
| 382 | return ret; |
| 383 | } |
| 384 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 385 | /* Returns zero if e.g. not clocked */ |
| 386 | rev = musb_readl(reg_base, DA8XX_USB_REVISION_REG); |
| 387 | if (!rev) |
| 388 | goto fail; |
| 389 | |
Kishon Vijay Abraham I | 662dca5 | 2012-06-22 17:02:46 +0530 | [diff] [blame] | 390 | musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2); |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 391 | if (IS_ERR_OR_NULL(musb->xceiv)) { |
| 392 | ret = -EPROBE_DEFER; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 393 | goto fail; |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 394 | } |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 395 | |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 396 | setup_timer(&otg_workaround, otg_timer, (unsigned long)musb); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 397 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 398 | /* Reset the controller */ |
| 399 | musb_writel(reg_base, DA8XX_USB_CTRL_REG, DA8XX_SOFT_RESET_MASK); |
| 400 | |
| 401 | /* Start the on-chip PHY and its PLL. */ |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 402 | ret = phy_init(glue->phy); |
| 403 | if (ret) { |
| 404 | dev_err(glue->dev, "Failed to init phy.\n"); |
Alexandre Bailon | 09721ba | 2016-11-21 08:59:30 -0600 | [diff] [blame] | 405 | goto fail; |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | ret = phy_power_on(glue->phy); |
| 409 | if (ret) { |
| 410 | dev_err(glue->dev, "Failed to power on phy.\n"); |
| 411 | goto err_phy_power_on; |
| 412 | } |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 413 | |
| 414 | msleep(5); |
| 415 | |
| 416 | /* NOTE: IRQs are in mixed mode, not bypass to pure MUSB */ |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 417 | pr_debug("DA8xx OTG revision %08x, control %02x\n", rev, |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 418 | musb_readb(reg_base, DA8XX_USB_CTRL_REG)); |
| 419 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 420 | musb->isr = da8xx_musb_interrupt; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 421 | return 0; |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 422 | |
| 423 | err_phy_power_on: |
| 424 | phy_exit(glue->phy); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 425 | fail: |
Alexandre Bailon | 09721ba | 2016-11-21 08:59:30 -0600 | [diff] [blame] | 426 | clk_disable_unprepare(glue->clk); |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 427 | return ret; |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 428 | } |
| 429 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 430 | static int da8xx_musb_exit(struct musb *musb) |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 431 | { |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 432 | struct da8xx_glue *glue = dev_get_drvdata(musb->controller->parent); |
| 433 | |
Felipe Balbi | 032ec49 | 2011-11-24 15:46:26 +0200 | [diff] [blame] | 434 | del_timer_sync(&otg_workaround); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 435 | |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 436 | phy_power_off(glue->phy); |
| 437 | phy_exit(glue->phy); |
| 438 | clk_disable_unprepare(glue->clk); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 439 | |
Kishon Vijay Abraham I | 721002e | 2012-06-22 17:02:45 +0530 | [diff] [blame] | 440 | usb_put_phy(musb->xceiv); |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 441 | |
Sergei Shtylyov | 3ee076d | 2010-09-24 13:44:03 +0300 | [diff] [blame] | 442 | return 0; |
| 443 | } |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 444 | |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 445 | static inline u8 get_vbus_power(struct device *dev) |
| 446 | { |
| 447 | struct regulator *vbus_supply; |
| 448 | int current_uA; |
| 449 | |
| 450 | vbus_supply = regulator_get_optional(dev, "vbus"); |
| 451 | if (IS_ERR(vbus_supply)) |
| 452 | return 255; |
| 453 | current_uA = regulator_get_current_limit(vbus_supply); |
| 454 | regulator_put(vbus_supply); |
| 455 | if (current_uA <= 0 || current_uA > 510000) |
| 456 | return 255; |
| 457 | return current_uA / 1000 / 2; |
| 458 | } |
| 459 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 460 | static const struct musb_platform_ops da8xx_ops = { |
Tony Lindgren | f8e9f34f | 2015-05-01 12:29:27 -0700 | [diff] [blame] | 461 | .quirks = MUSB_DMA_CPPI | MUSB_INDEXED_EP, |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 462 | .init = da8xx_musb_init, |
| 463 | .exit = da8xx_musb_exit, |
| 464 | |
Tony Lindgren | 8a77f05 | 2014-11-24 11:05:04 -0800 | [diff] [blame] | 465 | .fifo_mode = 2, |
Tony Lindgren | 7f6283e | 2015-05-01 12:29:28 -0700 | [diff] [blame] | 466 | #ifdef CONFIG_USB_TI_CPPI_DMA |
| 467 | .dma_init = cppi_dma_controller_create, |
| 468 | .dma_exit = cppi_dma_controller_destroy, |
| 469 | #endif |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 470 | .enable = da8xx_musb_enable, |
| 471 | .disable = da8xx_musb_disable, |
| 472 | |
| 473 | .set_mode = da8xx_musb_set_mode, |
| 474 | .try_idle = da8xx_musb_try_idle, |
| 475 | |
| 476 | .set_vbus = da8xx_musb_set_vbus, |
| 477 | }; |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 478 | |
Russell King | af38487 | 2013-09-20 00:14:38 +0100 | [diff] [blame] | 479 | static const struct platform_device_info da8xx_dev_info = { |
| 480 | .name = "musb-hdrc", |
| 481 | .id = PLATFORM_DEVID_AUTO, |
| 482 | .dma_mask = DMA_BIT_MASK(32), |
| 483 | }; |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 484 | |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 485 | static const struct musb_hdrc_config da8xx_config = { |
| 486 | .ram_bits = 10, |
| 487 | .num_eps = 5, |
| 488 | .multipoint = 1, |
| 489 | }; |
| 490 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 491 | static int da8xx_probe(struct platform_device *pdev) |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 492 | { |
Felipe Balbi | 09fc7d2 | 2013-04-24 17:21:42 +0300 | [diff] [blame] | 493 | struct resource musb_resources[2]; |
Jingoo Han | c1a7d67 | 2013-07-30 17:03:12 +0900 | [diff] [blame] | 494 | struct musb_hdrc_platform_data *pdata = dev_get_platdata(&pdev->dev); |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 495 | struct da8xx_glue *glue; |
Russell King | af38487 | 2013-09-20 00:14:38 +0100 | [diff] [blame] | 496 | struct platform_device_info pinfo; |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 497 | struct clk *clk; |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 498 | struct device_node *np = pdev->dev.of_node; |
David Lechner | d458fe9 | 2016-09-12 21:48:33 -0500 | [diff] [blame] | 499 | int ret; |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 500 | |
David Lechner | d458fe9 | 2016-09-12 21:48:33 -0500 | [diff] [blame] | 501 | glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL); |
Wolfram Sang | 92c0c49 | 2016-08-25 19:39:27 +0200 | [diff] [blame] | 502 | if (!glue) |
David Lechner | d458fe9 | 2016-09-12 21:48:33 -0500 | [diff] [blame] | 503 | return -ENOMEM; |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 504 | |
David Lechner | d458fe9 | 2016-09-12 21:48:33 -0500 | [diff] [blame] | 505 | clk = devm_clk_get(&pdev->dev, "usb20"); |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 506 | if (IS_ERR(clk)) { |
| 507 | dev_err(&pdev->dev, "failed to get clock\n"); |
David Lechner | d458fe9 | 2016-09-12 21:48:33 -0500 | [diff] [blame] | 508 | return PTR_ERR(clk); |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 509 | } |
| 510 | |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 511 | glue->phy = devm_phy_get(&pdev->dev, "usb-phy"); |
| 512 | if (IS_ERR(glue->phy)) { |
David Lechner | 355f1a39 | 2016-11-01 15:47:04 -0500 | [diff] [blame] | 513 | if (PTR_ERR(glue->phy) != -EPROBE_DEFER) |
| 514 | dev_err(&pdev->dev, "failed to get phy\n"); |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 515 | return PTR_ERR(glue->phy); |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 516 | } |
| 517 | |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 518 | glue->dev = &pdev->dev; |
Felipe Balbi | 0349176 | 2010-12-02 09:57:08 +0200 | [diff] [blame] | 519 | glue->clk = clk; |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 520 | |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 521 | if (IS_ENABLED(CONFIG_OF) && np) { |
| 522 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 523 | if (!pdata) |
| 524 | return -ENOMEM; |
| 525 | |
| 526 | pdata->config = &da8xx_config; |
| 527 | pdata->mode = musb_get_mode(&pdev->dev); |
| 528 | pdata->power = get_vbus_power(&pdev->dev); |
| 529 | } |
| 530 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 531 | pdata->platform_ops = &da8xx_ops; |
| 532 | |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 533 | glue->usb_phy = usb_phy_generic_register(); |
Arnd Bergmann | 984f3be | 2016-09-22 15:58:31 -0500 | [diff] [blame] | 534 | ret = PTR_ERR_OR_ZERO(glue->usb_phy); |
| 535 | if (ret) { |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 536 | dev_err(&pdev->dev, "failed to register usb_phy\n"); |
Arnd Bergmann | 984f3be | 2016-09-22 15:58:31 -0500 | [diff] [blame] | 537 | return ret; |
Felipe Balbi | 2f36ff6 | 2014-04-16 16:16:33 -0500 | [diff] [blame] | 538 | } |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 539 | platform_set_drvdata(pdev, glue); |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 540 | |
Felipe Balbi | 09fc7d2 | 2013-04-24 17:21:42 +0300 | [diff] [blame] | 541 | memset(musb_resources, 0x00, sizeof(*musb_resources) * |
| 542 | ARRAY_SIZE(musb_resources)); |
| 543 | |
| 544 | musb_resources[0].name = pdev->resource[0].name; |
| 545 | musb_resources[0].start = pdev->resource[0].start; |
| 546 | musb_resources[0].end = pdev->resource[0].end; |
| 547 | musb_resources[0].flags = pdev->resource[0].flags; |
| 548 | |
| 549 | musb_resources[1].name = pdev->resource[1].name; |
| 550 | musb_resources[1].start = pdev->resource[1].start; |
| 551 | musb_resources[1].end = pdev->resource[1].end; |
| 552 | musb_resources[1].flags = pdev->resource[1].flags; |
| 553 | |
Russell King | af38487 | 2013-09-20 00:14:38 +0100 | [diff] [blame] | 554 | pinfo = da8xx_dev_info; |
| 555 | pinfo.parent = &pdev->dev; |
| 556 | pinfo.res = musb_resources; |
| 557 | pinfo.num_res = ARRAY_SIZE(musb_resources); |
| 558 | pinfo.data = pdata; |
| 559 | pinfo.size_data = sizeof(*pdata); |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 560 | |
Arnd Bergmann | 984f3be | 2016-09-22 15:58:31 -0500 | [diff] [blame] | 561 | glue->musb = platform_device_register_full(&pinfo); |
| 562 | ret = PTR_ERR_OR_ZERO(glue->musb); |
| 563 | if (ret) { |
Russell King | af38487 | 2013-09-20 00:14:38 +0100 | [diff] [blame] | 564 | dev_err(&pdev->dev, "failed to register musb device: %d\n", ret); |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 565 | usb_phy_generic_unregister(glue->usb_phy); |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Arnd Bergmann | 984f3be | 2016-09-22 15:58:31 -0500 | [diff] [blame] | 568 | return ret; |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 569 | } |
| 570 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 571 | static int da8xx_remove(struct platform_device *pdev) |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 572 | { |
Felipe Balbi | e6480fa | 2010-12-02 09:40:34 +0200 | [diff] [blame] | 573 | struct da8xx_glue *glue = platform_get_drvdata(pdev); |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 574 | |
Wei Yongjun | b59e906 | 2012-10-23 13:26:15 +0800 | [diff] [blame] | 575 | platform_device_unregister(glue->musb); |
David Lechner | 947c49a | 2016-09-12 21:48:34 -0500 | [diff] [blame] | 576 | usb_phy_generic_unregister(glue->usb_phy); |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 577 | |
| 578 | return 0; |
| 579 | } |
| 580 | |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 581 | #ifdef CONFIG_OF |
| 582 | static const struct of_device_id da8xx_id_table[] = { |
| 583 | { |
| 584 | .compatible = "ti,da830-musb", |
| 585 | }, |
| 586 | {}, |
| 587 | }; |
| 588 | MODULE_DEVICE_TABLE(of, da8xx_id_table); |
| 589 | #endif |
| 590 | |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 591 | static struct platform_driver da8xx_driver = { |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 592 | .probe = da8xx_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 593 | .remove = da8xx_remove, |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 594 | .driver = { |
| 595 | .name = "musb-da8xx", |
Petr Kulhavy | 35bd67b | 2016-11-21 08:59:29 -0600 | [diff] [blame] | 596 | .of_match_table = of_match_ptr(da8xx_id_table), |
Felipe Balbi | 8ceae51 | 2010-12-02 09:19:35 +0200 | [diff] [blame] | 597 | }, |
| 598 | }; |
| 599 | |
| 600 | MODULE_DESCRIPTION("DA8xx/OMAP-L1x MUSB Glue Layer"); |
| 601 | MODULE_AUTHOR("Sergei Shtylyov <sshtylyov@ru.mvista.com>"); |
| 602 | MODULE_LICENSE("GPL v2"); |
Srinivas Kandagatla | 0b07734 | 2012-10-10 19:36:59 +0100 | [diff] [blame] | 603 | module_platform_driver(da8xx_driver); |