1 // SPDX-License-Identifier: GPL-2.0
3 * OHCI HCD (Host Controller Driver) for USB.
5 * Copyright (C) 2010 ST Microelectronics.
8 * Based on various ohci-*.c drivers
11 #include <linux/clk.h>
12 #include <linux/dma-mapping.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/signal.h>
19 #include <linux/usb.h>
20 #include <linux/usb/hcd.h>
24 #define DRIVER_DESC "OHCI SPEAr driver"
30 #define to_spear_ohci(hcd) (struct spear_ohci *)(hcd_to_ohci(hcd)->priv)
32 static struct hc_driver __read_mostly ohci_spear_hc_driver;
34 static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
36 const struct hc_driver *driver = &ohci_spear_hc_driver;
37 struct usb_hcd *hcd = NULL;
39 struct spear_ohci *sohci_p;
43 irq = platform_get_irq(pdev, 0);
50 * Right now device-tree probed devices don't get dma_mask set.
51 * Since shared usb code relies on it, set it here for now.
52 * Once we have dma capability bindings this can go away.
54 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
58 usbh_clk = devm_clk_get(&pdev->dev, NULL);
59 if (IS_ERR(usbh_clk)) {
60 dev_err(&pdev->dev, "Error getting interface clock\n");
61 retval = PTR_ERR(usbh_clk);
65 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
71 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
72 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
73 if (IS_ERR(hcd->regs)) {
74 retval = PTR_ERR(hcd->regs);
78 hcd->rsrc_start = res->start;
79 hcd->rsrc_len = resource_size(res);
81 sohci_p = to_spear_ohci(hcd);
82 sohci_p->clk = usbh_clk;
84 clk_prepare_enable(sohci_p->clk);
86 retval = usb_add_hcd(hcd, irq, 0);
88 device_wakeup_enable(hcd->self.controller);
92 clk_disable_unprepare(sohci_p->clk);
96 dev_err(&pdev->dev, "init fail, %d\n", retval);
101 static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
103 struct usb_hcd *hcd = platform_get_drvdata(pdev);
104 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
108 clk_disable_unprepare(sohci_p->clk);
114 #if defined(CONFIG_PM)
115 static int spear_ohci_hcd_drv_suspend(struct platform_device *pdev,
116 pm_message_t message)
118 struct usb_hcd *hcd = platform_get_drvdata(pdev);
119 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
120 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
121 bool do_wakeup = device_may_wakeup(&pdev->dev);
124 if (time_before(jiffies, ohci->next_statechange))
126 ohci->next_statechange = jiffies;
128 ret = ohci_suspend(hcd, do_wakeup);
132 clk_disable_unprepare(sohci_p->clk);
137 static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
139 struct usb_hcd *hcd = platform_get_drvdata(dev);
140 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
141 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
143 if (time_before(jiffies, ohci->next_statechange))
145 ohci->next_statechange = jiffies;
147 clk_prepare_enable(sohci_p->clk);
148 ohci_resume(hcd, false);
153 static const struct of_device_id spear_ohci_id_table[] = {
154 { .compatible = "st,spear600-ohci", },
157 MODULE_DEVICE_TABLE(of, spear_ohci_id_table);
159 /* Driver definition to register with the platform bus */
160 static struct platform_driver spear_ohci_hcd_driver = {
161 .probe = spear_ohci_hcd_drv_probe,
162 .remove = spear_ohci_hcd_drv_remove,
164 .suspend = spear_ohci_hcd_drv_suspend,
165 .resume = spear_ohci_hcd_drv_resume,
168 .name = "spear-ohci",
169 .of_match_table = spear_ohci_id_table,
173 static const struct ohci_driver_overrides spear_overrides __initconst = {
174 .extra_priv_size = sizeof(struct spear_ohci),
176 static int __init ohci_spear_init(void)
181 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
182 return platform_driver_register(&spear_ohci_hcd_driver);
184 module_init(ohci_spear_init);
186 static void __exit ohci_spear_cleanup(void)
188 platform_driver_unregister(&spear_ohci_hcd_driver);
190 module_exit(ohci_spear_cleanup);
192 MODULE_DESCRIPTION(DRIVER_DESC);
193 MODULE_AUTHOR("Deepak Sikri");
194 MODULE_LICENSE("GPL v2");
195 MODULE_ALIAS("platform:spear-ohci");