blob: 9b81f420656d6b8ec5b2fd3fbda9bdc8f8d44655 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Deepak Sikric8c38de2010-11-10 14:33:18 +05302/*
3* OHCI HCD (Host Controller Driver) for USB.
4*
5* Copyright (C) 2010 ST Microelectronics.
6* Deepak Sikri<deepak.sikri@st.com>
7*
8* Based on various ohci-*.c drivers
Deepak Sikric8c38de2010-11-10 14:33:18 +05309*/
10
Deepak Sikric8c38de2010-11-10 14:33:18 +053011#include <linux/clk.h>
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053012#include <linux/dma-mapping.h>
13#include <linux/io.h>
14#include <linux/kernel.h>
15#include <linux/module.h>
Stefan Roese56fafb92012-04-16 09:08:08 +053016#include <linux/of.h>
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053017#include <linux/platform_device.h>
18#include <linux/signal.h>
19#include <linux/usb.h>
20#include <linux/usb/hcd.h>
Deepak Sikric8c38de2010-11-10 14:33:18 +053021
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053022#include "ohci.h"
23
24#define DRIVER_DESC "OHCI SPEAr driver"
25
26static const char hcd_name[] = "SPEAr-ohci";
Deepak Sikric8c38de2010-11-10 14:33:18 +053027struct spear_ohci {
Deepak Sikric8c38de2010-11-10 14:33:18 +053028 struct clk *clk;
29};
30
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053031#define to_spear_ohci(hcd) (struct spear_ohci *)(hcd_to_ohci(hcd)->priv)
Deepak Sikric8c38de2010-11-10 14:33:18 +053032
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053033static struct hc_driver __read_mostly ohci_spear_hc_driver;
Deepak Sikric8c38de2010-11-10 14:33:18 +053034
35static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
36{
37 const struct hc_driver *driver = &ohci_spear_hc_driver;
38 struct usb_hcd *hcd = NULL;
39 struct clk *usbh_clk;
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053040 struct spear_ohci *sohci_p;
Deepak Sikric8c38de2010-11-10 14:33:18 +053041 struct resource *res;
42 int retval, irq;
Deepak Sikric8c38de2010-11-10 14:33:18 +053043
44 irq = platform_get_irq(pdev, 0);
45 if (irq < 0) {
46 retval = irq;
Viresh Kumar98515e52012-11-08 20:37:59 +053047 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053048 }
49
Stefan Roese56fafb92012-04-16 09:08:08 +053050 /*
51 * Right now device-tree probed devices don't get dma_mask set.
52 * Since shared usb code relies on it, set it here for now.
53 * Once we have dma capability bindings this can go away.
54 */
Russell Kinge1fd7342013-06-27 12:36:37 +010055 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +010056 if (retval)
57 goto fail;
Stefan Roese56fafb92012-04-16 09:08:08 +053058
Viresh Kumar98515e52012-11-08 20:37:59 +053059 usbh_clk = devm_clk_get(&pdev->dev, NULL);
Deepak Sikric8c38de2010-11-10 14:33:18 +053060 if (IS_ERR(usbh_clk)) {
61 dev_err(&pdev->dev, "Error getting interface clock\n");
62 retval = PTR_ERR(usbh_clk);
Viresh Kumar98515e52012-11-08 20:37:59 +053063 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053064 }
65
66 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
67 if (!hcd) {
68 retval = -ENOMEM;
Viresh Kumar98515e52012-11-08 20:37:59 +053069 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053070 }
71
72 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Han09796be2013-12-11 16:29:15 +090073 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
74 if (IS_ERR(hcd->regs)) {
75 retval = PTR_ERR(hcd->regs);
Viresh Kumar98515e52012-11-08 20:37:59 +053076 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053077 }
78
Rob Herring2dec70f2021-12-15 16:55:09 -060079 hcd->rsrc_start = res->start;
Varka Bhadram0bf80cb2014-11-04 07:51:19 +053080 hcd->rsrc_len = resource_size(res);
81
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053082 sohci_p = to_spear_ohci(hcd);
83 sohci_p->clk = usbh_clk;
84
85 clk_prepare_enable(sohci_p->clk);
86
Sergey Shtylyove725ace2021-07-12 21:16:07 +030087 retval = usb_add_hcd(hcd, irq, 0);
Peter Chen3c9740a2013-11-05 10:46:02 +080088 if (retval == 0) {
89 device_wakeup_enable(hcd->self.controller);
Deepak Sikric8c38de2010-11-10 14:33:18 +053090 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +080091 }
Deepak Sikric8c38de2010-11-10 14:33:18 +053092
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053093 clk_disable_unprepare(sohci_p->clk);
Viresh Kumar98515e52012-11-08 20:37:59 +053094err_put_hcd:
Deepak Sikric8c38de2010-11-10 14:33:18 +053095 usb_put_hcd(hcd);
Viresh Kumar98515e52012-11-08 20:37:59 +053096fail:
Deepak Sikric8c38de2010-11-10 14:33:18 +053097 dev_err(&pdev->dev, "init fail, %d\n", retval);
98
99 return retval;
100}
101
102static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
103{
104 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530105 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530106
107 usb_remove_hcd(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530108 if (sohci_p->clk)
109 clk_disable_unprepare(sohci_p->clk);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530110
Deepak Sikric8c38de2010-11-10 14:33:18 +0530111 usb_put_hcd(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530112 return 0;
113}
114
115#if defined(CONFIG_PM)
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530116static int spear_ohci_hcd_drv_suspend(struct platform_device *pdev,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530117 pm_message_t message)
118{
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530119 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530120 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530121 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530122 bool do_wakeup = device_may_wakeup(&pdev->dev);
123 int ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530124
125 if (time_before(jiffies, ohci->next_statechange))
126 msleep(5);
127 ohci->next_statechange = jiffies;
128
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530129 ret = ohci_suspend(hcd, do_wakeup);
130 if (ret)
131 return ret;
132
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530133 clk_disable_unprepare(sohci_p->clk);
134
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530135 return ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530136}
137
138static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
139{
140 struct usb_hcd *hcd = platform_get_drvdata(dev);
141 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530142 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530143
144 if (time_before(jiffies, ohci->next_statechange))
145 msleep(5);
146 ohci->next_statechange = jiffies;
147
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530148 clk_prepare_enable(sohci_p->clk);
Florian Fainellicfa49b42012-10-08 15:11:29 +0200149 ohci_resume(hcd, false);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530150 return 0;
151}
152#endif
153
Jingoo Han10e15d62014-06-18 13:38:10 +0900154static const struct of_device_id spear_ohci_id_table[] = {
Stefan Roese56fafb92012-04-16 09:08:08 +0530155 { .compatible = "st,spear600-ohci", },
156 { },
157};
Luis de Bethencourt04c0b762015-09-19 14:10:58 +0100158MODULE_DEVICE_TABLE(of, spear_ohci_id_table);
Stefan Roese56fafb92012-04-16 09:08:08 +0530159
Deepak Sikric8c38de2010-11-10 14:33:18 +0530160/* Driver definition to register with the platform bus */
161static struct platform_driver spear_ohci_hcd_driver = {
162 .probe = spear_ohci_hcd_drv_probe,
163 .remove = spear_ohci_hcd_drv_remove,
164#ifdef CONFIG_PM
165 .suspend = spear_ohci_hcd_drv_suspend,
166 .resume = spear_ohci_hcd_drv_resume,
167#endif
168 .driver = {
Deepak Sikric8c38de2010-11-10 14:33:18 +0530169 .name = "spear-ohci",
Sachin Kamatc0d6f0b2013-05-21 17:17:20 +0530170 .of_match_table = spear_ohci_id_table,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530171 },
172};
173
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530174static const struct ohci_driver_overrides spear_overrides __initconst = {
175 .extra_priv_size = sizeof(struct spear_ohci),
176};
177static int __init ohci_spear_init(void)
178{
179 if (usb_disabled())
180 return -ENODEV;
181
182 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
183
184 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
185 return platform_driver_register(&spear_ohci_hcd_driver);
186}
187module_init(ohci_spear_init);
188
189static void __exit ohci_spear_cleanup(void)
190{
191 platform_driver_unregister(&spear_ohci_hcd_driver);
192}
193module_exit(ohci_spear_cleanup);
194
195MODULE_DESCRIPTION(DRIVER_DESC);
196MODULE_AUTHOR("Deepak Sikri");
197MODULE_LICENSE("GPL v2");
Deepak Sikric8c38de2010-11-10 14:33:18 +0530198MODULE_ALIAS("platform:spear-ohci");