usb: ehci-platform: use no relinquish port quirk only for rk3288
[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 void ehci_rockchip_relinquish_port(struct usb_hcd *hcd, int portnum)
55 {
56         struct ehci_hcd *ehci = hcd_to_ehci(hcd);
57         u32 __iomem *status_reg = &ehci->regs->port_status[--portnum];
58         u32 portsc;
59
60         portsc = ehci_readl(ehci, status_reg);
61         portsc &= ~(PORT_OWNER | PORT_RWC_BITS);
62
63         ehci_writel(ehci, portsc, status_reg);
64 }
65
66 static int ehci_platform_reset(struct usb_hcd *hcd)
67 {
68         struct platform_device *pdev = to_platform_device(hcd->self.controller);
69         struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
70         struct ehci_hcd *ehci = hcd_to_ehci(hcd);
71         int retval;
72
73         ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
74
75         if (pdata->pre_setup) {
76                 retval = pdata->pre_setup(hcd);
77                 if (retval < 0)
78                         return retval;
79         }
80
81         ehci->caps = hcd->regs + pdata->caps_offset;
82         retval = ehci_setup(hcd);
83         if (retval)
84                 return retval;
85
86         if (pdata->no_io_watchdog)
87                 ehci->need_io_watchdog = 0;
88         return 0;
89 }
90
91 static int ehci_platform_power_on(struct platform_device *dev)
92 {
93         struct usb_hcd *hcd = platform_get_drvdata(dev);
94         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
95         int clk, ret, phy_num;
96
97         for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
98                 ret = clk_prepare_enable(priv->clks[clk]);
99                 if (ret)
100                         goto err_disable_clks;
101         }
102
103         for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
104                 ret = phy_init(priv->phys[phy_num]);
105                 if (ret)
106                         goto err_exit_phy;
107                 ret = phy_power_on(priv->phys[phy_num]);
108                 if (ret) {
109                         phy_exit(priv->phys[phy_num]);
110                         goto err_exit_phy;
111                 }
112         }
113
114         return 0;
115
116 err_exit_phy:
117         while (--phy_num >= 0) {
118                 phy_power_off(priv->phys[phy_num]);
119                 phy_exit(priv->phys[phy_num]);
120         }
121 err_disable_clks:
122         while (--clk >= 0)
123                 clk_disable_unprepare(priv->clks[clk]);
124
125         return ret;
126 }
127
128 static void ehci_platform_power_off(struct platform_device *dev)
129 {
130         struct usb_hcd *hcd = platform_get_drvdata(dev);
131         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
132         int clk, phy_num;
133
134         for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
135                 phy_power_off(priv->phys[phy_num]);
136                 phy_exit(priv->phys[phy_num]);
137         }
138
139         for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
140                 if (priv->clks[clk])
141                         clk_disable_unprepare(priv->clks[clk]);
142 }
143
144 static struct hc_driver __read_mostly ehci_platform_hc_driver;
145
146 static const struct ehci_driver_overrides platform_overrides __initconst = {
147         .reset =                ehci_platform_reset,
148         .extra_priv_size =      sizeof(struct ehci_platform_priv),
149 };
150
151 static struct usb_ehci_pdata ehci_platform_defaults = {
152         .power_on =             ehci_platform_power_on,
153         .power_suspend =        ehci_platform_power_off,
154         .power_off =            ehci_platform_power_off,
155 };
156
157 static int ehci_platform_probe(struct platform_device *dev)
158 {
159         struct usb_hcd *hcd;
160         struct resource *res_mem;
161         struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
162         struct ehci_platform_priv *priv;
163         struct ehci_hcd *ehci;
164         int err, irq, phy_num, clk = 0;
165
166         if (usb_disabled())
167                 return -ENODEV;
168
169         /*
170          * Use reasonable defaults so platforms don't have to provide these
171          * with DT probing on ARM.
172          */
173         if (!pdata)
174                 pdata = &ehci_platform_defaults;
175
176         err = dma_coerce_mask_and_coherent(&dev->dev,
177                 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
178         if (err) {
179                 dev_err(&dev->dev, "Error: DMA mask configuration failed\n");
180                 return err;
181         }
182
183         irq = platform_get_irq(dev, 0);
184         if (irq < 0) {
185                 dev_err(&dev->dev, "no irq provided");
186                 return irq;
187         }
188
189         hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
190                              dev_name(&dev->dev));
191         if (!hcd)
192                 return -ENOMEM;
193
194         platform_set_drvdata(dev, hcd);
195         dev->dev.platform_data = pdata;
196         priv = hcd_to_ehci_priv(hcd);
197         ehci = hcd_to_ehci(hcd);
198
199         if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
200                 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
201                         ehci->big_endian_mmio = 1;
202
203                 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
204                         ehci->big_endian_desc = 1;
205
206                 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
207                         ehci->big_endian_mmio = ehci->big_endian_desc = 1;
208
209                 if (of_property_read_bool(dev->dev.of_node,
210                                           "needs-reset-on-resume"))
211                         priv->reset_on_resume = true;
212
213                 if (of_property_read_bool(dev->dev.of_node,
214                                           "has-transaction-translator"))
215                         hcd->has_tt = 1;
216
217                 if (of_machine_is_compatible("rockchip,rk3288") &&
218                     of_property_read_bool(dev->dev.of_node,
219                                           "rockchip-relinquish-port"))
220                         ehci_platform_hc_driver.relinquish_port =
221                                           ehci_rockchip_relinquish_port;
222
223                 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
224                                 "phys", "#phy-cells");
225
226                 if (priv->num_phys > 0) {
227                         priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
228                                             sizeof(struct phy *), GFP_KERNEL);
229                         if (!priv->phys)
230                                 return -ENOMEM;
231                 } else
232                         priv->num_phys = 0;
233
234                 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
235                         priv->phys[phy_num] = devm_of_phy_get_by_index(
236                                         &dev->dev, dev->dev.of_node, phy_num);
237                         if (IS_ERR(priv->phys[phy_num])) {
238                                 err = PTR_ERR(priv->phys[phy_num]);
239                                         goto err_put_hcd;
240                         }
241                 }
242
243                 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
244                         priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
245                         if (IS_ERR(priv->clks[clk])) {
246                                 err = PTR_ERR(priv->clks[clk]);
247                                 if (err == -EPROBE_DEFER)
248                                         goto err_put_clks;
249                                 priv->clks[clk] = NULL;
250                                 break;
251                         }
252                 }
253         }
254
255         priv->rst = devm_reset_control_get_optional(&dev->dev, NULL);
256         if (IS_ERR(priv->rst)) {
257                 err = PTR_ERR(priv->rst);
258                 if (err == -EPROBE_DEFER)
259                         goto err_put_clks;
260                 priv->rst = NULL;
261         } else {
262                 err = reset_control_deassert(priv->rst);
263                 if (err)
264                         goto err_put_clks;
265         }
266
267         if (pdata->big_endian_desc)
268                 ehci->big_endian_desc = 1;
269         if (pdata->big_endian_mmio)
270                 ehci->big_endian_mmio = 1;
271         if (pdata->has_tt)
272                 hcd->has_tt = 1;
273         if (pdata->reset_on_resume)
274                 priv->reset_on_resume = true;
275
276 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
277         if (ehci->big_endian_mmio) {
278                 dev_err(&dev->dev,
279                         "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
280                 err = -EINVAL;
281                 goto err_reset;
282         }
283 #endif
284 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
285         if (ehci->big_endian_desc) {
286                 dev_err(&dev->dev,
287                         "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
288                 err = -EINVAL;
289                 goto err_reset;
290         }
291 #endif
292
293         if (pdata->power_on) {
294                 err = pdata->power_on(dev);
295                 if (err < 0)
296                         goto err_reset;
297         }
298
299         res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
300         hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
301         if (IS_ERR(hcd->regs)) {
302                 err = PTR_ERR(hcd->regs);
303                 goto err_power;
304         }
305         hcd->rsrc_start = res_mem->start;
306         hcd->rsrc_len = resource_size(res_mem);
307         if (priv->num_phys == 1)
308                 hcd->phy = priv->phys[0];
309
310         err = usb_add_hcd(hcd, irq, IRQF_SHARED);
311         if (err)
312                 goto err_power;
313
314         device_wakeup_enable(hcd->self.controller);
315         platform_set_drvdata(dev, hcd);
316
317         return err;
318
319 err_power:
320         if (pdata->power_off)
321                 pdata->power_off(dev);
322 err_reset:
323         if (priv->rst)
324                 reset_control_assert(priv->rst);
325 err_put_clks:
326         while (--clk >= 0)
327                 clk_put(priv->clks[clk]);
328 err_put_hcd:
329         if (pdata == &ehci_platform_defaults)
330                 dev->dev.platform_data = NULL;
331
332         usb_put_hcd(hcd);
333
334         return err;
335 }
336
337 static int ehci_platform_remove(struct platform_device *dev)
338 {
339         struct usb_hcd *hcd = platform_get_drvdata(dev);
340         struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
341         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
342         int clk;
343
344         usb_remove_hcd(hcd);
345
346         if (pdata->power_off)
347                 pdata->power_off(dev);
348
349         if (priv->rst)
350                 reset_control_assert(priv->rst);
351
352         for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
353                 clk_put(priv->clks[clk]);
354
355         usb_put_hcd(hcd);
356
357         if (pdata == &ehci_platform_defaults)
358                 dev->dev.platform_data = NULL;
359
360         return 0;
361 }
362
363 #ifdef CONFIG_PM_SLEEP
364 static int ehci_platform_suspend(struct device *dev)
365 {
366         struct usb_hcd *hcd = dev_get_drvdata(dev);
367         struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
368         struct platform_device *pdev =
369                 container_of(dev, struct platform_device, dev);
370         bool do_wakeup = device_may_wakeup(dev);
371         int ret;
372
373         ret = ehci_suspend(hcd, do_wakeup);
374         if (ret)
375                 return ret;
376
377         if (pdata->power_suspend)
378                 pdata->power_suspend(pdev);
379
380         return ret;
381 }
382
383 static int ehci_platform_resume(struct device *dev)
384 {
385         struct usb_hcd *hcd = dev_get_drvdata(dev);
386         struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
387         struct platform_device *pdev =
388                 container_of(dev, struct platform_device, dev);
389         struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
390
391         if (pdata->power_on) {
392                 int err = pdata->power_on(pdev);
393                 if (err < 0)
394                         return err;
395         }
396
397         ehci_resume(hcd, priv->reset_on_resume);
398         return 0;
399 }
400 #endif /* CONFIG_PM_SLEEP */
401
402 static const struct of_device_id vt8500_ehci_ids[] = {
403         { .compatible = "via,vt8500-ehci", },
404         { .compatible = "wm,prizm-ehci", },
405         { .compatible = "generic-ehci", },
406         { .compatible = "cavium,octeon-6335-ehci", },
407         {}
408 };
409 MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
410
411 static const struct acpi_device_id ehci_acpi_match[] = {
412         { "PNP0D20", 0 }, /* EHCI controller without debug */
413         { }
414 };
415 MODULE_DEVICE_TABLE(acpi, ehci_acpi_match);
416
417 static const struct platform_device_id ehci_platform_table[] = {
418         { "ehci-platform", 0 },
419         { }
420 };
421 MODULE_DEVICE_TABLE(platform, ehci_platform_table);
422
423 static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
424         ehci_platform_resume);
425
426 static struct platform_driver ehci_platform_driver = {
427         .id_table       = ehci_platform_table,
428         .probe          = ehci_platform_probe,
429         .remove         = ehci_platform_remove,
430         .shutdown       = usb_hcd_platform_shutdown,
431         .driver         = {
432                 .name   = "ehci-platform",
433                 .pm     = &ehci_platform_pm_ops,
434                 .of_match_table = vt8500_ehci_ids,
435                 .acpi_match_table = ACPI_PTR(ehci_acpi_match),
436         }
437 };
438
439 static int __init ehci_platform_init(void)
440 {
441         if (usb_disabled())
442                 return -ENODEV;
443
444         pr_info("%s: " DRIVER_DESC "\n", hcd_name);
445
446         ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
447         return platform_driver_register(&ehci_platform_driver);
448 }
449 module_init(ehci_platform_init);
450
451 static void __exit ehci_platform_cleanup(void)
452 {
453         platform_driver_unregister(&ehci_platform_driver);
454 }
455 module_exit(ehci_platform_cleanup);
456
457 MODULE_DESCRIPTION(DRIVER_DESC);
458 MODULE_AUTHOR("Hauke Mehrtens");
459 MODULE_AUTHOR("Alan Stern");
460 MODULE_LICENSE("GPL");