blob: 8b29a0c04c23b9958e9e21b91d73d8f35c944c8e [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);
77 if (!res) {
78 retval = -ENODEV;
Viresh Kumar98515e52012-11-08 20:37:59 +053079 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053080 }
81
82 hcd->rsrc_start = pdev->resource[0].start;
83 hcd->rsrc_len = resource_size(res);
Deepak Sikric8c38de2010-11-10 14:33:18 +053084
Jingoo Han09796be2013-12-11 16:29:15 +090085 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
86 if (IS_ERR(hcd->regs)) {
87 retval = PTR_ERR(hcd->regs);
Viresh Kumar98515e52012-11-08 20:37:59 +053088 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053089 }
90
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053091 sohci_p = to_spear_ohci(hcd);
92 sohci_p->clk = usbh_clk;
93
94 clk_prepare_enable(sohci_p->clk);
95
96 ohci = hcd_to_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +053097
Yong Zhangb5dd18d2011-09-07 16:10:52 +080098 retval = usb_add_hcd(hcd, platform_get_irq(pdev, 0), 0);
Peter Chen3c9740a2013-11-05 10:46:02 +080099 if (retval == 0) {
100 device_wakeup_enable(hcd->self.controller);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530101 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +0800102 }
Deepak Sikric8c38de2010-11-10 14:33:18 +0530103
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530104 clk_disable_unprepare(sohci_p->clk);
Viresh Kumar98515e52012-11-08 20:37:59 +0530105err_put_hcd:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530106 usb_put_hcd(hcd);
Viresh Kumar98515e52012-11-08 20:37:59 +0530107fail:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530108 dev_err(&pdev->dev, "init fail, %d\n", retval);
109
110 return retval;
111}
112
113static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
114{
115 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530116 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530117
118 usb_remove_hcd(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530119 if (sohci_p->clk)
120 clk_disable_unprepare(sohci_p->clk);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530121
Deepak Sikric8c38de2010-11-10 14:33:18 +0530122 usb_put_hcd(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530123 return 0;
124}
125
126#if defined(CONFIG_PM)
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530127static int spear_ohci_hcd_drv_suspend(struct platform_device *pdev,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530128 pm_message_t message)
129{
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530130 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530131 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530132 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530133 bool do_wakeup = device_may_wakeup(&pdev->dev);
134 int ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530135
136 if (time_before(jiffies, ohci->next_statechange))
137 msleep(5);
138 ohci->next_statechange = jiffies;
139
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530140 ret = ohci_suspend(hcd, do_wakeup);
141 if (ret)
142 return ret;
143
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530144 clk_disable_unprepare(sohci_p->clk);
145
Majunath Goudard2e3d2b2013-11-13 17:40:21 +0530146 return ret;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530147}
148
149static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
150{
151 struct usb_hcd *hcd = platform_get_drvdata(dev);
152 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530153 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530154
155 if (time_before(jiffies, ohci->next_statechange))
156 msleep(5);
157 ohci->next_statechange = jiffies;
158
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530159 clk_prepare_enable(sohci_p->clk);
Florian Fainellicfa49b42012-10-08 15:11:29 +0200160 ohci_resume(hcd, false);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530161 return 0;
162}
163#endif
164
Bill Pembertond3608b62012-11-19 13:24:34 -0500165static struct of_device_id spear_ohci_id_table[] = {
Stefan Roese56fafb92012-04-16 09:08:08 +0530166 { .compatible = "st,spear600-ohci", },
167 { },
168};
169
Deepak Sikric8c38de2010-11-10 14:33:18 +0530170/* Driver definition to register with the platform bus */
171static struct platform_driver spear_ohci_hcd_driver = {
172 .probe = spear_ohci_hcd_drv_probe,
173 .remove = spear_ohci_hcd_drv_remove,
174#ifdef CONFIG_PM
175 .suspend = spear_ohci_hcd_drv_suspend,
176 .resume = spear_ohci_hcd_drv_resume,
177#endif
178 .driver = {
179 .owner = THIS_MODULE,
180 .name = "spear-ohci",
Sachin Kamatc0d6f0b2013-05-21 17:17:20 +0530181 .of_match_table = spear_ohci_id_table,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530182 },
183};
184
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530185static const struct ohci_driver_overrides spear_overrides __initconst = {
186 .extra_priv_size = sizeof(struct spear_ohci),
187};
188static int __init ohci_spear_init(void)
189{
190 if (usb_disabled())
191 return -ENODEV;
192
193 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
194
195 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
196 return platform_driver_register(&spear_ohci_hcd_driver);
197}
198module_init(ohci_spear_init);
199
200static void __exit ohci_spear_cleanup(void)
201{
202 platform_driver_unregister(&spear_ohci_hcd_driver);
203}
204module_exit(ohci_spear_cleanup);
205
206MODULE_DESCRIPTION(DRIVER_DESC);
207MODULE_AUTHOR("Deepak Sikri");
208MODULE_LICENSE("GPL v2");
Deepak Sikric8c38de2010-11-10 14:33:18 +0530209MODULE_ALIAS("platform:spear-ohci");