blob: 876dca4fc2162520603afdfd430e26d54b82531f [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 */
Jeremy Linton776c15d2015-08-19 16:36:32 -050022#include <linux/acpi.h>
Hans de Goedea4aeb212014-02-07 16:36:41 +010023#include <linux/clk.h>
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +000024#include <linux/dma-mapping.h>
Thierry Reding148e1132013-01-21 11:09:22 +010025#include <linux/err.h>
Alan Stern99f91932012-11-01 11:13:08 -040026#include <linux/kernel.h>
Alan Sternd1bb67a2012-11-02 10:13:24 -040027#include <linux/hrtimer.h>
28#include <linux/io.h>
Alan Stern99f91932012-11-01 11:13:08 -040029#include <linux/module.h>
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +000030#include <linux/of.h>
Hans de Goedea4aeb212014-02-07 16:36:41 +010031#include <linux/phy/phy.h>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010032#include <linux/platform_device.h>
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020033#include <linux/reset.h>
Alan Stern99f91932012-11-01 11:13:08 -040034#include <linux/usb.h>
35#include <linux/usb/hcd.h>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010036#include <linux/usb/ehci_pdriver.h>
37
Alan Stern99f91932012-11-01 11:13:08 -040038#include "ehci.h"
39
40#define DRIVER_DESC "EHCI generic platform driver"
Icenowy Zheng73577d62016-08-12 11:06:22 +080041#define EHCI_MAX_CLKS 4
Jiancheng Xued0e08b02016-05-12 09:41:37 +080042#define EHCI_MAX_RSTS 3
Hans de Goedea4aeb212014-02-07 16:36:41 +010043#define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
44
45struct ehci_platform_priv {
46 struct clk *clks[EHCI_MAX_CLKS];
Jiancheng Xued0e08b02016-05-12 09:41:37 +080047 struct reset_control *rsts[EHCI_MAX_RSTS];
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080048 struct phy **phys;
49 int num_phys;
Alban Bedelb4629a72015-08-04 10:59:17 +020050 bool reset_on_resume;
Hans de Goedea4aeb212014-02-07 16:36:41 +010051};
Alan Stern99f91932012-11-01 11:13:08 -040052
53static const char hcd_name[] = "ehci-platform";
54
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010055static int ehci_platform_reset(struct usb_hcd *hcd)
56{
57 struct platform_device *pdev = to_platform_device(hcd->self.controller);
Jingoo Hand4f09e22013-07-30 19:59:40 +090058 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010059 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
60 int retval;
61
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010062 ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010063
Sergei Shtylyov743fcce2013-06-02 01:33:56 +040064 if (pdata->pre_setup) {
65 retval = pdata->pre_setup(hcd);
66 if (retval < 0)
67 return retval;
68 }
69
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010070 ehci->caps = hcd->regs + pdata->caps_offset;
71 retval = ehci_setup(hcd);
72 if (retval)
73 return retval;
74
Florian Fainelli45348742012-10-08 15:11:21 +020075 if (pdata->no_io_watchdog)
76 ehci->need_io_watchdog = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010077 return 0;
78}
79
Hans de Goedea4aeb212014-02-07 16:36:41 +010080static int ehci_platform_power_on(struct platform_device *dev)
81{
82 struct usb_hcd *hcd = platform_get_drvdata(dev);
83 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080084 int clk, ret, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +010085
86 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
87 ret = clk_prepare_enable(priv->clks[clk]);
88 if (ret)
89 goto err_disable_clks;
90 }
91
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080092 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -070093 ret = phy_init(priv->phys[phy_num]);
94 if (ret)
95 goto err_exit_phy;
96 ret = phy_power_on(priv->phys[phy_num]);
97 if (ret) {
98 phy_exit(priv->phys[phy_num]);
99 goto err_exit_phy;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800100 }
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) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700107 phy_power_off(priv->phys[phy_num]);
108 phy_exit(priv->phys[phy_num]);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800109 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100110err_disable_clks:
111 while (--clk >= 0)
112 clk_disable_unprepare(priv->clks[clk]);
113
114 return ret;
115}
116
117static void ehci_platform_power_off(struct platform_device *dev)
118{
119 struct usb_hcd *hcd = platform_get_drvdata(dev);
120 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800121 int clk, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100122
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800123 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700124 phy_power_off(priv->phys[phy_num]);
125 phy_exit(priv->phys[phy_num]);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100126 }
127
128 for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
129 if (priv->clks[clk])
130 clk_disable_unprepare(priv->clks[clk]);
131}
132
Alan Stern99f91932012-11-01 11:13:08 -0400133static struct hc_driver __read_mostly ehci_platform_hc_driver;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100134
Andi Kleen62d08a12013-04-22 09:44:56 -0700135static const struct ehci_driver_overrides platform_overrides __initconst = {
Hans de Goedea4aeb212014-02-07 16:36:41 +0100136 .reset = ehci_platform_reset,
137 .extra_priv_size = sizeof(struct ehci_platform_priv),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100138};
139
Hans de Goedea4aeb212014-02-07 16:36:41 +0100140static struct usb_ehci_pdata ehci_platform_defaults = {
141 .power_on = ehci_platform_power_on,
142 .power_suspend = ehci_platform_power_off,
143 .power_off = ehci_platform_power_off,
144};
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000145
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500146static int ehci_platform_probe(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100147{
148 struct usb_hcd *hcd;
149 struct resource *res_mem;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100150 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
151 struct ehci_platform_priv *priv;
Hans de Goedead3db5d2014-02-07 16:36:43 +0100152 struct ehci_hcd *ehci;
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800153 int err, irq, phy_num, clk = 0, rst;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100154
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100155 if (usb_disabled())
156 return -ENODEV;
157
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000158 /*
Hans de Goedea4aeb212014-02-07 16:36:41 +0100159 * Use reasonable defaults so platforms don't have to provide these
160 * with DT probing on ARM.
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000161 */
Hans de Goedea4aeb212014-02-07 16:36:41 +0100162 if (!pdata)
163 pdata = &ehci_platform_defaults;
Russell Kinge1fd7342013-06-27 12:36:37 +0100164
Andreas Herrmannc99e76c2015-01-12 16:05:52 +0100165 err = dma_coerce_mask_and_coherent(&dev->dev,
166 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
Jeremy Linton17f69b52015-08-19 16:36:31 -0500167 if (err) {
168 dev_err(&dev->dev, "Error: DMA mask configuration failed\n");
Russell King22d9d8e2013-06-10 16:28:49 +0100169 return err;
Jeremy Linton17f69b52015-08-19 16:36:31 -0500170 }
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000171
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100172 irq = platform_get_irq(dev, 0);
173 if (irq < 0) {
Florian Fainelli2350cb02012-10-08 15:11:41 +0200174 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100175 return irq;
176 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100177
Hans de Goedea4aeb212014-02-07 16:36:41 +0100178 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
179 dev_name(&dev->dev));
180 if (!hcd)
181 return -ENOMEM;
182
183 platform_set_drvdata(dev, hcd);
184 dev->dev.platform_data = pdata;
185 priv = hcd_to_ehci_priv(hcd);
Hans de Goedead3db5d2014-02-07 16:36:43 +0100186 ehci = hcd_to_ehci(hcd);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100187
188 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
Hans de Goedead3db5d2014-02-07 16:36:43 +0100189 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
190 ehci->big_endian_mmio = 1;
191
192 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
193 ehci->big_endian_desc = 1;
194
195 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
196 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
197
Wu Liang feng314b41b2014-12-24 18:22:19 +0800198 if (of_property_read_bool(dev->dev.of_node,
199 "needs-reset-on-resume"))
Alban Bedelb4629a72015-08-04 10:59:17 +0200200 priv->reset_on_resume = true;
Wu Liang feng314b41b2014-12-24 18:22:19 +0800201
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +0200202 if (of_property_read_bool(dev->dev.of_node,
203 "has-transaction-translator"))
Alban Bedelb4629a72015-08-04 10:59:17 +0200204 hcd->has_tt = 1;
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +0200205
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800206 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
207 "phys", "#phy-cells");
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800208
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700209 if (priv->num_phys > 0) {
210 priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
211 sizeof(struct phy *), GFP_KERNEL);
212 if (!priv->phys)
213 return -ENOMEM;
214 } else
215 priv->num_phys = 0;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800216
217 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700218 priv->phys[phy_num] = devm_of_phy_get_by_index(
219 &dev->dev, dev->dev.of_node, phy_num);
220 if (IS_ERR(priv->phys[phy_num])) {
221 err = PTR_ERR(priv->phys[phy_num]);
222 goto err_put_hcd;
223 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100224 }
225
226 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
227 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
228 if (IS_ERR(priv->clks[clk])) {
229 err = PTR_ERR(priv->clks[clk]);
230 if (err == -EPROBE_DEFER)
231 goto err_put_clks;
232 priv->clks[clk] = NULL;
233 break;
234 }
235 }
236 }
237
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800238 for (rst = 0; rst < EHCI_MAX_RSTS; rst++) {
Hans de Goede76d15c82016-06-08 18:54:40 +0200239 priv->rsts[rst] = devm_reset_control_get_shared_by_index(
240 &dev->dev, rst);
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800241 if (IS_ERR(priv->rsts[rst])) {
242 err = PTR_ERR(priv->rsts[rst]);
243 if (err == -EPROBE_DEFER)
244 goto err_reset;
245 priv->rsts[rst] = NULL;
246 break;
247 }
248
249 err = reset_control_deassert(priv->rsts[rst]);
Hans de Goede76d15c82016-06-08 18:54:40 +0200250 if (err)
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800251 goto err_reset;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200252 }
253
Alan Stern843d5e02014-02-11 11:26:10 -0500254 if (pdata->big_endian_desc)
255 ehci->big_endian_desc = 1;
256 if (pdata->big_endian_mmio)
257 ehci->big_endian_mmio = 1;
Alban Bedelb4629a72015-08-04 10:59:17 +0200258 if (pdata->has_tt)
259 hcd->has_tt = 1;
260 if (pdata->reset_on_resume)
261 priv->reset_on_resume = true;
Alan Stern843d5e02014-02-11 11:26:10 -0500262
263#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
264 if (ehci->big_endian_mmio) {
265 dev_err(&dev->dev,
266 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
267 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200268 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500269 }
270#endif
271#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
272 if (ehci->big_endian_desc) {
273 dev_err(&dev->dev,
274 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
275 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200276 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500277 }
278#endif
279
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700280 if (pdata->power_on) {
281 err = pdata->power_on(dev);
282 if (err < 0)
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200283 goto err_reset;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700284 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100285
Varka Bhadram2062ff42014-11-04 07:51:25 +0530286 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100287 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
288 if (IS_ERR(hcd->regs)) {
289 err = PTR_ERR(hcd->regs);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100290 goto err_power;
Julia Lawallec03ad82012-08-14 08:47:38 +0200291 }
Varka Bhadram2062ff42014-11-04 07:51:25 +0530292 hcd->rsrc_start = res_mem->start;
293 hcd->rsrc_len = resource_size(res_mem);
294
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100295 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
296 if (err)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100297 goto err_power;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100298
Peter Chen3c9740a2013-11-05 10:46:02 +0800299 device_wakeup_enable(hcd->self.controller);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100300 platform_set_drvdata(dev, hcd);
301
302 return err;
303
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700304err_power:
305 if (pdata->power_off)
306 pdata->power_off(dev);
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200307err_reset:
Hans de Goede76d15c82016-06-08 18:54:40 +0200308 while (--rst >= 0)
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800309 reset_control_assert(priv->rsts[rst]);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100310err_put_clks:
311 while (--clk >= 0)
312 clk_put(priv->clks[clk]);
313err_put_hcd:
314 if (pdata == &ehci_platform_defaults)
315 dev->dev.platform_data = NULL;
316
317 usb_put_hcd(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700318
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100319 return err;
320}
321
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500322static int ehci_platform_remove(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100323{
324 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900325 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100326 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800327 int clk, rst;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100328
329 usb_remove_hcd(hcd);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100330
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700331 if (pdata->power_off)
332 pdata->power_off(dev);
333
Hans de Goede76d15c82016-06-08 18:54:40 +0200334 for (rst = 0; rst < EHCI_MAX_RSTS && priv->rsts[rst]; rst++)
Jiancheng Xued0e08b02016-05-12 09:41:37 +0800335 reset_control_assert(priv->rsts[rst]);
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200336
Hans de Goedea4aeb212014-02-07 16:36:41 +0100337 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
338 clk_put(priv->clks[clk]);
339
340 usb_put_hcd(hcd);
341
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000342 if (pdata == &ehci_platform_defaults)
343 dev->dev.platform_data = NULL;
344
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100345 return 0;
346}
347
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900348#ifdef CONFIG_PM_SLEEP
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100349static int ehci_platform_suspend(struct device *dev)
350{
351 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900352 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Geliang Tang20db5512015-12-23 21:26:52 +0800353 struct platform_device *pdev = to_platform_device(dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400354 bool do_wakeup = device_may_wakeup(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700355 int ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100356
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700357 ret = ehci_suspend(hcd, do_wakeup);
Vivek Gautame155b5b2014-04-10 15:58:02 +0530358 if (ret)
359 return ret;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700360
361 if (pdata->power_suspend)
362 pdata->power_suspend(pdev);
363
364 return ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100365}
366
367static int ehci_platform_resume(struct device *dev)
368{
369 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900370 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Geliang Tang20db5512015-12-23 21:26:52 +0800371 struct platform_device *pdev = to_platform_device(dev);
Alban Bedelb4629a72015-08-04 10:59:17 +0200372 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700373
374 if (pdata->power_on) {
375 int err = pdata->power_on(pdev);
376 if (err < 0)
377 return err;
378 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100379
Alban Bedelb4629a72015-08-04 10:59:17 +0200380 ehci_resume(hcd, priv->reset_on_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100381 return 0;
382}
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900383#endif /* CONFIG_PM_SLEEP */
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100384
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000385static const struct of_device_id vt8500_ehci_ids[] = {
386 { .compatible = "via,vt8500-ehci", },
387 { .compatible = "wm,prizm-ehci", },
Hans de Goede915974c2014-02-11 17:35:29 +0100388 { .compatible = "generic-ehci", },
Andreas Herrmanna95cfa62015-01-06 13:48:56 +0100389 { .compatible = "cavium,octeon-6335-ehci", },
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000390 {}
391};
Hans de Goedea4aeb212014-02-07 16:36:41 +0100392MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000393
Jeremy Linton776c15d2015-08-19 16:36:32 -0500394static const struct acpi_device_id ehci_acpi_match[] = {
395 { "PNP0D20", 0 }, /* EHCI controller without debug */
396 { }
397};
398MODULE_DEVICE_TABLE(acpi, ehci_acpi_match);
399
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100400static const struct platform_device_id ehci_platform_table[] = {
401 { "ehci-platform", 0 },
402 { }
403};
404MODULE_DEVICE_TABLE(platform, ehci_platform_table);
405
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900406static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
407 ehci_platform_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100408
409static struct platform_driver ehci_platform_driver = {
410 .id_table = ehci_platform_table,
411 .probe = ehci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500412 .remove = ehci_platform_remove,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100413 .shutdown = usb_hcd_platform_shutdown,
414 .driver = {
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100415 .name = "ehci-platform",
416 .pm = &ehci_platform_pm_ops,
Sachin Kamatae5e5f72013-05-21 17:17:16 +0530417 .of_match_table = vt8500_ehci_ids,
Jeremy Linton776c15d2015-08-19 16:36:32 -0500418 .acpi_match_table = ACPI_PTR(ehci_acpi_match),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100419 }
420};
Alan Stern99f91932012-11-01 11:13:08 -0400421
422static int __init ehci_platform_init(void)
423{
424 if (usb_disabled())
425 return -ENODEV;
426
427 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
428
429 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
430 return platform_driver_register(&ehci_platform_driver);
431}
432module_init(ehci_platform_init);
433
434static void __exit ehci_platform_cleanup(void)
435{
436 platform_driver_unregister(&ehci_platform_driver);
437}
438module_exit(ehci_platform_cleanup);
439
440MODULE_DESCRIPTION(DRIVER_DESC);
441MODULE_AUTHOR("Hauke Mehrtens");
442MODULE_AUTHOR("Alan Stern");
443MODULE_LICENSE("GPL");