blob: ba07f16b13e09c34c30c8e83a68f3da0aec48d20 [file] [log] [blame]
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +01001/*
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 Goedea4aeb212014-02-07 16:36:41 +01006 * Copyright 2014 Hans de Goede <hdegoede@redhat.com>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +01007 *
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 Goedea4aeb212014-02-07 16:36:41 +010022#include <linux/clk.h>
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +000023#include <linux/dma-mapping.h>
Thierry Reding148e1132013-01-21 11:09:22 +010024#include <linux/err.h>
Alan Stern99f91932012-11-01 11:13:08 -040025#include <linux/kernel.h>
Alan Sternd1bb67a2012-11-02 10:13:24 -040026#include <linux/hrtimer.h>
27#include <linux/io.h>
Alan Stern99f91932012-11-01 11:13:08 -040028#include <linux/module.h>
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +000029#include <linux/of.h>
Hans de Goedea4aeb212014-02-07 16:36:41 +010030#include <linux/phy/phy.h>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010031#include <linux/platform_device.h>
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020032#include <linux/reset.h>
Alan Stern99f91932012-11-01 11:13:08 -040033#include <linux/usb.h>
34#include <linux/usb/hcd.h>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010035#include <linux/usb/ehci_pdriver.h>
36
Alan Stern99f91932012-11-01 11:13:08 -040037#include "ehci.h"
38
39#define DRIVER_DESC "EHCI generic platform driver"
Hans de Goedea4aeb212014-02-07 16:36:41 +010040#define EHCI_MAX_CLKS 3
41#define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
42
43struct ehci_platform_priv {
44 struct clk *clks[EHCI_MAX_CLKS];
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020045 struct reset_control *rst;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080046 struct phy **phys;
47 int num_phys;
Hans de Goedea4aeb212014-02-07 16:36:41 +010048};
Alan Stern99f91932012-11-01 11:13:08 -040049
50static const char hcd_name[] = "ehci-platform";
51
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010052static int ehci_platform_reset(struct usb_hcd *hcd)
53{
54 struct platform_device *pdev = to_platform_device(hcd->self.controller);
Jingoo Hand4f09e22013-07-30 19:59:40 +090055 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010056 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
57 int retval;
58
59 hcd->has_tt = pdata->has_tt;
60 ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010061
Sergei Shtylyov743fcce2013-06-02 01:33:56 +040062 if (pdata->pre_setup) {
63 retval = pdata->pre_setup(hcd);
64 if (retval < 0)
65 return retval;
66 }
67
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010068 ehci->caps = hcd->regs + pdata->caps_offset;
69 retval = ehci_setup(hcd);
70 if (retval)
71 return retval;
72
Florian Fainelli45348742012-10-08 15:11:21 +020073 if (pdata->no_io_watchdog)
74 ehci->need_io_watchdog = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010075 return 0;
76}
77
Hans de Goedea4aeb212014-02-07 16:36:41 +010078static int ehci_platform_power_on(struct platform_device *dev)
79{
80 struct usb_hcd *hcd = platform_get_drvdata(dev);
81 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080082 int clk, ret, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +010083
84 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
85 ret = clk_prepare_enable(priv->clks[clk]);
86 if (ret)
87 goto err_disable_clks;
88 }
89
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080090 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
91 if (priv->phys[phy_num]) {
92 ret = phy_init(priv->phys[phy_num]);
93 if (ret)
94 goto err_exit_phy;
95 ret = phy_power_on(priv->phys[phy_num]);
96 if (ret) {
97 phy_exit(priv->phys[phy_num]);
98 goto err_exit_phy;
99 }
100 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100101 }
102
103 return 0;
104
105err_exit_phy:
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800106 while (--phy_num >= 0) {
107 if (priv->phys[phy_num]) {
108 phy_power_off(priv->phys[phy_num]);
109 phy_exit(priv->phys[phy_num]);
110 }
111 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100112err_disable_clks:
113 while (--clk >= 0)
114 clk_disable_unprepare(priv->clks[clk]);
115
116 return ret;
117}
118
119static void ehci_platform_power_off(struct platform_device *dev)
120{
121 struct usb_hcd *hcd = platform_get_drvdata(dev);
122 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800123 int clk, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100124
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800125 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
126 if (priv->phys[phy_num]) {
127 phy_power_off(priv->phys[phy_num]);
128 phy_exit(priv->phys[phy_num]);
129 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100130 }
131
132 for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
133 if (priv->clks[clk])
134 clk_disable_unprepare(priv->clks[clk]);
135}
136
Alan Stern99f91932012-11-01 11:13:08 -0400137static struct hc_driver __read_mostly ehci_platform_hc_driver;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100138
Andi Kleen62d08a12013-04-22 09:44:56 -0700139static const struct ehci_driver_overrides platform_overrides __initconst = {
Hans de Goedea4aeb212014-02-07 16:36:41 +0100140 .reset = ehci_platform_reset,
141 .extra_priv_size = sizeof(struct ehci_platform_priv),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100142};
143
Hans de Goedea4aeb212014-02-07 16:36:41 +0100144static struct usb_ehci_pdata ehci_platform_defaults = {
145 .power_on = ehci_platform_power_on,
146 .power_suspend = ehci_platform_power_off,
147 .power_off = ehci_platform_power_off,
148};
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000149
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500150static int ehci_platform_probe(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100151{
152 struct usb_hcd *hcd;
153 struct resource *res_mem;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100154 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
155 struct ehci_platform_priv *priv;
Hans de Goedead3db5d2014-02-07 16:36:43 +0100156 struct ehci_hcd *ehci;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800157 const char *phy_name;
158 int err, irq, phy_num, clk = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100159
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100160 if (usb_disabled())
161 return -ENODEV;
162
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000163 /*
Hans de Goedea4aeb212014-02-07 16:36:41 +0100164 * Use reasonable defaults so platforms don't have to provide these
165 * with DT probing on ARM.
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000166 */
Hans de Goedea4aeb212014-02-07 16:36:41 +0100167 if (!pdata)
168 pdata = &ehci_platform_defaults;
Russell Kinge1fd7342013-06-27 12:36:37 +0100169
Andreas Herrmannc99e76c2015-01-12 16:05:52 +0100170 err = dma_coerce_mask_and_coherent(&dev->dev,
171 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100172 if (err)
173 return err;
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000174
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100175 irq = platform_get_irq(dev, 0);
176 if (irq < 0) {
Florian Fainelli2350cb02012-10-08 15:11:41 +0200177 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100178 return irq;
179 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100180
Hans de Goedea4aeb212014-02-07 16:36:41 +0100181 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
182 dev_name(&dev->dev));
183 if (!hcd)
184 return -ENOMEM;
185
186 platform_set_drvdata(dev, hcd);
187 dev->dev.platform_data = pdata;
188 priv = hcd_to_ehci_priv(hcd);
Hans de Goedead3db5d2014-02-07 16:36:43 +0100189 ehci = hcd_to_ehci(hcd);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100190
191 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
Hans de Goedead3db5d2014-02-07 16:36:43 +0100192 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
193 ehci->big_endian_mmio = 1;
194
195 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
196 ehci->big_endian_desc = 1;
197
198 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
199 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
200
Wu Liang feng314b41b2014-12-24 18:22:19 +0800201 if (of_property_read_bool(dev->dev.of_node,
202 "needs-reset-on-resume"))
203 pdata->reset_on_resume = 1;
204
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +0200205 if (of_property_read_bool(dev->dev.of_node,
206 "has-transaction-translator"))
207 pdata->has_tt = 1;
208
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800209 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
210 "phys", "#phy-cells");
211 priv->num_phys = priv->num_phys > 0 ? priv->num_phys : 1;
212
213 priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
214 sizeof(struct phy *), GFP_KERNEL);
215 if (!priv->phys)
216 return -ENOMEM;
217
218 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
219 err = of_property_read_string_index(
220 dev->dev.of_node,
221 "phy-names", phy_num,
222 &phy_name);
223
224 if (err < 0) {
225 if (priv->num_phys > 1) {
226 dev_err(&dev->dev, "phy-names not provided");
227 goto err_put_hcd;
228 } else
229 phy_name = "usb";
230 }
231
232 priv->phys[phy_num] = devm_phy_get(&dev->dev,
233 phy_name);
234 if (IS_ERR(priv->phys[phy_num])) {
235 err = PTR_ERR(priv->phys[phy_num]);
236 if ((priv->num_phys > 1) ||
237 (err == -EPROBE_DEFER))
238 goto err_put_hcd;
239 priv->phys[phy_num] = NULL;
240 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100241 }
242
243 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
244 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
245 if (IS_ERR(priv->clks[clk])) {
246 err = PTR_ERR(priv->clks[clk]);
247 if (err == -EPROBE_DEFER)
248 goto err_put_clks;
249 priv->clks[clk] = NULL;
250 break;
251 }
252 }
253 }
254
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200255 priv->rst = devm_reset_control_get_optional(&dev->dev, NULL);
256 if (IS_ERR(priv->rst)) {
257 err = PTR_ERR(priv->rst);
258 if (err == -EPROBE_DEFER)
259 goto err_put_clks;
260 priv->rst = NULL;
261 } else {
262 err = reset_control_deassert(priv->rst);
263 if (err)
264 goto err_put_clks;
265 }
266
Alan Stern843d5e02014-02-11 11:26:10 -0500267 if (pdata->big_endian_desc)
268 ehci->big_endian_desc = 1;
269 if (pdata->big_endian_mmio)
270 ehci->big_endian_mmio = 1;
271
272#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
273 if (ehci->big_endian_mmio) {
274 dev_err(&dev->dev,
275 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
276 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200277 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500278 }
279#endif
280#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
281 if (ehci->big_endian_desc) {
282 dev_err(&dev->dev,
283 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
284 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200285 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500286 }
287#endif
288
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700289 if (pdata->power_on) {
290 err = pdata->power_on(dev);
291 if (err < 0)
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200292 goto err_reset;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700293 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100294
Varka Bhadram2062ff42014-11-04 07:51:25 +0530295 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100296 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
297 if (IS_ERR(hcd->regs)) {
298 err = PTR_ERR(hcd->regs);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100299 goto err_power;
Julia Lawallec03ad82012-08-14 08:47:38 +0200300 }
Varka Bhadram2062ff42014-11-04 07:51:25 +0530301 hcd->rsrc_start = res_mem->start;
302 hcd->rsrc_len = resource_size(res_mem);
303
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100304 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
305 if (err)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100306 goto err_power;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100307
Peter Chen3c9740a2013-11-05 10:46:02 +0800308 device_wakeup_enable(hcd->self.controller);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100309 platform_set_drvdata(dev, hcd);
310
311 return err;
312
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700313err_power:
314 if (pdata->power_off)
315 pdata->power_off(dev);
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200316err_reset:
317 if (priv->rst)
318 reset_control_assert(priv->rst);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100319err_put_clks:
320 while (--clk >= 0)
321 clk_put(priv->clks[clk]);
322err_put_hcd:
323 if (pdata == &ehci_platform_defaults)
324 dev->dev.platform_data = NULL;
325
326 usb_put_hcd(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700327
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100328 return err;
329}
330
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500331static int ehci_platform_remove(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100332{
333 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900334 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100335 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
336 int clk;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100337
338 usb_remove_hcd(hcd);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100339
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700340 if (pdata->power_off)
341 pdata->power_off(dev);
342
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200343 if (priv->rst)
344 reset_control_assert(priv->rst);
345
Hans de Goedea4aeb212014-02-07 16:36:41 +0100346 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
347 clk_put(priv->clks[clk]);
348
349 usb_put_hcd(hcd);
350
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000351 if (pdata == &ehci_platform_defaults)
352 dev->dev.platform_data = NULL;
353
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100354 return 0;
355}
356
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900357#ifdef CONFIG_PM_SLEEP
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100358static int ehci_platform_suspend(struct device *dev)
359{
360 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900361 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700362 struct platform_device *pdev =
363 container_of(dev, struct platform_device, dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400364 bool do_wakeup = device_may_wakeup(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700365 int ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100366
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700367 ret = ehci_suspend(hcd, do_wakeup);
Vivek Gautame155b5b2014-04-10 15:58:02 +0530368 if (ret)
369 return ret;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700370
371 if (pdata->power_suspend)
372 pdata->power_suspend(pdev);
373
374 return ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100375}
376
377static int ehci_platform_resume(struct device *dev)
378{
379 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900380 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700381 struct platform_device *pdev =
382 container_of(dev, struct platform_device, dev);
383
384 if (pdata->power_on) {
385 int err = pdata->power_on(pdev);
386 if (err < 0)
387 return err;
388 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100389
Wu Liang feng314b41b2014-12-24 18:22:19 +0800390 ehci_resume(hcd, pdata->reset_on_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100391 return 0;
392}
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900393#endif /* CONFIG_PM_SLEEP */
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100394
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000395static const struct of_device_id vt8500_ehci_ids[] = {
396 { .compatible = "via,vt8500-ehci", },
397 { .compatible = "wm,prizm-ehci", },
Hans de Goede915974c2014-02-11 17:35:29 +0100398 { .compatible = "generic-ehci", },
Andreas Herrmanna95cfa62015-01-06 13:48:56 +0100399 { .compatible = "cavium,octeon-6335-ehci", },
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000400 {}
401};
Hans de Goedea4aeb212014-02-07 16:36:41 +0100402MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000403
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100404static const struct platform_device_id ehci_platform_table[] = {
405 { "ehci-platform", 0 },
406 { }
407};
408MODULE_DEVICE_TABLE(platform, ehci_platform_table);
409
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900410static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
411 ehci_platform_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100412
413static struct platform_driver ehci_platform_driver = {
414 .id_table = ehci_platform_table,
415 .probe = ehci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500416 .remove = ehci_platform_remove,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100417 .shutdown = usb_hcd_platform_shutdown,
418 .driver = {
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100419 .name = "ehci-platform",
420 .pm = &ehci_platform_pm_ops,
Sachin Kamatae5e5f72013-05-21 17:17:16 +0530421 .of_match_table = vt8500_ehci_ids,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100422 }
423};
Alan Stern99f91932012-11-01 11:13:08 -0400424
425static int __init ehci_platform_init(void)
426{
427 if (usb_disabled())
428 return -ENODEV;
429
430 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
431
432 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
433 return platform_driver_register(&ehci_platform_driver);
434}
435module_init(ehci_platform_init);
436
437static void __exit ehci_platform_cleanup(void)
438{
439 platform_driver_unregister(&ehci_platform_driver);
440}
441module_exit(ehci_platform_cleanup);
442
443MODULE_DESCRIPTION(DRIVER_DESC);
444MODULE_AUTHOR("Hauke Mehrtens");
445MODULE_AUTHOR("Alan Stern");
446MODULE_LICENSE("GPL");