Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 1 | /* |
Anand Gadiyar | 4792a15 | 2010-11-21 23:23:42 +0530 | [diff] [blame] | 2 | * ehci-omap.c - driver for USBHOST on OMAP3/4 processors |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 3 | * |
Anand Gadiyar | 4792a15 | 2010-11-21 23:23:42 +0530 | [diff] [blame] | 4 | * Bus Glue for the EHCI controllers in OMAP3/4 |
| 5 | * Tested on several OMAP3 boards, and OMAP4 Pandaboard |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 6 | * |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 7 | * Copyright (C) 2007-2013 Texas Instruments, Inc. |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 8 | * Author: Vikram Pandita <vikram.pandita@ti.com> |
Anand Gadiyar | 4792a15 | 2010-11-21 23:23:42 +0530 | [diff] [blame] | 9 | * Author: Anand Gadiyar <gadiyar@ti.com> |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 10 | * Author: Keshava Munegowda <keshava_mgowda@ti.com> |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 11 | * Author: Roger Quadros <rogerq@ti.com> |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 12 | * |
| 13 | * Copyright (C) 2009 Nokia Corporation |
| 14 | * Contact: Felipe Balbi <felipe.balbi@nokia.com> |
| 15 | * |
| 16 | * Based on "ehci-fsl.c" and "ehci-au1xxx.c" ehci glue layers |
| 17 | * |
| 18 | * This program is free software; you can redistribute it and/or modify |
| 19 | * it under the terms of the GNU General Public License as published by |
| 20 | * the Free Software Foundation; either version 2 of the License, or |
| 21 | * (at your option) any later version. |
| 22 | * |
| 23 | * This program is distributed in the hope that it will be useful, |
| 24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 | * GNU General Public License for more details. |
| 27 | * |
| 28 | * You should have received a copy of the GNU General Public License |
| 29 | * along with this program; if not, write to the Free Software |
| 30 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 31 | * |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 32 | * TODO (last updated Feb 27, 2010): |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 33 | * - add kernel-doc |
| 34 | * - enable AUTOIDLE |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 35 | * - add suspend/resume |
Anand Gadiyar | 4792a15 | 2010-11-21 23:23:42 +0530 | [diff] [blame] | 36 | * - add HSIC and TLL support |
| 37 | * - convert to use hwmod and runtime PM |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 38 | */ |
| 39 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 40 | #include <linux/kernel.h> |
| 41 | #include <linux/module.h> |
| 42 | #include <linux/io.h> |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 43 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
Ajay Kumar Gupta | 5aa4af2 | 2010-07-08 14:03:02 +0530 | [diff] [blame] | 45 | #include <linux/usb/ulpi.h> |
Keshava Munegowda | 6e3d4be | 2011-04-21 19:52:43 +0530 | [diff] [blame] | 46 | #include <linux/regulator/consumer.h> |
Keshava Munegowda | 6c984b0 | 2011-10-11 13:22:11 +0530 | [diff] [blame] | 47 | #include <linux/pm_runtime.h> |
Keshava Munegowda | 1fcb57d | 2012-03-19 12:12:47 +0530 | [diff] [blame] | 48 | #include <linux/gpio.h> |
Anand Gadiyar | 354ab85 | 2012-06-05 15:34:27 +0300 | [diff] [blame] | 49 | #include <linux/clk.h> |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 50 | #include <linux/usb.h> |
| 51 | #include <linux/usb/hcd.h> |
| 52 | |
| 53 | #include "ehci.h" |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 54 | |
Felipe Balbi | e8c4a7a | 2012-10-24 14:26:19 -0700 | [diff] [blame] | 55 | #include <linux/platform_data/usb-omap.h> |
| 56 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 57 | /* EHCI Register Set */ |
Anand Gadiyar | 572538d | 2010-05-06 20:09:48 +0530 | [diff] [blame] | 58 | #define EHCI_INSNREG04 (0xA0) |
| 59 | #define EHCI_INSNREG04_DISABLE_UNSUSPEND (1 << 5) |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 60 | #define EHCI_INSNREG05_ULPI (0xA4) |
| 61 | #define EHCI_INSNREG05_ULPI_CONTROL_SHIFT 31 |
| 62 | #define EHCI_INSNREG05_ULPI_PORTSEL_SHIFT 24 |
| 63 | #define EHCI_INSNREG05_ULPI_OPSEL_SHIFT 22 |
| 64 | #define EHCI_INSNREG05_ULPI_REGADD_SHIFT 16 |
| 65 | #define EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT 8 |
| 66 | #define EHCI_INSNREG05_ULPI_WRDATA_SHIFT 0 |
| 67 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 68 | #define DRIVER_DESC "OMAP-EHCI Host Controller driver" |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 69 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 70 | static const char hcd_name[] = "ehci-omap"; |
| 71 | |
| 72 | /*-------------------------------------------------------------------------*/ |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 73 | |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 74 | struct omap_hcd { |
| 75 | struct usb_phy *phy[OMAP3_HS_USB_PORTS]; /* one PHY for each port */ |
| 76 | int nports; |
| 77 | }; |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 78 | |
| 79 | static inline void ehci_write(void __iomem *base, u32 reg, u32 val) |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 80 | { |
| 81 | __raw_writel(val, base + reg); |
| 82 | } |
| 83 | |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 84 | static inline u32 ehci_read(void __iomem *base, u32 reg) |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 85 | { |
| 86 | return __raw_readl(base + reg); |
| 87 | } |
| 88 | |
Anand Gadiyar | 354ab85 | 2012-06-05 15:34:27 +0300 | [diff] [blame] | 89 | |
Ming Lei | ba5952e | 2012-07-13 17:25:24 +0800 | [diff] [blame] | 90 | static void omap_ehci_soft_phy_reset(struct usb_hcd *hcd, u8 port) |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 91 | { |
Ajay Kumar Gupta | 5aa4af2 | 2010-07-08 14:03:02 +0530 | [diff] [blame] | 92 | unsigned long timeout = jiffies + msecs_to_jiffies(1000); |
| 93 | unsigned reg = 0; |
| 94 | |
| 95 | reg = ULPI_FUNC_CTRL_RESET |
| 96 | /* FUNCTION_CTRL_SET register */ |
| 97 | | (ULPI_SET(ULPI_FUNC_CTRL) << EHCI_INSNREG05_ULPI_REGADD_SHIFT) |
| 98 | /* Write */ |
| 99 | | (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT) |
| 100 | /* PORTn */ |
| 101 | | ((port + 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT) |
| 102 | /* start ULPI access*/ |
| 103 | | (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT); |
| 104 | |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 105 | ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg); |
Ajay Kumar Gupta | 5aa4af2 | 2010-07-08 14:03:02 +0530 | [diff] [blame] | 106 | |
| 107 | /* Wait for ULPI access completion */ |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 108 | while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI) |
Ajay Kumar Gupta | 5aa4af2 | 2010-07-08 14:03:02 +0530 | [diff] [blame] | 109 | & (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) { |
| 110 | cpu_relax(); |
| 111 | |
| 112 | if (time_after(jiffies, timeout)) { |
Ming Lei | ba5952e | 2012-07-13 17:25:24 +0800 | [diff] [blame] | 113 | dev_dbg(hcd->self.controller, |
| 114 | "phy reset operation timed out\n"); |
Ajay Kumar Gupta | 5aa4af2 | 2010-07-08 14:03:02 +0530 | [diff] [blame] | 115 | break; |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 120 | static int omap_ehci_init(struct usb_hcd *hcd) |
| 121 | { |
| 122 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 123 | int rc; |
Roger Quadros | 9d9c6ae | 2013-02-13 13:16:25 +0200 | [diff] [blame] | 124 | struct usbhs_omap_platform_data *pdata; |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 125 | |
| 126 | pdata = hcd->self.controller->platform_data; |
Linus Torvalds | 3e701cd | 2012-07-30 12:41:17 -0700 | [diff] [blame] | 127 | |
| 128 | /* Hold PHYs in reset while initializing EHCI controller */ |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 129 | if (pdata->phy_reset) { |
| 130 | if (gpio_is_valid(pdata->reset_gpio_port[0])) |
Linus Torvalds | 3e701cd | 2012-07-30 12:41:17 -0700 | [diff] [blame] | 131 | gpio_set_value_cansleep(pdata->reset_gpio_port[0], 0); |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 132 | |
| 133 | if (gpio_is_valid(pdata->reset_gpio_port[1])) |
Linus Torvalds | 3e701cd | 2012-07-30 12:41:17 -0700 | [diff] [blame] | 134 | gpio_set_value_cansleep(pdata->reset_gpio_port[1], 0); |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 135 | |
| 136 | /* Hold the PHY in RESET for enough time till DIR is high */ |
| 137 | udelay(10); |
| 138 | } |
| 139 | |
| 140 | /* Soft reset the PHY using PHY reset command over ULPI */ |
| 141 | if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_PHY) |
Ming Lei | ba5952e | 2012-07-13 17:25:24 +0800 | [diff] [blame] | 142 | omap_ehci_soft_phy_reset(hcd, 0); |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 143 | if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_PHY) |
Ming Lei | ba5952e | 2012-07-13 17:25:24 +0800 | [diff] [blame] | 144 | omap_ehci_soft_phy_reset(hcd, 1); |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 145 | |
| 146 | /* we know this is the memory we want, no need to ioremap again */ |
| 147 | ehci->caps = hcd->regs; |
| 148 | |
| 149 | rc = ehci_setup(hcd); |
| 150 | |
| 151 | if (pdata->phy_reset) { |
| 152 | /* Hold the PHY in RESET for enough time till |
| 153 | * PHY is settled and ready |
| 154 | */ |
| 155 | udelay(10); |
| 156 | |
| 157 | if (gpio_is_valid(pdata->reset_gpio_port[0])) |
| 158 | gpio_set_value_cansleep(pdata->reset_gpio_port[0], 1); |
| 159 | |
| 160 | if (gpio_is_valid(pdata->reset_gpio_port[1])) |
| 161 | gpio_set_value_cansleep(pdata->reset_gpio_port[1], 1); |
| 162 | } |
| 163 | |
Alan Stern | 1a49e2a | 2012-07-09 15:55:14 -0400 | [diff] [blame] | 164 | return rc; |
| 165 | } |
| 166 | |
Ming Lei | d4aefec | 2011-07-28 22:59:53 +0800 | [diff] [blame] | 167 | static void disable_put_regulator( |
Roger Quadros | 9d9c6ae | 2013-02-13 13:16:25 +0200 | [diff] [blame] | 168 | struct usbhs_omap_platform_data *pdata) |
Ming Lei | d4aefec | 2011-07-28 22:59:53 +0800 | [diff] [blame] | 169 | { |
| 170 | int i; |
| 171 | |
| 172 | for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) { |
| 173 | if (pdata->regulator[i]) { |
| 174 | regulator_disable(pdata->regulator[i]); |
| 175 | regulator_put(pdata->regulator[i]); |
| 176 | } |
| 177 | } |
| 178 | } |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 179 | |
| 180 | /* configure so an HC device and id are always provided */ |
| 181 | /* always called with process context; sleeping is OK */ |
| 182 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 183 | static struct hc_driver __read_mostly ehci_omap_hc_driver; |
| 184 | |
| 185 | static const struct ehci_driver_overrides ehci_omap_overrides __initdata = { |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 186 | .reset = omap_ehci_init, |
| 187 | .extra_priv_size = sizeof(struct omap_hcd), |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 188 | }; |
| 189 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 190 | /** |
| 191 | * ehci_hcd_omap_probe - initialize TI-based HCDs |
| 192 | * |
| 193 | * Allocates basic resources for this USB host controller, and |
| 194 | * then invokes the start() method for the HCD associated with it |
| 195 | * through the hotplug entry's driver_data. |
| 196 | */ |
| 197 | static int ehci_hcd_omap_probe(struct platform_device *pdev) |
| 198 | { |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 199 | struct device *dev = &pdev->dev; |
| 200 | struct usbhs_omap_platform_data *pdata = dev->platform_data; |
| 201 | struct resource *res; |
| 202 | struct usb_hcd *hcd; |
| 203 | void __iomem *regs; |
| 204 | int ret = -ENODEV; |
| 205 | int irq; |
| 206 | int i; |
| 207 | char supply[7]; |
| 208 | struct omap_hcd *omap; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 209 | |
| 210 | if (usb_disabled()) |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 211 | return -ENODEV; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 212 | |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 213 | if (!dev->parent) { |
| 214 | dev_err(dev, "Missing parent device\n"); |
| 215 | return -ENODEV; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 216 | } |
| 217 | |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 218 | irq = platform_get_irq_byname(pdev, "ehci-irq"); |
| 219 | if (irq < 0) { |
| 220 | dev_err(dev, "EHCI irq failed\n"); |
| 221 | return -ENODEV; |
| 222 | } |
| 223 | |
| 224 | res = platform_get_resource_byname(pdev, |
| 225 | IORESOURCE_MEM, "ehci"); |
Roger Quadros | 18c2bb1 | 2013-03-12 12:44:40 +0200 | [diff] [blame] | 226 | regs = devm_ioremap_resource(dev, res); |
| 227 | if (IS_ERR(regs)) |
| 228 | return PTR_ERR(regs); |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 229 | |
| 230 | hcd = usb_create_hcd(&ehci_omap_hc_driver, dev, |
| 231 | dev_name(dev)); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 232 | if (!hcd) { |
Roger Quadros | 18c2bb1 | 2013-03-12 12:44:40 +0200 | [diff] [blame] | 233 | dev_err(dev, "Failed to create HCD\n"); |
| 234 | return -ENOMEM; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 235 | } |
| 236 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 237 | hcd->rsrc_start = res->start; |
| 238 | hcd->rsrc_len = resource_size(res); |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 239 | hcd->regs = regs; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 240 | |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 241 | omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv; |
| 242 | omap->nports = pdata->nports; |
| 243 | |
| 244 | platform_set_drvdata(pdev, hcd); |
| 245 | |
| 246 | /* get the PHY devices if needed */ |
| 247 | for (i = 0 ; i < omap->nports ; i++) { |
| 248 | struct usb_phy *phy; |
| 249 | |
| 250 | if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) |
| 251 | continue; |
| 252 | |
| 253 | /* get the PHY device */ |
| 254 | phy = devm_usb_get_phy_dev(dev, i); |
| 255 | if (IS_ERR(phy) || !phy) { |
| 256 | ret = IS_ERR(phy) ? PTR_ERR(phy) : -ENODEV; |
| 257 | dev_err(dev, "Can't get PHY device for port %d: %d\n", |
| 258 | i, ret); |
| 259 | goto err_phy; |
| 260 | } |
| 261 | |
| 262 | omap->phy[i] = phy; |
| 263 | usb_phy_init(omap->phy[i]); |
| 264 | /* bring PHY out of suspend */ |
| 265 | usb_phy_set_suspend(omap->phy[i], 0); |
| 266 | } |
| 267 | |
Keshava Munegowda | 6e3d4be | 2011-04-21 19:52:43 +0530 | [diff] [blame] | 268 | /* get ehci regulator and enable */ |
| 269 | for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) { |
| 270 | if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) { |
| 271 | pdata->regulator[i] = NULL; |
| 272 | continue; |
| 273 | } |
| 274 | snprintf(supply, sizeof(supply), "hsusb%d", i); |
| 275 | pdata->regulator[i] = regulator_get(dev, supply); |
| 276 | if (IS_ERR(pdata->regulator[i])) { |
| 277 | pdata->regulator[i] = NULL; |
| 278 | dev_dbg(dev, |
| 279 | "failed to get ehci port%d regulator\n", i); |
| 280 | } else { |
| 281 | regulator_enable(pdata->regulator[i]); |
| 282 | } |
| 283 | } |
| 284 | |
Keshava Munegowda | 6c984b0 | 2011-10-11 13:22:11 +0530 | [diff] [blame] | 285 | pm_runtime_enable(dev); |
| 286 | pm_runtime_get_sync(dev); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 287 | |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 288 | /* |
| 289 | * An undocumented "feature" in the OMAP3 EHCI controller, |
| 290 | * causes suspended ports to be taken out of suspend when |
| 291 | * the USBCMD.Run/Stop bit is cleared (for example when |
| 292 | * we do ehci_bus_suspend). |
| 293 | * This breaks suspend-resume if the root-hub is allowed |
| 294 | * to suspend. Writing 1 to this undocumented register bit |
| 295 | * disables this feature and restores normal behavior. |
| 296 | */ |
| 297 | ehci_write(regs, EHCI_INSNREG04, |
| 298 | EHCI_INSNREG04_DISABLE_UNSUSPEND); |
| 299 | |
Russ Dill | 3aa2ae7 | 2012-05-04 04:24:47 -0700 | [diff] [blame] | 300 | ret = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 301 | if (ret) { |
| 302 | dev_err(dev, "failed to add hcd with err %d\n", ret); |
Russ Dill | 984e974 | 2012-06-21 03:44:31 -0700 | [diff] [blame] | 303 | goto err_pm_runtime; |
Russ Dill | 3aa2ae7 | 2012-05-04 04:24:47 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Anand Gadiyar | 354ab85 | 2012-06-05 15:34:27 +0300 | [diff] [blame] | 306 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 307 | return 0; |
| 308 | |
Russ Dill | 984e974 | 2012-06-21 03:44:31 -0700 | [diff] [blame] | 309 | err_pm_runtime: |
Ming Lei | d4aefec | 2011-07-28 22:59:53 +0800 | [diff] [blame] | 310 | disable_put_regulator(pdata); |
Keshava Munegowda | 6c984b0 | 2011-10-11 13:22:11 +0530 | [diff] [blame] | 311 | pm_runtime_put_sync(dev); |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 312 | |
| 313 | err_phy: |
| 314 | for (i = 0; i < omap->nports; i++) { |
| 315 | if (omap->phy[i]) |
| 316 | usb_phy_shutdown(omap->phy[i]); |
| 317 | } |
| 318 | |
Russ Dill | 984e974 | 2012-06-21 03:44:31 -0700 | [diff] [blame] | 319 | usb_put_hcd(hcd); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 320 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 321 | return ret; |
| 322 | } |
| 323 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 324 | |
| 325 | /** |
| 326 | * ehci_hcd_omap_remove - shutdown processing for EHCI HCDs |
| 327 | * @pdev: USB Host Controller being removed |
| 328 | * |
| 329 | * Reverses the effect of usb_ehci_hcd_omap_probe(), first invoking |
| 330 | * the HCD's stop() method. It is always called from a thread |
| 331 | * context, normally "rmmod", "apmd", or something similar. |
| 332 | */ |
| 333 | static int ehci_hcd_omap_remove(struct platform_device *pdev) |
| 334 | { |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 335 | struct device *dev = &pdev->dev; |
| 336 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
| 337 | struct omap_hcd *omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv; |
| 338 | int i; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 339 | |
| 340 | usb_remove_hcd(hcd); |
Ming Lei | d4aefec | 2011-07-28 22:59:53 +0800 | [diff] [blame] | 341 | disable_put_regulator(dev->platform_data); |
Anand Gadiyar | 354ab85 | 2012-06-05 15:34:27 +0300 | [diff] [blame] | 342 | |
Roger Quadros | dcd6406 | 2013-03-12 12:44:41 +0200 | [diff] [blame^] | 343 | for (i = 0; i < omap->nports; i++) { |
| 344 | if (omap->phy[i]) |
| 345 | usb_phy_shutdown(omap->phy[i]); |
| 346 | } |
| 347 | |
| 348 | usb_put_hcd(hcd); |
Keshava Munegowda | 6c984b0 | 2011-10-11 13:22:11 +0530 | [diff] [blame] | 349 | pm_runtime_put_sync(dev); |
| 350 | pm_runtime_disable(dev); |
| 351 | |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | static void ehci_hcd_omap_shutdown(struct platform_device *pdev) |
| 356 | { |
Keshava Munegowda | 1940316 | 2011-03-01 20:08:21 +0530 | [diff] [blame] | 357 | struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 358 | |
| 359 | if (hcd->driver->shutdown) |
| 360 | hcd->driver->shutdown(hcd); |
| 361 | } |
| 362 | |
| 363 | static struct platform_driver ehci_hcd_omap_driver = { |
| 364 | .probe = ehci_hcd_omap_probe, |
| 365 | .remove = ehci_hcd_omap_remove, |
| 366 | .shutdown = ehci_hcd_omap_shutdown, |
| 367 | /*.suspend = ehci_hcd_omap_suspend, */ |
| 368 | /*.resume = ehci_hcd_omap_resume, */ |
| 369 | .driver = { |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 370 | .name = hcd_name, |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 371 | } |
| 372 | }; |
| 373 | |
| 374 | /*-------------------------------------------------------------------------*/ |
| 375 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 376 | static int __init ehci_omap_init(void) |
| 377 | { |
| 378 | if (usb_disabled()) |
| 379 | return -ENODEV; |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 380 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 381 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 382 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 383 | ehci_init_driver(&ehci_omap_hc_driver, &ehci_omap_overrides); |
| 384 | return platform_driver_register(&ehci_hcd_omap_driver); |
| 385 | } |
| 386 | module_init(ehci_omap_init); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 387 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 388 | static void __exit ehci_omap_cleanup(void) |
| 389 | { |
| 390 | platform_driver_unregister(&ehci_hcd_omap_driver); |
| 391 | } |
| 392 | module_exit(ehci_omap_cleanup); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 393 | |
Roger Quadros | 0475352 | 2013-02-14 17:08:09 +0200 | [diff] [blame] | 394 | MODULE_ALIAS("platform:ehci-omap"); |
Felipe Balbi | 54ab2b0 | 2009-10-14 11:44:14 +0300 | [diff] [blame] | 395 | MODULE_AUTHOR("Texas Instruments, Inc."); |
| 396 | MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>"); |
| 397 | |
Alan Stern | 54a41966 | 2013-03-12 12:44:39 +0200 | [diff] [blame] | 398 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 399 | MODULE_LICENSE("GPL"); |