blob: b3a0e11073aae8a3ed873305cd1737a1d2a45beb [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>
Alan Stern99f91932012-11-01 11:13:08 -040032#include <linux/usb.h>
33#include <linux/usb/hcd.h>
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010034#include <linux/usb/ehci_pdriver.h>
35
Alan Stern99f91932012-11-01 11:13:08 -040036#include "ehci.h"
37
38#define DRIVER_DESC "EHCI generic platform driver"
Hans de Goedea4aeb212014-02-07 16:36:41 +010039#define EHCI_MAX_CLKS 3
40#define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
41
42struct ehci_platform_priv {
43 struct clk *clks[EHCI_MAX_CLKS];
44 struct phy *phy;
45};
Alan Stern99f91932012-11-01 11:13:08 -040046
47static const char hcd_name[] = "ehci-platform";
48
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010049static int ehci_platform_reset(struct usb_hcd *hcd)
50{
51 struct platform_device *pdev = to_platform_device(hcd->self.controller);
Jingoo Hand4f09e22013-07-30 19:59:40 +090052 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010053 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;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010058
Sergei Shtylyov743fcce2013-06-02 01:33:56 +040059 if (pdata->pre_setup) {
60 retval = pdata->pre_setup(hcd);
61 if (retval < 0)
62 return retval;
63 }
64
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010065 ehci->caps = hcd->regs + pdata->caps_offset;
66 retval = ehci_setup(hcd);
67 if (retval)
68 return retval;
69
Florian Fainelli45348742012-10-08 15:11:21 +020070 if (pdata->no_io_watchdog)
71 ehci->need_io_watchdog = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +010072 return 0;
73}
74
Hans de Goedea4aeb212014-02-07 16:36:41 +010075static int ehci_platform_power_on(struct platform_device *dev)
76{
77 struct usb_hcd *hcd = platform_get_drvdata(dev);
78 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
79 int clk, ret;
80
81 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
82 ret = clk_prepare_enable(priv->clks[clk]);
83 if (ret)
84 goto err_disable_clks;
85 }
86
87 if (priv->phy) {
88 ret = phy_init(priv->phy);
89 if (ret)
90 goto err_disable_clks;
91
92 ret = phy_power_on(priv->phy);
93 if (ret)
94 goto err_exit_phy;
95 }
96
97 return 0;
98
99err_exit_phy:
100 phy_exit(priv->phy);
101err_disable_clks:
102 while (--clk >= 0)
103 clk_disable_unprepare(priv->clks[clk]);
104
105 return ret;
106}
107
108static void ehci_platform_power_off(struct platform_device *dev)
109{
110 struct usb_hcd *hcd = platform_get_drvdata(dev);
111 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
112 int clk;
113
114 if (priv->phy) {
115 phy_power_off(priv->phy);
116 phy_exit(priv->phy);
117 }
118
119 for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
120 if (priv->clks[clk])
121 clk_disable_unprepare(priv->clks[clk]);
122}
123
Alan Stern99f91932012-11-01 11:13:08 -0400124static struct hc_driver __read_mostly ehci_platform_hc_driver;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100125
Andi Kleen62d08a12013-04-22 09:44:56 -0700126static const struct ehci_driver_overrides platform_overrides __initconst = {
Hans de Goedea4aeb212014-02-07 16:36:41 +0100127 .reset = ehci_platform_reset,
128 .extra_priv_size = sizeof(struct ehci_platform_priv),
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100129};
130
Hans de Goedea4aeb212014-02-07 16:36:41 +0100131static struct usb_ehci_pdata ehci_platform_defaults = {
132 .power_on = ehci_platform_power_on,
133 .power_suspend = ehci_platform_power_off,
134 .power_off = ehci_platform_power_off,
135};
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000136
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500137static int ehci_platform_probe(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100138{
139 struct usb_hcd *hcd;
140 struct resource *res_mem;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100141 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
142 struct ehci_platform_priv *priv;
Hans de Goedead3db5d2014-02-07 16:36:43 +0100143 struct ehci_hcd *ehci;
Hans de Goedea4aeb212014-02-07 16:36:41 +0100144 int err, irq, clk = 0;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100145
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100146 if (usb_disabled())
147 return -ENODEV;
148
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000149 /*
Hans de Goedea4aeb212014-02-07 16:36:41 +0100150 * Use reasonable defaults so platforms don't have to provide these
151 * with DT probing on ARM.
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000152 */
Hans de Goedea4aeb212014-02-07 16:36:41 +0100153 if (!pdata)
154 pdata = &ehci_platform_defaults;
Russell Kinge1fd7342013-06-27 12:36:37 +0100155
156 err = dma_coerce_mask_and_coherent(&dev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100157 if (err)
158 return err;
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000159
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100160 irq = platform_get_irq(dev, 0);
161 if (irq < 0) {
Florian Fainelli2350cb02012-10-08 15:11:41 +0200162 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100163 return irq;
164 }
165 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
166 if (!res_mem) {
Florian Fainelli5c9b2b22012-10-08 15:11:43 +0200167 dev_err(&dev->dev, "no memory resource provided");
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100168 return -ENXIO;
169 }
170
Hans de Goedea4aeb212014-02-07 16:36:41 +0100171 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
172 dev_name(&dev->dev));
173 if (!hcd)
174 return -ENOMEM;
175
176 platform_set_drvdata(dev, hcd);
177 dev->dev.platform_data = pdata;
178 priv = hcd_to_ehci_priv(hcd);
Hans de Goedead3db5d2014-02-07 16:36:43 +0100179 ehci = hcd_to_ehci(hcd);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100180
181 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
Hans de Goedead3db5d2014-02-07 16:36:43 +0100182 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
183 ehci->big_endian_mmio = 1;
184
185 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
186 ehci->big_endian_desc = 1;
187
188 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
189 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
190
Hans de Goedea4aeb212014-02-07 16:36:41 +0100191 priv->phy = devm_phy_get(&dev->dev, "usb");
192 if (IS_ERR(priv->phy)) {
193 err = PTR_ERR(priv->phy);
194 if (err == -EPROBE_DEFER)
195 goto err_put_hcd;
196 priv->phy = NULL;
197 }
198
199 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
200 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
201 if (IS_ERR(priv->clks[clk])) {
202 err = PTR_ERR(priv->clks[clk]);
203 if (err == -EPROBE_DEFER)
204 goto err_put_clks;
205 priv->clks[clk] = NULL;
206 break;
207 }
208 }
209 }
210
Alan Stern843d5e02014-02-11 11:26:10 -0500211 if (pdata->big_endian_desc)
212 ehci->big_endian_desc = 1;
213 if (pdata->big_endian_mmio)
214 ehci->big_endian_mmio = 1;
215
216#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
217 if (ehci->big_endian_mmio) {
218 dev_err(&dev->dev,
219 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
220 err = -EINVAL;
221 goto err_put_clks;
222 }
223#endif
224#ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
225 if (ehci->big_endian_desc) {
226 dev_err(&dev->dev,
227 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
228 err = -EINVAL;
229 goto err_put_clks;
230 }
231#endif
232
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700233 if (pdata->power_on) {
234 err = pdata->power_on(dev);
235 if (err < 0)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100236 goto err_put_clks;
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700237 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100238
239 hcd->rsrc_start = res_mem->start;
240 hcd->rsrc_len = resource_size(res_mem);
241
Thierry Reding148e1132013-01-21 11:09:22 +0100242 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
243 if (IS_ERR(hcd->regs)) {
244 err = PTR_ERR(hcd->regs);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100245 goto err_power;
Julia Lawallec03ad82012-08-14 08:47:38 +0200246 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100247 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
248 if (err)
Hans de Goedea4aeb212014-02-07 16:36:41 +0100249 goto err_power;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100250
Peter Chen3c9740a2013-11-05 10:46:02 +0800251 device_wakeup_enable(hcd->self.controller);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100252 platform_set_drvdata(dev, hcd);
253
254 return err;
255
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700256err_power:
257 if (pdata->power_off)
258 pdata->power_off(dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100259err_put_clks:
260 while (--clk >= 0)
261 clk_put(priv->clks[clk]);
262err_put_hcd:
263 if (pdata == &ehci_platform_defaults)
264 dev->dev.platform_data = NULL;
265
266 usb_put_hcd(hcd);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700267
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100268 return err;
269}
270
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500271static int ehci_platform_remove(struct platform_device *dev)
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100272{
273 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900274 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedea4aeb212014-02-07 16:36:41 +0100275 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
276 int clk;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100277
278 usb_remove_hcd(hcd);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100279
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700280 if (pdata->power_off)
281 pdata->power_off(dev);
282
Hans de Goedea4aeb212014-02-07 16:36:41 +0100283 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
284 clk_put(priv->clks[clk]);
285
286 usb_put_hcd(hcd);
287
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000288 if (pdata == &ehci_platform_defaults)
289 dev->dev.platform_data = NULL;
290
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100291 return 0;
292}
293
294#ifdef CONFIG_PM
295
296static int ehci_platform_suspend(struct device *dev)
297{
298 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900299 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700300 struct platform_device *pdev =
301 container_of(dev, struct platform_device, dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400302 bool do_wakeup = device_may_wakeup(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700303 int ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100304
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700305 ret = ehci_suspend(hcd, do_wakeup);
306
307 if (pdata->power_suspend)
308 pdata->power_suspend(pdev);
309
310 return ret;
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100311}
312
313static int ehci_platform_resume(struct device *dev)
314{
315 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900316 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
Kuninori Morimoto04216be2012-08-06 18:08:39 -0700317 struct platform_device *pdev =
318 container_of(dev, struct platform_device, dev);
319
320 if (pdata->power_on) {
321 int err = pdata->power_on(pdev);
322 if (err < 0)
323 return err;
324 }
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100325
Alan Sternc5cf9212012-06-28 11:19:02 -0400326 ehci_resume(hcd, false);
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100327 return 0;
328}
329
330#else /* !CONFIG_PM */
331#define ehci_platform_suspend NULL
332#define ehci_platform_resume NULL
333#endif /* CONFIG_PM */
334
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000335static const struct of_device_id vt8500_ehci_ids[] = {
336 { .compatible = "via,vt8500-ehci", },
337 { .compatible = "wm,prizm-ehci", },
Hans de Goede915974c2014-02-11 17:35:29 +0100338 { .compatible = "generic-ehci", },
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000339 {}
340};
Hans de Goedea4aeb212014-02-07 16:36:41 +0100341MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
Arnd Bergmannf3bc64d2013-03-27 21:44:22 +0000342
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100343static const struct platform_device_id ehci_platform_table[] = {
344 { "ehci-platform", 0 },
345 { }
346};
347MODULE_DEVICE_TABLE(platform, ehci_platform_table);
348
349static const struct dev_pm_ops ehci_platform_pm_ops = {
350 .suspend = ehci_platform_suspend,
351 .resume = ehci_platform_resume,
352};
353
354static struct platform_driver ehci_platform_driver = {
355 .id_table = ehci_platform_table,
356 .probe = ehci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500357 .remove = ehci_platform_remove,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100358 .shutdown = usb_hcd_platform_shutdown,
359 .driver = {
360 .owner = THIS_MODULE,
361 .name = "ehci-platform",
362 .pm = &ehci_platform_pm_ops,
Sachin Kamatae5e5f72013-05-21 17:17:16 +0530363 .of_match_table = vt8500_ehci_ids,
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100364 }
365};
Alan Stern99f91932012-11-01 11:13:08 -0400366
367static int __init ehci_platform_init(void)
368{
369 if (usb_disabled())
370 return -ENODEV;
371
372 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
373
374 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
375 return platform_driver_register(&ehci_platform_driver);
376}
377module_init(ehci_platform_init);
378
379static void __exit ehci_platform_cleanup(void)
380{
381 platform_driver_unregister(&ehci_platform_driver);
382}
383module_exit(ehci_platform_cleanup);
384
385MODULE_DESCRIPTION(DRIVER_DESC);
386MODULE_AUTHOR("Hauke Mehrtens");
387MODULE_AUTHOR("Alan Stern");
388MODULE_LICENSE("GPL");