blob: 1757ebb471b6d992d87d549fc6c61a7f375fcb71 [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"
Hans de Goedea4aeb212014-02-07 16:36:41 +010041#define EHCI_MAX_CLKS 3
42#define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
43
44struct ehci_platform_priv {
45 struct clk *clks[EHCI_MAX_CLKS];
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020046 struct reset_control *rst;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080047 struct phy **phys;
48 int num_phys;
Alban Bedelb4629a72015-08-04 10:59:17 +020049 bool reset_on_resume;
Hans de Goedea4aeb212014-02-07 16:36:41 +010050};
Alan Stern99f91932012-11-01 11:13:08 -040051
52static const char hcd_name[] = "ehci-platform";
53
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010054static int ehci_platform_reset(struct usb_hcd *hcd)
55{
56 struct platform_device *pdev = to_platform_device(hcd->self.controller);
Jingoo Hand4f09e22013-07-30 19:59:40 +090057 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010058 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
59 int retval;
60
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010061 ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010062
Sergei Shtylyov743fcce2013-06-02 01:33:56 +040063 if (pdata->pre_setup) {
64 retval = pdata->pre_setup(hcd);
65 if (retval < 0)
66 return retval;
67 }
68
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010069 ehci->caps = hcd->regs + pdata->caps_offset;
70 retval = ehci_setup(hcd);
71 if (retval)
72 return retval;
73
Florian Fainelli45348742012-10-08 15:11:21 +020074 if (pdata->no_io_watchdog)
75 ehci->need_io_watchdog = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010076 return 0;
77}
78
Hans de Goedea4aeb212014-02-07 16:36:41 +010079static int ehci_platform_power_on(struct platform_device *dev)
80{
81 struct usb_hcd *hcd = platform_get_drvdata(dev);
82 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080083 int clk, ret, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +010084
85 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
86 ret = clk_prepare_enable(priv->clks[clk]);
87 if (ret)
88 goto err_disable_clks;
89 }
90
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080091 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -070092 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;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -080099 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100100 }
101
102 return 0;
103
104err_exit_phy:
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800105 while (--phy_num >= 0) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700106 phy_power_off(priv->phys[phy_num]);
107 phy_exit(priv->phys[phy_num]);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800108 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100109err_disable_clks:
110 while (--clk >= 0)
111 clk_disable_unprepare(priv->clks[clk]);
112
113 return ret;
114}
115
116static void ehci_platform_power_off(struct platform_device *dev)
117{
118 struct usb_hcd *hcd = platform_get_drvdata(dev);
119 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800120 int clk, phy_num;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100121
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800122 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700123 phy_power_off(priv->phys[phy_num]);
124 phy_exit(priv->phys[phy_num]);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100125 }
126
127 for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
128 if (priv->clks[clk])
129 clk_disable_unprepare(priv->clks[clk]);
130}
131
Alan Stern99f91932012-11-01 11:13:08 -0400132static struct hc_driver __read_mostly ehci_platform_hc_driver;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100133
Andi Kleen62d08a12013-04-22 09:44:56 -0700134static const struct ehci_driver_overrides platform_overrides __initconst = {
Hans de Goedea4aeb212014-02-07 16:36:41 +0100135 .reset = ehci_platform_reset,
136 .extra_priv_size = sizeof(struct ehci_platform_priv),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100137};
138
Hans de Goedea4aeb212014-02-07 16:36:41 +0100139static struct usb_ehci_pdata ehci_platform_defaults = {
140 .power_on = ehci_platform_power_on,
141 .power_suspend = ehci_platform_power_off,
142 .power_off = ehci_platform_power_off,
143};
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000144
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500145static int ehci_platform_probe(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100146{
147 struct usb_hcd *hcd;
148 struct resource *res_mem;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100149 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
150 struct ehci_platform_priv *priv;
Hans de Goedead3db5d2014-02-07 16:36:43 +0100151 struct ehci_hcd *ehci;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800152 int err, irq, phy_num, clk = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100153
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100154 if (usb_disabled())
155 return -ENODEV;
156
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000157 /*
Hans de Goedea4aeb212014-02-07 16:36:41 +0100158 * Use reasonable defaults so platforms don't have to provide these
159 * with DT probing on ARM.
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000160 */
Hans de Goedea4aeb212014-02-07 16:36:41 +0100161 if (!pdata)
162 pdata = &ehci_platform_defaults;
Russell Kinge1fd7342013-06-27 12:36:37 +0100163
Andreas Herrmannc99e76c2015-01-12 16:05:52 +0100164 err = dma_coerce_mask_and_coherent(&dev->dev,
165 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
Jeremy Linton17f69b52015-08-19 16:36:31 -0500166 if (err) {
167 dev_err(&dev->dev, "Error: DMA mask configuration failed\n");
Russell King22d9d8e2013-06-10 16:28:49 +0100168 return err;
Jeremy Linton17f69b52015-08-19 16:36:31 -0500169 }
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000170
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100171 irq = platform_get_irq(dev, 0);
172 if (irq < 0) {
Florian Fainelli2350cb02012-10-08 15:11:41 +0200173 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100174 return irq;
175 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100176
Hans de Goedea4aeb212014-02-07 16:36:41 +0100177 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
178 dev_name(&dev->dev));
179 if (!hcd)
180 return -ENOMEM;
181
182 platform_set_drvdata(dev, hcd);
183 dev->dev.platform_data = pdata;
184 priv = hcd_to_ehci_priv(hcd);
Hans de Goedead3db5d2014-02-07 16:36:43 +0100185 ehci = hcd_to_ehci(hcd);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100186
187 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
Hans de Goedead3db5d2014-02-07 16:36:43 +0100188 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
189 ehci->big_endian_mmio = 1;
190
191 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
192 ehci->big_endian_desc = 1;
193
194 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
195 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
196
Wu Liang feng314b41b2014-12-24 18:22:19 +0800197 if (of_property_read_bool(dev->dev.of_node,
198 "needs-reset-on-resume"))
Alban Bedelb4629a72015-08-04 10:59:17 +0200199 priv->reset_on_resume = true;
Wu Liang feng314b41b2014-12-24 18:22:19 +0800200
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +0200201 if (of_property_read_bool(dev->dev.of_node,
202 "has-transaction-translator"))
Alban Bedelb4629a72015-08-04 10:59:17 +0200203 hcd->has_tt = 1;
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +0200204
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800205 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
206 "phys", "#phy-cells");
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800207
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700208 if (priv->num_phys > 0) {
209 priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
210 sizeof(struct phy *), GFP_KERNEL);
211 if (!priv->phys)
212 return -ENOMEM;
213 } else
214 priv->num_phys = 0;
Arun Ramamurthy7e7a0e62015-01-19 16:05:29 -0800215
216 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthy216e2992015-04-22 16:04:12 -0700217 priv->phys[phy_num] = devm_of_phy_get_by_index(
218 &dev->dev, dev->dev.of_node, phy_num);
219 if (IS_ERR(priv->phys[phy_num])) {
220 err = PTR_ERR(priv->phys[phy_num]);
221 goto err_put_hcd;
222 }
Hans de Goedea4aeb212014-02-07 16:36:41 +0100223 }
224
225 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
226 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
227 if (IS_ERR(priv->clks[clk])) {
228 err = PTR_ERR(priv->clks[clk]);
229 if (err == -EPROBE_DEFER)
230 goto err_put_clks;
231 priv->clks[clk] = NULL;
232 break;
233 }
234 }
235 }
236
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200237 priv->rst = devm_reset_control_get_optional(&dev->dev, NULL);
238 if (IS_ERR(priv->rst)) {
239 err = PTR_ERR(priv->rst);
240 if (err == -EPROBE_DEFER)
241 goto err_put_clks;
242 priv->rst = NULL;
243 } else {
244 err = reset_control_deassert(priv->rst);
245 if (err)
246 goto err_put_clks;
247 }
248
Alan Stern843d5e02014-02-11 11:26:10 -0500249 if (pdata->big_endian_desc)
250 ehci->big_endian_desc = 1;
251 if (pdata->big_endian_mmio)
252 ehci->big_endian_mmio = 1;
Alban Bedelb4629a72015-08-04 10:59:17 +0200253 if (pdata->has_tt)
254 hcd->has_tt = 1;
255 if (pdata->reset_on_resume)
256 priv->reset_on_resume = true;
Alan Stern843d5e02014-02-11 11:26:10 -0500257
258#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
259 if (ehci->big_endian_mmio) {
260 dev_err(&dev->dev,
261 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
262 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200263 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500264 }
265#endif
266#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
267 if (ehci->big_endian_desc) {
268 dev_err(&dev->dev,
269 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
270 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200271 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500272 }
273#endif
274
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700275 if (pdata->power_on) {
276 err = pdata->power_on(dev);
277 if (err < 0)
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200278 goto err_reset;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700279 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100280
Varka Bhadram2062ff42014-11-04 07:51:25 +0530281 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100282 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
283 if (IS_ERR(hcd->regs)) {
284 err = PTR_ERR(hcd->regs);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100285 goto err_power;
Julia Lawallec03ad82012-08-14 08:47:38 +0200286 }
Varka Bhadram2062ff42014-11-04 07:51:25 +0530287 hcd->rsrc_start = res_mem->start;
288 hcd->rsrc_len = resource_size(res_mem);
289
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100290 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
291 if (err)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100292 goto err_power;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100293
Peter Chen3c9740a2013-11-05 10:46:02 +0800294 device_wakeup_enable(hcd->self.controller);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100295 platform_set_drvdata(dev, hcd);
296
297 return err;
298
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700299err_power:
300 if (pdata->power_off)
301 pdata->power_off(dev);
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200302err_reset:
303 if (priv->rst)
304 reset_control_assert(priv->rst);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100305err_put_clks:
306 while (--clk >= 0)
307 clk_put(priv->clks[clk]);
308err_put_hcd:
309 if (pdata == &ehci_platform_defaults)
310 dev->dev.platform_data = NULL;
311
312 usb_put_hcd(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700313
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100314 return err;
315}
316
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500317static int ehci_platform_remove(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100318{
319 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900320 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100321 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
322 int clk;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100323
324 usb_remove_hcd(hcd);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100325
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700326 if (pdata->power_off)
327 pdata->power_off(dev);
328
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200329 if (priv->rst)
330 reset_control_assert(priv->rst);
331
Hans de Goedea4aeb212014-02-07 16:36:41 +0100332 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
333 clk_put(priv->clks[clk]);
334
335 usb_put_hcd(hcd);
336
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000337 if (pdata == &ehci_platform_defaults)
338 dev->dev.platform_data = NULL;
339
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100340 return 0;
341}
342
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900343#ifdef CONFIG_PM_SLEEP
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100344static int ehci_platform_suspend(struct device *dev)
345{
346 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900347 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Geliang Tang20db5512015-12-23 21:26:52 +0800348 struct platform_device *pdev = to_platform_device(dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400349 bool do_wakeup = device_may_wakeup(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700350 int ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100351
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700352 ret = ehci_suspend(hcd, do_wakeup);
Vivek Gautame155b5b2014-04-10 15:58:02 +0530353 if (ret)
354 return ret;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700355
356 if (pdata->power_suspend)
357 pdata->power_suspend(pdev);
358
359 return ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100360}
361
362static int ehci_platform_resume(struct device *dev)
363{
364 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900365 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Geliang Tang20db5512015-12-23 21:26:52 +0800366 struct platform_device *pdev = to_platform_device(dev);
Alban Bedelb4629a72015-08-04 10:59:17 +0200367 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700368
369 if (pdata->power_on) {
370 int err = pdata->power_on(pdev);
371 if (err < 0)
372 return err;
373 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100374
Alban Bedelb4629a72015-08-04 10:59:17 +0200375 ehci_resume(hcd, priv->reset_on_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100376 return 0;
377}
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900378#endif /* CONFIG_PM_SLEEP */
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100379
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000380static const struct of_device_id vt8500_ehci_ids[] = {
381 { .compatible = "via,vt8500-ehci", },
382 { .compatible = "wm,prizm-ehci", },
Hans de Goede915974c2014-02-11 17:35:29 +0100383 { .compatible = "generic-ehci", },
Andreas Herrmanna95cfa62015-01-06 13:48:56 +0100384 { .compatible = "cavium,octeon-6335-ehci", },
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000385 {}
386};
Hans de Goedea4aeb212014-02-07 16:36:41 +0100387MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000388
Jeremy Linton776c15d2015-08-19 16:36:32 -0500389static const struct acpi_device_id ehci_acpi_match[] = {
390 { "PNP0D20", 0 }, /* EHCI controller without debug */
391 { }
392};
393MODULE_DEVICE_TABLE(acpi, ehci_acpi_match);
394
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100395static const struct platform_device_id ehci_platform_table[] = {
396 { "ehci-platform", 0 },
397 { }
398};
399MODULE_DEVICE_TABLE(platform, ehci_platform_table);
400
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900401static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
402 ehci_platform_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100403
404static struct platform_driver ehci_platform_driver = {
405 .id_table = ehci_platform_table,
406 .probe = ehci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500407 .remove = ehci_platform_remove,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100408 .shutdown = usb_hcd_platform_shutdown,
409 .driver = {
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100410 .name = "ehci-platform",
411 .pm = &ehci_platform_pm_ops,
Sachin Kamatae5e5f72013-05-21 17:17:16 +0530412 .of_match_table = vt8500_ehci_ids,
Jeremy Linton776c15d2015-08-19 16:36:32 -0500413 .acpi_match_table = ACPI_PTR(ehci_acpi_match),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100414 }
415};
Alan Stern99f91932012-11-01 11:13:08 -0400416
417static int __init ehci_platform_init(void)
418{
419 if (usb_disabled())
420 return -ENODEV;
421
422 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
423
424 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
425 return platform_driver_register(&ehci_platform_driver);
426}
427module_init(ehci_platform_init);
428
429static void __exit ehci_platform_cleanup(void)
430{
431 platform_driver_unregister(&ehci_platform_driver);
432}
433module_exit(ehci_platform_cleanup);
434
435MODULE_DESCRIPTION(DRIVER_DESC);
436MODULE_AUTHOR("Hauke Mehrtens");
437MODULE_AUTHOR("Alan Stern");
438MODULE_LICENSE("GPL");