blob: da056fe9d15baad9bdc5165fdb30c1bf206ad036 [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;
Hans de Goedea4aeb212014-02-07 16:36:41 +010046 struct phy *phy;
47};
Alan Stern99f91932012-11-01 11:13:08 -040048
49static const char hcd_name[] = "ehci-platform";
50
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010051static int ehci_platform_reset(struct usb_hcd *hcd)
52{
53 struct platform_device *pdev = to_platform_device(hcd->self.controller);
Jingoo Hand4f09e22013-07-30 19:59:40 +090054 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010055 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
56 int retval;
57
58 hcd->has_tt = pdata->has_tt;
59 ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010060
Sergei Shtylyov743fcce2013-06-02 01:33:56 +040061 if (pdata->pre_setup) {
62 retval = pdata->pre_setup(hcd);
63 if (retval < 0)
64 return retval;
65 }
66
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010067 ehci->caps = hcd->regs + pdata->caps_offset;
68 retval = ehci_setup(hcd);
69 if (retval)
70 return retval;
71
Florian Fainelli45348742012-10-08 15:11:21 +020072 if (pdata->no_io_watchdog)
73 ehci->need_io_watchdog = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010074 return 0;
75}
76
Hans de Goedea4aeb212014-02-07 16:36:41 +010077static 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
101err_exit_phy:
102 phy_exit(priv->phy);
103err_disable_clks:
104 while (--clk >= 0)
105 clk_disable_unprepare(priv->clks[clk]);
106
107 return ret;
108}
109
110static 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 Stern99f91932012-11-01 11:13:08 -0400126static struct hc_driver __read_mostly ehci_platform_hc_driver;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100127
Andi Kleen62d08a12013-04-22 09:44:56 -0700128static const struct ehci_driver_overrides platform_overrides __initconst = {
Hans de Goedea4aeb212014-02-07 16:36:41 +0100129 .reset = ehci_platform_reset,
130 .extra_priv_size = sizeof(struct ehci_platform_priv),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100131};
132
Hans de Goedea4aeb212014-02-07 16:36:41 +0100133static 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 Bergmannf3bc64d2013-03-27 21:44:22 +0000138
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500139static int ehci_platform_probe(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100140{
141 struct usb_hcd *hcd;
142 struct resource *res_mem;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100143 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
144 struct ehci_platform_priv *priv;
Hans de Goedead3db5d2014-02-07 16:36:43 +0100145 struct ehci_hcd *ehci;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100146 int err, irq, clk = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100147
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100148 if (usb_disabled())
149 return -ENODEV;
150
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000151 /*
Hans de Goedea4aeb212014-02-07 16:36:41 +0100152 * Use reasonable defaults so platforms don't have to provide these
153 * with DT probing on ARM.
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000154 */
Hans de Goedea4aeb212014-02-07 16:36:41 +0100155 if (!pdata)
156 pdata = &ehci_platform_defaults;
Russell Kinge1fd7342013-06-27 12:36:37 +0100157
158 err = dma_coerce_mask_and_coherent(&dev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100159 if (err)
160 return err;
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000161
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100162 irq = platform_get_irq(dev, 0);
163 if (irq < 0) {
Florian Fainelli2350cb02012-10-08 15:11:41 +0200164 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100165 return irq;
166 }
167 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
168 if (!res_mem) {
Florian Fainelli5c9b2b22012-10-08 15:11:43 +0200169 dev_err(&dev->dev, "no memory resource provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100170 return -ENXIO;
171 }
172
Hans de Goedea4aeb212014-02-07 16:36:41 +0100173 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
174 dev_name(&dev->dev));
175 if (!hcd)
176 return -ENOMEM;
177
178 platform_set_drvdata(dev, hcd);
179 dev->dev.platform_data = pdata;
180 priv = hcd_to_ehci_priv(hcd);
Hans de Goedead3db5d2014-02-07 16:36:43 +0100181 ehci = hcd_to_ehci(hcd);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100182
183 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
Hans de Goedead3db5d2014-02-07 16:36:43 +0100184 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
185 ehci->big_endian_mmio = 1;
186
187 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
188 ehci->big_endian_desc = 1;
189
190 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
191 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
192
Hans de Goedea4aeb212014-02-07 16:36:41 +0100193 priv->phy = devm_phy_get(&dev->dev, "usb");
194 if (IS_ERR(priv->phy)) {
195 err = PTR_ERR(priv->phy);
196 if (err == -EPROBE_DEFER)
197 goto err_put_hcd;
198 priv->phy = NULL;
199 }
200
201 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
202 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
203 if (IS_ERR(priv->clks[clk])) {
204 err = PTR_ERR(priv->clks[clk]);
205 if (err == -EPROBE_DEFER)
206 goto err_put_clks;
207 priv->clks[clk] = NULL;
208 break;
209 }
210 }
211 }
212
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200213 priv->rst = devm_reset_control_get_optional(&dev->dev, NULL);
214 if (IS_ERR(priv->rst)) {
215 err = PTR_ERR(priv->rst);
216 if (err == -EPROBE_DEFER)
217 goto err_put_clks;
218 priv->rst = NULL;
219 } else {
220 err = reset_control_deassert(priv->rst);
221 if (err)
222 goto err_put_clks;
223 }
224
Alan Stern843d5e02014-02-11 11:26:10 -0500225 if (pdata->big_endian_desc)
226 ehci->big_endian_desc = 1;
227 if (pdata->big_endian_mmio)
228 ehci->big_endian_mmio = 1;
229
230#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
231 if (ehci->big_endian_mmio) {
232 dev_err(&dev->dev,
233 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
234 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200235 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500236 }
237#endif
238#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
239 if (ehci->big_endian_desc) {
240 dev_err(&dev->dev,
241 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
242 err = -EINVAL;
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200243 goto err_reset;
Alan Stern843d5e02014-02-11 11:26:10 -0500244 }
245#endif
246
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700247 if (pdata->power_on) {
248 err = pdata->power_on(dev);
249 if (err < 0)
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200250 goto err_reset;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700251 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100252
253 hcd->rsrc_start = res_mem->start;
254 hcd->rsrc_len = resource_size(res_mem);
255
Thierry Reding148e1132013-01-21 11:09:22 +0100256 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
257 if (IS_ERR(hcd->regs)) {
258 err = PTR_ERR(hcd->regs);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100259 goto err_power;
Julia Lawallec03ad82012-08-14 08:47:38 +0200260 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100261 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
262 if (err)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100263 goto err_power;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100264
Peter Chen3c9740a2013-11-05 10:46:02 +0800265 device_wakeup_enable(hcd->self.controller);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100266 platform_set_drvdata(dev, hcd);
267
268 return err;
269
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700270err_power:
271 if (pdata->power_off)
272 pdata->power_off(dev);
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200273err_reset:
274 if (priv->rst)
275 reset_control_assert(priv->rst);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100276err_put_clks:
277 while (--clk >= 0)
278 clk_put(priv->clks[clk]);
279err_put_hcd:
280 if (pdata == &ehci_platform_defaults)
281 dev->dev.platform_data = NULL;
282
283 usb_put_hcd(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700284
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100285 return err;
286}
287
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500288static int ehci_platform_remove(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100289{
290 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900291 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100292 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
293 int clk;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100294
295 usb_remove_hcd(hcd);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100296
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700297 if (pdata->power_off)
298 pdata->power_off(dev);
299
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +0200300 if (priv->rst)
301 reset_control_assert(priv->rst);
302
Hans de Goedea4aeb212014-02-07 16:36:41 +0100303 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
304 clk_put(priv->clks[clk]);
305
306 usb_put_hcd(hcd);
307
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000308 if (pdata == &ehci_platform_defaults)
309 dev->dev.platform_data = NULL;
310
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100311 return 0;
312}
313
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900314#ifdef CONFIG_PM_SLEEP
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100315static int ehci_platform_suspend(struct device *dev)
316{
317 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900318 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700319 struct platform_device *pdev =
320 container_of(dev, struct platform_device, dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400321 bool do_wakeup = device_may_wakeup(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700322 int ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100323
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700324 ret = ehci_suspend(hcd, do_wakeup);
Vivek Gautame155b5b2014-04-10 15:58:02 +0530325 if (ret)
326 return ret;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700327
328 if (pdata->power_suspend)
329 pdata->power_suspend(pdev);
330
331 return ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100332}
333
334static int ehci_platform_resume(struct device *dev)
335{
336 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900337 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700338 struct platform_device *pdev =
339 container_of(dev, struct platform_device, dev);
340
341 if (pdata->power_on) {
342 int err = pdata->power_on(pdev);
343 if (err < 0)
344 return err;
345 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100346
Alan Sternc5cf9212012-06-28 11:19:02 -0400347 ehci_resume(hcd, false);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100348 return 0;
349}
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900350#endif /* CONFIG_PM_SLEEP */
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100351
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000352static const struct of_device_id vt8500_ehci_ids[] = {
353 { .compatible = "via,vt8500-ehci", },
354 { .compatible = "wm,prizm-ehci", },
Hans de Goede915974c2014-02-11 17:35:29 +0100355 { .compatible = "generic-ehci", },
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000356 {}
357};
Hans de Goedea4aeb212014-02-07 16:36:41 +0100358MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000359
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100360static const struct platform_device_id ehci_platform_table[] = {
361 { "ehci-platform", 0 },
362 { }
363};
364MODULE_DEVICE_TABLE(platform, ehci_platform_table);
365
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900366static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
367 ehci_platform_resume);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100368
369static struct platform_driver ehci_platform_driver = {
370 .id_table = ehci_platform_table,
371 .probe = ehci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500372 .remove = ehci_platform_remove,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100373 .shutdown = usb_hcd_platform_shutdown,
374 .driver = {
375 .owner = THIS_MODULE,
376 .name = "ehci-platform",
377 .pm = &ehci_platform_pm_ops,
Sachin Kamatae5e5f72013-05-21 17:17:16 +0530378 .of_match_table = vt8500_ehci_ids,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100379 }
380};
Alan Stern99f91932012-11-01 11:13:08 -0400381
382static int __init ehci_platform_init(void)
383{
384 if (usb_disabled())
385 return -ENODEV;
386
387 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
388
389 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
390 return platform_driver_register(&ehci_platform_driver);
391}
392module_init(ehci_platform_init);
393
394static void __exit ehci_platform_cleanup(void)
395{
396 platform_driver_unregister(&ehci_platform_driver);
397}
398module_exit(ehci_platform_cleanup);
399
400MODULE_DESCRIPTION(DRIVER_DESC);
401MODULE_AUTHOR("Hauke Mehrtens");
402MODULE_AUTHOR("Alan Stern");
403MODULE_LICENSE("GPL");