1 // SPDX-License-Identifier: GPL-2.0
3 * Generic platform ehci driver
5 * Copyright 2007 Steven Brown <sbrown@cortland.com>
6 * Copyright 2010-2012 Hauke Mehrtens <hauke@hauke-m.de>
7 * Copyright 2014 Hans de Goede <hdegoede@redhat.com>
9 * Derived from the ohci-ssb driver
10 * Copyright 2007 Michael Buesch <m@bues.ch>
12 * Derived from the EHCI-PCI driver
13 * Copyright (c) 2000-2004 by David Brownell
15 * Derived from the ohci-pci driver
16 * Copyright 1999 Roman Weissgaerber
17 * Copyright 2000-2002 David Brownell
18 * Copyright 1999 Linus Torvalds
19 * Copyright 1999 Gregory P. Smith
21 #include <linux/acpi.h>
22 #include <linux/clk.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/err.h>
25 #include <linux/kernel.h>
26 #include <linux/hrtimer.h>
28 #include <linux/module.h>
30 #include <linux/platform_device.h>
31 #include <linux/reset.h>
32 #include <linux/sys_soc.h>
33 #include <linux/timer.h>
34 #include <linux/usb.h>
35 #include <linux/usb/hcd.h>
36 #include <linux/usb/ehci_pdriver.h>
37 #include <linux/usb/of.h>
41 #define DRIVER_DESC "EHCI generic platform driver"
42 #define EHCI_MAX_CLKS 4
43 #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
45 #define BCM_USB_FIFO_THRESHOLD 0x00800040
47 struct ehci_platform_priv {
48 struct clk *clks[EHCI_MAX_CLKS];
49 struct reset_control *rsts;
52 struct timer_list poll_timer;
53 struct delayed_work poll_work;
56 static int ehci_platform_reset(struct usb_hcd *hcd)
58 struct platform_device *pdev = to_platform_device(hcd->self.controller);
59 struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
60 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
63 ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug;
65 if (pdata->pre_setup) {
66 retval = pdata->pre_setup(hcd);
71 ehci->caps = hcd->regs + pdata->caps_offset;
72 retval = ehci_setup(hcd);
76 if (pdata->no_io_watchdog)
77 ehci->need_io_watchdog = 0;
79 if (of_device_is_compatible(pdev->dev.of_node, "brcm,xgs-iproc-ehci"))
80 ehci_writel(ehci, BCM_USB_FIFO_THRESHOLD,
81 &ehci->regs->brcm_insnreg[1]);
86 static int ehci_platform_power_on(struct platform_device *dev)
88 struct usb_hcd *hcd = platform_get_drvdata(dev);
89 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
92 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) {
93 ret = clk_prepare_enable(priv->clks[clk]);
95 goto err_disable_clks;
102 clk_disable_unprepare(priv->clks[clk]);
107 static void ehci_platform_power_off(struct platform_device *dev)
109 struct usb_hcd *hcd = platform_get_drvdata(dev);
110 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
113 for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--)
115 clk_disable_unprepare(priv->clks[clk]);
118 static struct hc_driver __read_mostly ehci_platform_hc_driver;
120 static const struct ehci_driver_overrides platform_overrides __initconst = {
121 .reset = ehci_platform_reset,
122 .extra_priv_size = sizeof(struct ehci_platform_priv),
125 static struct usb_ehci_pdata ehci_platform_defaults = {
126 .power_on = ehci_platform_power_on,
127 .power_suspend = ehci_platform_power_off,
128 .power_off = ehci_platform_power_off,
132 * quirk_poll_check_port_status - Poll port_status if the device sticks
133 * @ehci: the ehci hcd pointer
135 * Since EHCI/OHCI controllers on R-Car Gen3 SoCs are possible to be getting
136 * stuck very rarely after a full/low usb device was disconnected. To
137 * detect such a situation, the controllers require a special way which poll
138 * the EHCI PORTSC register.
140 * Return: true if the controller's port_status indicated getting stuck
142 static bool quirk_poll_check_port_status(struct ehci_hcd *ehci)
144 u32 port_status = ehci_readl(ehci, &ehci->regs->port_status[0]);
146 if (!(port_status & PORT_OWNER) &&
147 (port_status & PORT_POWER) &&
148 !(port_status & PORT_CONNECT) &&
149 (port_status & PORT_LS_MASK))
156 * quirk_poll_rebind_companion - rebind comanion device to recover
157 * @ehci: the ehci hcd pointer
159 * Since EHCI/OHCI controllers on R-Car Gen3 SoCs are possible to be getting
160 * stuck very rarely after a full/low usb device was disconnected. To
161 * recover from such a situation, the controllers require changing the OHCI
164 static void quirk_poll_rebind_companion(struct ehci_hcd *ehci)
166 struct device *companion_dev;
167 struct usb_hcd *hcd = ehci_to_hcd(ehci);
169 companion_dev = usb_of_get_companion_dev(hcd->self.controller);
173 device_release_driver(companion_dev);
174 if (device_attach(companion_dev) < 0)
175 ehci_err(ehci, "%s: failed\n", __func__);
177 put_device(companion_dev);
180 static void quirk_poll_work(struct work_struct *work)
182 struct ehci_platform_priv *priv =
183 container_of(to_delayed_work(work), struct ehci_platform_priv,
185 struct ehci_hcd *ehci = container_of((void *)priv, struct ehci_hcd,
188 /* check the status twice to reduce misdetection rate */
189 if (!quirk_poll_check_port_status(ehci))
192 if (!quirk_poll_check_port_status(ehci))
195 ehci_dbg(ehci, "%s: detected getting stuck. rebind now!\n", __func__);
196 quirk_poll_rebind_companion(ehci);
199 static void quirk_poll_timer(struct timer_list *t)
201 struct ehci_platform_priv *priv = from_timer(priv, t, poll_timer);
202 struct ehci_hcd *ehci = container_of((void *)priv, struct ehci_hcd,
205 if (quirk_poll_check_port_status(ehci)) {
207 * Now scheduling the work for testing the port more. Note that
208 * updating the status is possible to be delayed when
209 * reconnection. So, this uses delayed work with 5 ms delay
210 * to avoid misdetection.
212 schedule_delayed_work(&priv->poll_work, msecs_to_jiffies(5));
215 mod_timer(&priv->poll_timer, jiffies + HZ);
218 static void quirk_poll_init(struct ehci_platform_priv *priv)
220 INIT_DELAYED_WORK(&priv->poll_work, quirk_poll_work);
221 timer_setup(&priv->poll_timer, quirk_poll_timer, 0);
222 mod_timer(&priv->poll_timer, jiffies + HZ);
225 static void quirk_poll_end(struct ehci_platform_priv *priv)
227 del_timer_sync(&priv->poll_timer);
228 cancel_delayed_work(&priv->poll_work);
231 static const struct soc_device_attribute quirk_poll_match[] = {
232 { .family = "R-Car Gen3" },
236 static int ehci_platform_probe(struct platform_device *dev)
239 struct resource *res_mem;
240 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
241 struct ehci_platform_priv *priv;
242 struct ehci_hcd *ehci;
243 int err, irq, clk = 0;
249 * Use reasonable defaults so platforms don't have to provide these
250 * with DT probing on ARM.
253 pdata = &ehci_platform_defaults;
255 err = dma_coerce_mask_and_coherent(&dev->dev,
256 pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32));
258 dev_err(&dev->dev, "Error: DMA mask configuration failed\n");
262 irq = platform_get_irq(dev, 0);
266 hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
267 dev_name(&dev->dev));
271 platform_set_drvdata(dev, hcd);
272 dev->dev.platform_data = pdata;
273 priv = hcd_to_ehci_priv(hcd);
274 ehci = hcd_to_ehci(hcd);
276 if (pdata == &ehci_platform_defaults && dev->dev.of_node) {
277 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
278 ehci->big_endian_mmio = 1;
280 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
281 ehci->big_endian_desc = 1;
283 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
284 ehci->big_endian_mmio = ehci->big_endian_desc = 1;
286 if (of_property_read_bool(dev->dev.of_node, "spurious-oc"))
287 ehci->spurious_oc = 1;
289 if (of_property_read_bool(dev->dev.of_node,
290 "needs-reset-on-resume"))
291 priv->reset_on_resume = true;
293 if (of_property_read_bool(dev->dev.of_node,
294 "has-transaction-translator"))
297 if (of_device_is_compatible(dev->dev.of_node,
298 "aspeed,ast2500-ehci") ||
299 of_device_is_compatible(dev->dev.of_node,
300 "aspeed,ast2600-ehci"))
303 if (soc_device_match(quirk_poll_match))
304 priv->quirk_poll = true;
306 for (clk = 0; clk < EHCI_MAX_CLKS; clk++) {
307 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
308 if (IS_ERR(priv->clks[clk])) {
309 err = PTR_ERR(priv->clks[clk]);
310 if (err == -EPROBE_DEFER)
312 priv->clks[clk] = NULL;
318 priv->rsts = devm_reset_control_array_get_optional_shared(&dev->dev);
319 if (IS_ERR(priv->rsts)) {
320 err = PTR_ERR(priv->rsts);
324 err = reset_control_deassert(priv->rsts);
328 if (pdata->big_endian_desc)
329 ehci->big_endian_desc = 1;
330 if (pdata->big_endian_mmio)
331 ehci->big_endian_mmio = 1;
334 if (pdata->reset_on_resume)
335 priv->reset_on_resume = true;
336 if (pdata->spurious_oc)
337 ehci->spurious_oc = 1;
339 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
340 if (ehci->big_endian_mmio) {
342 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n");
347 #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
348 if (ehci->big_endian_desc) {
350 "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n");
356 if (pdata->power_on) {
357 err = pdata->power_on(dev);
362 hcd->regs = devm_platform_get_and_ioremap_resource(dev, 0, &res_mem);
363 if (IS_ERR(hcd->regs)) {
364 err = PTR_ERR(hcd->regs);
367 hcd->rsrc_start = res_mem->start;
368 hcd->rsrc_len = resource_size(res_mem);
370 hcd->tpl_support = of_usb_host_tpl_support(dev->dev.of_node);
372 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
376 device_wakeup_enable(hcd->self.controller);
377 device_enable_async_suspend(hcd->self.controller);
378 platform_set_drvdata(dev, hcd);
380 if (priv->quirk_poll)
381 quirk_poll_init(priv);
386 if (pdata->power_off)
387 pdata->power_off(dev);
389 reset_control_assert(priv->rsts);
392 clk_put(priv->clks[clk]);
394 if (pdata == &ehci_platform_defaults)
395 dev->dev.platform_data = NULL;
402 static void ehci_platform_remove(struct platform_device *dev)
404 struct usb_hcd *hcd = platform_get_drvdata(dev);
405 struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
406 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
409 if (priv->quirk_poll)
410 quirk_poll_end(priv);
414 if (pdata->power_off)
415 pdata->power_off(dev);
417 reset_control_assert(priv->rsts);
419 for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
420 clk_put(priv->clks[clk]);
424 if (pdata == &ehci_platform_defaults)
425 dev->dev.platform_data = NULL;
428 static int __maybe_unused ehci_platform_suspend(struct device *dev)
430 struct usb_hcd *hcd = dev_get_drvdata(dev);
431 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
432 struct platform_device *pdev = to_platform_device(dev);
433 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
434 bool do_wakeup = device_may_wakeup(dev);
437 if (priv->quirk_poll)
438 quirk_poll_end(priv);
440 ret = ehci_suspend(hcd, do_wakeup);
444 if (pdata->power_suspend)
445 pdata->power_suspend(pdev);
450 static int __maybe_unused ehci_platform_resume(struct device *dev)
452 struct usb_hcd *hcd = dev_get_drvdata(dev);
453 struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
454 struct platform_device *pdev = to_platform_device(dev);
455 struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
456 struct device *companion_dev;
458 if (pdata->power_on) {
459 int err = pdata->power_on(pdev);
464 companion_dev = usb_of_get_companion_dev(hcd->self.controller);
466 device_pm_wait_for_dev(hcd->self.controller, companion_dev);
467 put_device(companion_dev);
470 ehci_resume(hcd, priv->reset_on_resume);
472 pm_runtime_disable(dev);
473 pm_runtime_set_active(dev);
474 pm_runtime_enable(dev);
476 if (priv->quirk_poll)
477 quirk_poll_init(priv);
482 static const struct of_device_id vt8500_ehci_ids[] = {
483 { .compatible = "via,vt8500-ehci", },
484 { .compatible = "wm,prizm-ehci", },
485 { .compatible = "generic-ehci", },
486 { .compatible = "cavium,octeon-6335-ehci", },
489 MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);
492 static const struct acpi_device_id ehci_acpi_match[] = {
493 { "PNP0D20", 0 }, /* EHCI controller without debug */
496 MODULE_DEVICE_TABLE(acpi, ehci_acpi_match);
499 static const struct platform_device_id ehci_platform_table[] = {
500 { "ehci-platform", 0 },
503 MODULE_DEVICE_TABLE(platform, ehci_platform_table);
505 static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend,
506 ehci_platform_resume);
508 static struct platform_driver ehci_platform_driver = {
509 .id_table = ehci_platform_table,
510 .probe = ehci_platform_probe,
511 .remove_new = ehci_platform_remove,
512 .shutdown = usb_hcd_platform_shutdown,
514 .name = "ehci-platform",
515 .pm = pm_ptr(&ehci_platform_pm_ops),
516 .of_match_table = vt8500_ehci_ids,
517 .acpi_match_table = ACPI_PTR(ehci_acpi_match),
518 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
522 static int __init ehci_platform_init(void)
527 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
528 return platform_driver_register(&ehci_platform_driver);
530 module_init(ehci_platform_init);
532 static void __exit ehci_platform_cleanup(void)
534 platform_driver_unregister(&ehci_platform_driver);
536 module_exit(ehci_platform_cleanup);
538 MODULE_DESCRIPTION(DRIVER_DESC);
539 MODULE_AUTHOR("Hauke Mehrtens");
540 MODULE_AUTHOR("Alan Stern");
541 MODULE_LICENSE("GPL");