blob: 56478ed2f932fc4dc74d32d156a643f90672c31a [file] [log] [blame]
Deepak Sikric8c38de2010-11-10 14:33:18 +05301/*
2* OHCI HCD (Host Controller Driver) for USB.
3*
4* Copyright (C) 2010 ST Microelectronics.
5* Deepak Sikri<deepak.sikri@st.com>
6*
7* Based on various ohci-*.c drivers
8*
9* This file is licensed under the terms of the GNU General Public
10* License version 2. This program is licensed "as is" without any
11* warranty of any kind, whether express or implied.
12*/
13
Deepak Sikric8c38de2010-11-10 14:33:18 +053014#include <linux/clk.h>
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053015#include <linux/dma-mapping.h>
16#include <linux/io.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
Stefan Roese56fafb92012-04-16 09:08:08 +053019#include <linux/of.h>
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053020#include <linux/platform_device.h>
21#include <linux/signal.h>
22#include <linux/usb.h>
23#include <linux/usb/hcd.h>
Deepak Sikric8c38de2010-11-10 14:33:18 +053024
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053025#include "ohci.h"
26
27#define DRIVER_DESC "OHCI SPEAr driver"
28
29static const char hcd_name[] = "SPEAr-ohci";
Deepak Sikric8c38de2010-11-10 14:33:18 +053030struct spear_ohci {
Deepak Sikric8c38de2010-11-10 14:33:18 +053031 struct clk *clk;
32};
33
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053034#define to_spear_ohci(hcd) (struct spear_ohci *)(hcd_to_ohci(hcd)->priv)
Deepak Sikric8c38de2010-11-10 14:33:18 +053035
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053036static struct hc_driver __read_mostly ohci_spear_hc_driver;
Deepak Sikric8c38de2010-11-10 14:33:18 +053037
38static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
39{
40 const struct hc_driver *driver = &ohci_spear_hc_driver;
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053041 struct ohci_hcd *ohci;
Deepak Sikric8c38de2010-11-10 14:33:18 +053042 struct usb_hcd *hcd = NULL;
43 struct clk *usbh_clk;
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053044 struct spear_ohci *sohci_p;
Deepak Sikric8c38de2010-11-10 14:33:18 +053045 struct resource *res;
46 int retval, irq;
Deepak Sikric8c38de2010-11-10 14:33:18 +053047
48 irq = platform_get_irq(pdev, 0);
49 if (irq < 0) {
50 retval = irq;
Viresh Kumar98515e52012-11-08 20:37:59 +053051 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053052 }
53
Stefan Roese56fafb92012-04-16 09:08:08 +053054 /*
55 * Right now device-tree probed devices don't get dma_mask set.
56 * Since shared usb code relies on it, set it here for now.
57 * Once we have dma capability bindings this can go away.
58 */
Russell Kinge1fd7342013-06-27 12:36:37 +010059 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +010060 if (retval)
61 goto fail;
Stefan Roese56fafb92012-04-16 09:08:08 +053062
Viresh Kumar98515e52012-11-08 20:37:59 +053063 usbh_clk = devm_clk_get(&pdev->dev, NULL);
Deepak Sikric8c38de2010-11-10 14:33:18 +053064 if (IS_ERR(usbh_clk)) {
65 dev_err(&pdev->dev, "Error getting interface clock\n");
66 retval = PTR_ERR(usbh_clk);
Viresh Kumar98515e52012-11-08 20:37:59 +053067 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053068 }
69
70 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
71 if (!hcd) {
72 retval = -ENOMEM;
Viresh Kumar98515e52012-11-08 20:37:59 +053073 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053074 }
75
76 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Han09796be2013-12-11 16:29:15 +090077 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
78 if (IS_ERR(hcd->regs)) {
79 retval = PTR_ERR(hcd->regs);
Viresh Kumar98515e52012-11-08 20:37:59 +053080 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053081 }
82
Varka Bhadram0bf80cb2014-11-04 07:51:19 +053083 hcd->rsrc_start = pdev->resource[0].start;
84 hcd->rsrc_len = resource_size(res);
85
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053086 sohci_p = to_spear_ohci(hcd);
87 sohci_p->clk = usbh_clk;
88
89 clk_prepare_enable(sohci_p->clk);
90
91 ohci = hcd_to_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +053092
Yong Zhangb5dd18d2011-09-07 16:10:52 +080093 retval = usb_add_hcd(hcd, platform_get_irq(pdev, 0), 0);
Peter Chen3c9740a2013-11-05 10:46:02 +080094 if (retval == 0) {
95 device_wakeup_enable(hcd->self.controller);
Deepak Sikric8c38de2010-11-10 14:33:18 +053096 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +080097 }
Deepak Sikric8c38de2010-11-10 14:33:18 +053098
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053099 clk_disable_unprepare(sohci_p->clk);
Viresh Kumar98515e52012-11-08 20:37:59 +0530100err_put_hcd:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530101 usb_put_hcd(hcd);
Viresh Kumar98515e52012-11-08 20:37:59 +0530102fail:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530103 dev_err(&pdev->dev, "init fail, %d\n", retval);
104
105 return retval;
106}
107
108static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
109{
110 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530111 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530112
113 usb_remove_hcd(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530114 if (sohci_p->clk)
115 clk_disable_unprepare(sohci_p->clk);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530116
Deepak Sikric8c38de2010-11-10 14:33:18 +0530117 usb_put_hcd(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530118 return 0;
119}
120
121#if defined(CONFIG_PM)
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530122static int spear_ohci_hcd_drv_suspend(struct platform_device *pdev,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530123 pm_message_t message)
124{
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530125 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530126 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530127 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530128 bool do_wakeup = device_may_wakeup(&pdev->dev);
129 int ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530130
131 if (time_before(jiffies, ohci->next_statechange))
132 msleep(5);
133 ohci->next_statechange = jiffies;
134
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530135 ret = ohci_suspend(hcd, do_wakeup);
136 if (ret)
137 return ret;
138
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530139 clk_disable_unprepare(sohci_p->clk);
140
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530141 return ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530142}
143
144static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
145{
146 struct usb_hcd *hcd = platform_get_drvdata(dev);
147 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530148 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530149
150 if (time_before(jiffies, ohci->next_statechange))
151 msleep(5);
152 ohci->next_statechange = jiffies;
153
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530154 clk_prepare_enable(sohci_p->clk);
Florian Fainellicfa49b42012-10-08 15:11:29 +0200155 ohci_resume(hcd, false);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530156 return 0;
157}
158#endif
159
Jingoo Han10e15d62014-06-18 13:38:10 +0900160static const struct of_device_id spear_ohci_id_table[] = {
Stefan Roese56fafb92012-04-16 09:08:08 +0530161 { .compatible = "st,spear600-ohci", },
162 { },
163};
Luis de Bethencourt04c0b762015-09-19 14:10:58 +0100164MODULE_DEVICE_TABLE(of, spear_ohci_id_table);
Stefan Roese56fafb92012-04-16 09:08:08 +0530165
Deepak Sikric8c38de2010-11-10 14:33:18 +0530166/* Driver definition to register with the platform bus */
167static struct platform_driver spear_ohci_hcd_driver = {
168 .probe = spear_ohci_hcd_drv_probe,
169 .remove = spear_ohci_hcd_drv_remove,
170#ifdef CONFIG_PM
171 .suspend = spear_ohci_hcd_drv_suspend,
172 .resume = spear_ohci_hcd_drv_resume,
173#endif
174 .driver = {
Deepak Sikric8c38de2010-11-10 14:33:18 +0530175 .name = "spear-ohci",
Sachin Kamatc0d6f0b2013-05-21 17:17:20 +0530176 .of_match_table = spear_ohci_id_table,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530177 },
178};
179
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530180static const struct ohci_driver_overrides spear_overrides __initconst = {
181 .extra_priv_size = sizeof(struct spear_ohci),
182};
183static int __init ohci_spear_init(void)
184{
185 if (usb_disabled())
186 return -ENODEV;
187
188 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
189
190 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
191 return platform_driver_register(&spear_ohci_hcd_driver);
192}
193module_init(ohci_spear_init);
194
195static void __exit ohci_spear_cleanup(void)
196{
197 platform_driver_unregister(&spear_ohci_hcd_driver);
198}
199module_exit(ohci_spear_cleanup);
200
201MODULE_DESCRIPTION(DRIVER_DESC);
202MODULE_AUTHOR("Deepak Sikri");
203MODULE_LICENSE("GPL v2");
Deepak Sikric8c38de2010-11-10 14:33:18 +0530204MODULE_ALIAS("platform:spear-ohci");