Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Generic platform ehci driver |
| 3 | * |
| 4 | * Copyright 2007 Steven Brown <sbrown@cortland.com> |
| 5 | * Copyright 2010-2012 Hauke Mehrtens <hauke@hauke-m.de> |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 6 | * Copyright 2014 Hans de Goede <hdegoede@redhat.com> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 7 | * |
| 8 | * Derived from the ohci-ssb driver |
| 9 | * Copyright 2007 Michael Buesch <m@bues.ch> |
| 10 | * |
| 11 | * Derived from the EHCI-PCI driver |
| 12 | * Copyright (c) 2000-2004 by David Brownell |
| 13 | * |
| 14 | * Derived from the ohci-pci driver |
| 15 | * Copyright 1999 Roman Weissgaerber |
| 16 | * Copyright 2000-2002 David Brownell |
| 17 | * Copyright 1999 Linus Torvalds |
| 18 | * Copyright 1999 Gregory P. Smith |
| 19 | * |
| 20 | * Licensed under the GNU/GPL. See COPYING for details. |
| 21 | */ |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 22 | #include <linux/clk.h> |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 23 | #include <linux/dma-mapping.h> |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 24 | #include <linux/err.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 25 | #include <linux/kernel.h> |
Alan Stern | d1bb67a | 2012-11-02 10:13:24 -0400 | [diff] [blame] | 26 | #include <linux/hrtimer.h> |
| 27 | #include <linux/io.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 28 | #include <linux/module.h> |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 29 | #include <linux/of.h> |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 30 | #include <linux/phy/phy.h> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 31 | #include <linux/platform_device.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 32 | #include <linux/usb.h> |
| 33 | #include <linux/usb/hcd.h> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 34 | #include <linux/usb/ehci_pdriver.h> |
| 35 | |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 36 | #include "ehci.h" |
| 37 | |
| 38 | #define DRIVER_DESC "EHCI generic platform driver" |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 39 | #define EHCI_MAX_CLKS 3 |
| 40 | #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv) |
| 41 | |
| 42 | struct ehci_platform_priv { |
| 43 | struct clk *clks[EHCI_MAX_CLKS]; |
| 44 | struct phy *phy; |
| 45 | }; |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 46 | |
| 47 | static const char hcd_name[] = "ehci-platform"; |
| 48 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 49 | static int ehci_platform_reset(struct usb_hcd *hcd) |
| 50 | { |
| 51 | struct platform_device *pdev = to_platform_device(hcd->self.controller); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 52 | struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 53 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 54 | int retval; |
| 55 | |
| 56 | hcd->has_tt = pdata->has_tt; |
| 57 | ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug; |
| 58 | ehci->big_endian_desc = pdata->big_endian_desc; |
| 59 | ehci->big_endian_mmio = pdata->big_endian_mmio; |
| 60 | |
Sergei Shtylyov | 743fcce | 2013-06-02 01:33:56 +0400 | [diff] [blame] | 61 | if (pdata->pre_setup) { |
| 62 | retval = pdata->pre_setup(hcd); |
| 63 | if (retval < 0) |
| 64 | return retval; |
| 65 | } |
| 66 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 67 | ehci->caps = hcd->regs + pdata->caps_offset; |
| 68 | retval = ehci_setup(hcd); |
| 69 | if (retval) |
| 70 | return retval; |
| 71 | |
Florian Fainelli | 4534874 | 2012-10-08 15:11:21 +0200 | [diff] [blame] | 72 | if (pdata->no_io_watchdog) |
| 73 | ehci->need_io_watchdog = 0; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 77 | static int ehci_platform_power_on(struct platform_device *dev) |
| 78 | { |
| 79 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
| 80 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
| 81 | int clk, ret; |
| 82 | |
| 83 | for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) { |
| 84 | ret = clk_prepare_enable(priv->clks[clk]); |
| 85 | if (ret) |
| 86 | goto err_disable_clks; |
| 87 | } |
| 88 | |
| 89 | if (priv->phy) { |
| 90 | ret = phy_init(priv->phy); |
| 91 | if (ret) |
| 92 | goto err_disable_clks; |
| 93 | |
| 94 | ret = phy_power_on(priv->phy); |
| 95 | if (ret) |
| 96 | goto err_exit_phy; |
| 97 | } |
| 98 | |
| 99 | return 0; |
| 100 | |
| 101 | err_exit_phy: |
| 102 | phy_exit(priv->phy); |
| 103 | err_disable_clks: |
| 104 | while (--clk >= 0) |
| 105 | clk_disable_unprepare(priv->clks[clk]); |
| 106 | |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | static void ehci_platform_power_off(struct platform_device *dev) |
| 111 | { |
| 112 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
| 113 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
| 114 | int clk; |
| 115 | |
| 116 | if (priv->phy) { |
| 117 | phy_power_off(priv->phy); |
| 118 | phy_exit(priv->phy); |
| 119 | } |
| 120 | |
| 121 | for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--) |
| 122 | if (priv->clks[clk]) |
| 123 | clk_disable_unprepare(priv->clks[clk]); |
| 124 | } |
| 125 | |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 126 | static struct hc_driver __read_mostly ehci_platform_hc_driver; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 127 | |
Andi Kleen | 62d08a1 | 2013-04-22 09:44:56 -0700 | [diff] [blame] | 128 | static const struct ehci_driver_overrides platform_overrides __initconst = { |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 129 | .reset = ehci_platform_reset, |
| 130 | .extra_priv_size = sizeof(struct ehci_platform_priv), |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 131 | }; |
| 132 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 133 | static struct usb_ehci_pdata ehci_platform_defaults = { |
| 134 | .power_on = ehci_platform_power_on, |
| 135 | .power_suspend = ehci_platform_power_off, |
| 136 | .power_off = ehci_platform_power_off, |
| 137 | }; |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 138 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 139 | static int ehci_platform_probe(struct platform_device *dev) |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 140 | { |
| 141 | struct usb_hcd *hcd; |
| 142 | struct resource *res_mem; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 143 | struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev); |
| 144 | struct ehci_platform_priv *priv; |
| 145 | int err, irq, clk = 0; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 146 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 147 | if (usb_disabled()) |
| 148 | return -ENODEV; |
| 149 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 150 | /* |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 151 | * Use reasonable defaults so platforms don't have to provide these |
| 152 | * with DT probing on ARM. |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 153 | */ |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 154 | if (!pdata) |
| 155 | pdata = &ehci_platform_defaults; |
Russell King | e1fd734 | 2013-06-27 12:36:37 +0100 | [diff] [blame] | 156 | |
| 157 | err = dma_coerce_mask_and_coherent(&dev->dev, DMA_BIT_MASK(32)); |
Russell King | 22d9d8e | 2013-06-10 16:28:49 +0100 | [diff] [blame] | 158 | if (err) |
| 159 | return err; |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 160 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 161 | irq = platform_get_irq(dev, 0); |
| 162 | if (irq < 0) { |
Florian Fainelli | 2350cb0 | 2012-10-08 15:11:41 +0200 | [diff] [blame] | 163 | dev_err(&dev->dev, "no irq provided"); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 164 | return irq; |
| 165 | } |
| 166 | res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 167 | if (!res_mem) { |
Florian Fainelli | 5c9b2b2 | 2012-10-08 15:11:43 +0200 | [diff] [blame] | 168 | dev_err(&dev->dev, "no memory resource provided"); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 169 | return -ENXIO; |
| 170 | } |
| 171 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 172 | hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev, |
| 173 | dev_name(&dev->dev)); |
| 174 | if (!hcd) |
| 175 | return -ENOMEM; |
| 176 | |
| 177 | platform_set_drvdata(dev, hcd); |
| 178 | dev->dev.platform_data = pdata; |
| 179 | priv = hcd_to_ehci_priv(hcd); |
| 180 | |
| 181 | if (pdata == &ehci_platform_defaults && dev->dev.of_node) { |
| 182 | priv->phy = devm_phy_get(&dev->dev, "usb"); |
| 183 | if (IS_ERR(priv->phy)) { |
| 184 | err = PTR_ERR(priv->phy); |
| 185 | if (err == -EPROBE_DEFER) |
| 186 | goto err_put_hcd; |
| 187 | priv->phy = NULL; |
| 188 | } |
| 189 | |
| 190 | for (clk = 0; clk < EHCI_MAX_CLKS; clk++) { |
| 191 | priv->clks[clk] = of_clk_get(dev->dev.of_node, clk); |
| 192 | if (IS_ERR(priv->clks[clk])) { |
| 193 | err = PTR_ERR(priv->clks[clk]); |
| 194 | if (err == -EPROBE_DEFER) |
| 195 | goto err_put_clks; |
| 196 | priv->clks[clk] = NULL; |
| 197 | break; |
| 198 | } |
| 199 | } |
| 200 | } |
| 201 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 202 | if (pdata->power_on) { |
| 203 | err = pdata->power_on(dev); |
| 204 | if (err < 0) |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 205 | goto err_put_clks; |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 206 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 207 | |
| 208 | hcd->rsrc_start = res_mem->start; |
| 209 | hcd->rsrc_len = resource_size(res_mem); |
| 210 | |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 211 | hcd->regs = devm_ioremap_resource(&dev->dev, res_mem); |
| 212 | if (IS_ERR(hcd->regs)) { |
| 213 | err = PTR_ERR(hcd->regs); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 214 | goto err_power; |
Julia Lawall | ec03ad8 | 2012-08-14 08:47:38 +0200 | [diff] [blame] | 215 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 216 | err = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 217 | if (err) |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 218 | goto err_power; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 219 | |
Peter Chen | 3c9740a | 2013-11-05 10:46:02 +0800 | [diff] [blame] | 220 | device_wakeup_enable(hcd->self.controller); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 221 | platform_set_drvdata(dev, hcd); |
| 222 | |
| 223 | return err; |
| 224 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 225 | err_power: |
| 226 | if (pdata->power_off) |
| 227 | pdata->power_off(dev); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 228 | err_put_clks: |
| 229 | while (--clk >= 0) |
| 230 | clk_put(priv->clks[clk]); |
| 231 | err_put_hcd: |
| 232 | if (pdata == &ehci_platform_defaults) |
| 233 | dev->dev.platform_data = NULL; |
| 234 | |
| 235 | usb_put_hcd(hcd); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 236 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 237 | return err; |
| 238 | } |
| 239 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 240 | static int ehci_platform_remove(struct platform_device *dev) |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 241 | { |
| 242 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 243 | struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 244 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
| 245 | int clk; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 246 | |
| 247 | usb_remove_hcd(hcd); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 248 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 249 | if (pdata->power_off) |
| 250 | pdata->power_off(dev); |
| 251 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 252 | for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) |
| 253 | clk_put(priv->clks[clk]); |
| 254 | |
| 255 | usb_put_hcd(hcd); |
| 256 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 257 | if (pdata == &ehci_platform_defaults) |
| 258 | dev->dev.platform_data = NULL; |
| 259 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | #ifdef CONFIG_PM |
| 264 | |
| 265 | static int ehci_platform_suspend(struct device *dev) |
| 266 | { |
| 267 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 268 | struct usb_ehci_pdata *pdata = dev_get_platdata(dev); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 269 | struct platform_device *pdev = |
| 270 | container_of(dev, struct platform_device, dev); |
Alan Stern | c5cf921 | 2012-06-28 11:19:02 -0400 | [diff] [blame] | 271 | bool do_wakeup = device_may_wakeup(dev); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 272 | int ret; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 273 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 274 | ret = ehci_suspend(hcd, do_wakeup); |
| 275 | |
| 276 | if (pdata->power_suspend) |
| 277 | pdata->power_suspend(pdev); |
| 278 | |
| 279 | return ret; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | static int ehci_platform_resume(struct device *dev) |
| 283 | { |
| 284 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 285 | struct usb_ehci_pdata *pdata = dev_get_platdata(dev); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 286 | struct platform_device *pdev = |
| 287 | container_of(dev, struct platform_device, dev); |
| 288 | |
| 289 | if (pdata->power_on) { |
| 290 | int err = pdata->power_on(pdev); |
| 291 | if (err < 0) |
| 292 | return err; |
| 293 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 294 | |
Alan Stern | c5cf921 | 2012-06-28 11:19:02 -0400 | [diff] [blame] | 295 | ehci_resume(hcd, false); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | #else /* !CONFIG_PM */ |
| 300 | #define ehci_platform_suspend NULL |
| 301 | #define ehci_platform_resume NULL |
| 302 | #endif /* CONFIG_PM */ |
| 303 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 304 | static const struct of_device_id vt8500_ehci_ids[] = { |
| 305 | { .compatible = "via,vt8500-ehci", }, |
| 306 | { .compatible = "wm,prizm-ehci", }, |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 307 | { .compatible = "usb-ehci", }, |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 308 | {} |
| 309 | }; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame^] | 310 | MODULE_DEVICE_TABLE(of, vt8500_ehci_ids); |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 311 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 312 | static const struct platform_device_id ehci_platform_table[] = { |
| 313 | { "ehci-platform", 0 }, |
| 314 | { } |
| 315 | }; |
| 316 | MODULE_DEVICE_TABLE(platform, ehci_platform_table); |
| 317 | |
| 318 | static const struct dev_pm_ops ehci_platform_pm_ops = { |
| 319 | .suspend = ehci_platform_suspend, |
| 320 | .resume = ehci_platform_resume, |
| 321 | }; |
| 322 | |
| 323 | static struct platform_driver ehci_platform_driver = { |
| 324 | .id_table = ehci_platform_table, |
| 325 | .probe = ehci_platform_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 326 | .remove = ehci_platform_remove, |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 327 | .shutdown = usb_hcd_platform_shutdown, |
| 328 | .driver = { |
| 329 | .owner = THIS_MODULE, |
| 330 | .name = "ehci-platform", |
| 331 | .pm = &ehci_platform_pm_ops, |
Sachin Kamat | ae5e5f7 | 2013-05-21 17:17:16 +0530 | [diff] [blame] | 332 | .of_match_table = vt8500_ehci_ids, |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 333 | } |
| 334 | }; |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 335 | |
| 336 | static int __init ehci_platform_init(void) |
| 337 | { |
| 338 | if (usb_disabled()) |
| 339 | return -ENODEV; |
| 340 | |
| 341 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
| 342 | |
| 343 | ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides); |
| 344 | return platform_driver_register(&ehci_platform_driver); |
| 345 | } |
| 346 | module_init(ehci_platform_init); |
| 347 | |
| 348 | static void __exit ehci_platform_cleanup(void) |
| 349 | { |
| 350 | platform_driver_unregister(&ehci_platform_driver); |
| 351 | } |
| 352 | module_exit(ehci_platform_cleanup); |
| 353 | |
| 354 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 355 | MODULE_AUTHOR("Hauke Mehrtens"); |
| 356 | MODULE_AUTHOR("Alan Stern"); |
| 357 | MODULE_LICENSE("GPL"); |