usb: ehci-platform: support no relinquishing port quirk
[firefly-linux-kernel-4.4.55.git] / drivers / usb / host / ehci-platform.c
1 /*
2  * Generic platform ehci driver
3  *
4  * Copyright 2007 Steven Brown <sbrown@cortland.com>
5  * Copyright 2010-2012 Hauke Mehrtens <hauke@hauke-m.de>
6  * Copyright 2014 Hans de Goede <hdegoede@redhat.com>
7  *
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  */
22 #include <linux/acpi.h>
23 #include <linux/clk.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/err.h>
26 #include <linux/kernel.h>
27 #include <linux/hrtimer.h>
28 #include <linux/io.h>
29 #include <linux/module.h>
30 #include <linux/of.h>
31 #include <linux/phy/phy.h>
32 #include <linux/platform_device.h>
33 #include <linux/reset.h>
34 #include <linux/usb.h>
35 #include <linux/usb/hcd.h>
36 #include <linux/usb/ehci_pdriver.h>
37
38 #include "ehci.h"
39
40 #define DRIVER_DESC "EHCI generic platform driver"
41 #define EHCI_MAX_CLKS 3
42 #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
43
44 struct ehci_platform_priv {
45         struct clk *clks[EHCI_MAX_CLKS];
46         struct reset_control *rst;
47         struct phy **phys;
48         int num_phys;
49         bool reset_on_resume;
50 };
51
52 static const char hcd_name[] = "ehci-platform";
53
54 static int ehci_platform_reset(struct usb_hcd *hcd)
55 {
56         struct platform_device *pdev = to_platform_device(hcd->self.controller);
57         struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
58         struct ehci_hcd *ehci = hcd_to_ehci(hcd);
59         int retval;
60
61         ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
62
63         if (pdata->pre_setup) {
64                 retval = pdata->pre_setup(hcd);
65                 if (retval < 0)
66                         return retval;
67         }
68
69         ehci->caps = hcd->regs + pdata->caps_offset;
70         retval = ehci_setup(hcd);
71         if (retval)
72                 return retval;
73
74         if (pdata->no_io_watchdog)
75                 ehci->need_io_watchdog = 0;
76         return 0;
77 }
78
79 static 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);
83         int clk, ret, phy_num;
84
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
91         for (phy_num = 0; phy_num < priv->num_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         }
101
102         return 0;
103
104 err_exit_phy:
105         while (--phy_num >= 0) {
106                 phy_power_off(priv->phys[phy_num]);
107                 phy_exit(priv->phys[phy_num]);
108         }
109 err_disable_clks:
110         while (--clk >= 0)
111                 clk_disable_unprepare(priv->clks[clk]);
112
113         return ret;
114 }
115
116 static 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);
120         int clk, phy_num;
121
122         for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
123                 phy_power_off(priv->phys[phy_num]);
124                 phy_exit(priv->phys[phy_num]);
125         }
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
132 static struct hc_driver __read_mostly ehci_platform_hc_driver;
133
134 static const struct ehci_driver_overrides platform_overrides __initconst = {
135         .reset =                ehci_platform_reset,
136         .extra_priv_size =      sizeof(struct ehci_platform_priv),
137 };
138
139 static 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 };
144
145 static int ehci_platform_probe(struct platform_device *dev)
146 {
147         struct usb_hcd *hcd;
148         struct resource *res_mem;
149         struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
150         struct ehci_platform_priv *priv;
151         struct ehci_hcd *ehci;
152         int err, irq, phy_num, clk = 0;
153
154         if (usb_disabled())
155                 return -ENODEV;
156
157         /*
158          * Use reasonable defaults so platforms don't have to provide these
159          * with DT probing on ARM.
160          */
161         if (!pdata)
162                 pdata = &ehci_platform_defaults;
163
164         err = dma_coerce_mask_and_coherent(&dev->dev,
165                 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
166         if (err) {
167                 dev_err(&dev->dev, "Error: DMA mask configuration failed\n");
168                 return err;
169         }
170
171         irq = platform_get_irq(dev, 0);
172         if (irq < 0) {
173                 dev_err(&dev->dev, "no irq provided");
174                 return irq;
175         }
176
177         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);
185         ehci = hcd_to_ehci(hcd);
186
187         if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
188                 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
197                 if (of_property_read_bool(dev->dev.of_node,
198                                           "needs-reset-on-resume"))
199                         priv->reset_on_resume = true;
200
201                 if (of_property_read_bool(dev->dev.of_node,
202                                           "has-transaction-translator"))
203                         hcd->has_tt = 1;
204
205                 if (of_property_read_bool(dev->dev.of_node,
206                                           "no-relinquish-port"))
207                         ehci_platform_hc_driver.relinquish_port = NULL;
208
209                 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
210                                 "phys", "#phy-cells");
211
212                 if (priv->num_phys > 0) {
213                         priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
214                                             sizeof(struct phy *), GFP_KERNEL);
215                         if (!priv->phys)
216                                 return -ENOMEM;
217                 } else
218                         priv->num_phys = 0;
219
220                 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
221                         priv->phys[phy_num] = devm_of_phy_get_by_index(
222                                         &dev->dev, dev->dev.of_node, phy_num);
223                         if (IS_ERR(priv->phys[phy_num])) {
224                                 err = PTR_ERR(priv->phys[phy_num]);
225                                         goto err_put_hcd;
226                         }
227                 }
228
229                 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
230                         priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
231                         if (IS_ERR(priv->clks[clk])) {
232                                 err = PTR_ERR(priv->clks[clk]);
233                                 if (err == -EPROBE_DEFER)
234                                         goto err_put_clks;
235                                 priv->clks[clk] = NULL;
236                                 break;
237                         }
238                 }
239         }
240
241         priv->rst = devm_reset_control_get_optional(&dev->dev, NULL);
242         if (IS_ERR(priv->rst)) {
243                 err = PTR_ERR(priv->rst);
244                 if (err == -EPROBE_DEFER)
245                         goto err_put_clks;
246                 priv->rst = NULL;
247         } else {
248                 err = reset_control_deassert(priv->rst);
249                 if (err)
250                         goto err_put_clks;
251         }
252
253         if (pdata->big_endian_desc)
254                 ehci->big_endian_desc = 1;
255         if (pdata->big_endian_mmio)
256                 ehci->big_endian_mmio = 1;
257         if (pdata->has_tt)
258                 hcd->has_tt = 1;
259         if (pdata->reset_on_resume)
260                 priv->reset_on_resume = true;
261
262 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
263         if (ehci->big_endian_mmio) {
264                 dev_err(&dev->dev,
265                         "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
266                 err = -EINVAL;
267                 goto err_reset;
268         }
269 #endif
270 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
271         if (ehci->big_endian_desc) {
272                 dev_err(&dev->dev,
273                         "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
274                 err = -EINVAL;
275                 goto err_reset;
276         }
277 #endif
278
279         if (pdata->power_on) {
280                 err = pdata->power_on(dev);
281                 if (err < 0)
282                         goto err_reset;
283         }
284
285         res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
286         hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
287         if (IS_ERR(hcd->regs)) {
288                 err = PTR_ERR(hcd->regs);
289                 goto err_power;
290         }
291         hcd->rsrc_start = res_mem->start;
292         hcd->rsrc_len = resource_size(res_mem);
293
294         err = usb_add_hcd(hcd, irq, IRQF_SHARED);
295         if (err)
296                 goto err_power;
297
298         device_wakeup_enable(hcd->self.controller);
299         platform_set_drvdata(dev, hcd);
300
301         return err;
302
303 err_power:
304         if (pdata->power_off)
305                 pdata->power_off(dev);
306 err_reset:
307         if (priv->rst)
308                 reset_control_assert(priv->rst);
309 err_put_clks:
310         while (--clk >= 0)
311                 clk_put(priv->clks[clk]);
312 err_put_hcd:
313         if (pdata == &ehci_platform_defaults)
314                 dev->dev.platform_data = NULL;
315
316         usb_put_hcd(hcd);
317
318         return err;
319 }
320
321 static int ehci_platform_remove(struct platform_device *dev)
322 {
323         struct usb_hcd *hcd = platform_get_drvdata(dev);
324         struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
325         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
326         int clk;
327
328         usb_remove_hcd(hcd);
329
330         if (pdata->power_off)
331                 pdata->power_off(dev);
332
333         if (priv->rst)
334                 reset_control_assert(priv->rst);
335
336         for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
337                 clk_put(priv->clks[clk]);
338
339         usb_put_hcd(hcd);
340
341         if (pdata == &ehci_platform_defaults)
342                 dev->dev.platform_data = NULL;
343
344         return 0;
345 }
346
347 #ifdef CONFIG_PM_SLEEP
348 static int ehci_platform_suspend(struct device *dev)
349 {
350         struct usb_hcd *hcd = dev_get_drvdata(dev);
351         struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
352         struct platform_device *pdev =
353                 container_of(dev, struct platform_device, dev);
354         bool do_wakeup = device_may_wakeup(dev);
355         int ret;
356
357         ret = ehci_suspend(hcd, do_wakeup);
358         if (ret)
359                 return ret;
360
361         if (pdata->power_suspend)
362                 pdata->power_suspend(pdev);
363
364         return ret;
365 }
366
367 static int ehci_platform_resume(struct device *dev)
368 {
369         struct usb_hcd *hcd = dev_get_drvdata(dev);
370         struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
371         struct platform_device *pdev =
372                 container_of(dev, struct platform_device, dev);
373         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
374
375         if (pdata->power_on) {
376                 int err = pdata->power_on(pdev);
377                 if (err < 0)
378                         return err;
379         }
380
381         ehci_resume(hcd, priv->reset_on_resume);
382         return 0;
383 }
384 #endif /* CONFIG_PM_SLEEP */
385
386 static const struct of_device_id vt8500_ehci_ids[] = {
387         { .compatible = "via,vt8500-ehci", },
388         { .compatible = "wm,prizm-ehci", },
389         { .compatible = "generic-ehci", },
390         { .compatible = "cavium,octeon-6335-ehci", },
391         {}
392 };
393 MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
394
395 static const struct acpi_device_id ehci_acpi_match[] = {
396         { "PNP0D20", 0 }, /* EHCI controller without debug */
397         { }
398 };
399 MODULE_DEVICE_TABLE(acpi, ehci_acpi_match);
400
401 static const struct platform_device_id ehci_platform_table[] = {
402         { "ehci-platform", 0 },
403         { }
404 };
405 MODULE_DEVICE_TABLE(platform, ehci_platform_table);
406
407 static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
408         ehci_platform_resume);
409
410 static struct platform_driver ehci_platform_driver = {
411         .id_table       = ehci_platform_table,
412         .probe          = ehci_platform_probe,
413         .remove         = ehci_platform_remove,
414         .shutdown       = usb_hcd_platform_shutdown,
415         .driver         = {
416                 .name   = "ehci-platform",
417                 .pm     = &ehci_platform_pm_ops,
418                 .of_match_table = vt8500_ehci_ids,
419                 .acpi_match_table = ACPI_PTR(ehci_acpi_match),
420         }
421 };
422
423 static int __init ehci_platform_init(void)
424 {
425         if (usb_disabled())
426                 return -ENODEV;
427
428         pr_info("%s: " DRIVER_DESC "\n", hcd_name);
429
430         ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
431         return platform_driver_register(&ehci_platform_driver);
432 }
433 module_init(ehci_platform_init);
434
435 static void __exit ehci_platform_cleanup(void)
436 {
437         platform_driver_unregister(&ehci_platform_driver);
438 }
439 module_exit(ehci_platform_cleanup);
440
441 MODULE_DESCRIPTION(DRIVER_DESC);
442 MODULE_AUTHOR("Hauke Mehrtens");
443 MODULE_AUTHOR("Alan Stern");
444 MODULE_LICENSE("GPL");