blob: 6b02107d281d17cb5db7bbfc34c845c81b70f392 [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);
Viresh Kumar98515e52012-11-08 20:37:59 +053084 if (!devm_request_mem_region(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len,
85 hcd_name)) {
Deepak Sikric8c38de2010-11-10 14:33:18 +053086 dev_dbg(&pdev->dev, "request_mem_region failed\n");
87 retval = -EBUSY;
Viresh Kumar98515e52012-11-08 20:37:59 +053088 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053089 }
90
Viresh Kumar98515e52012-11-08 20:37:59 +053091 hcd->regs = devm_ioremap(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len);
Deepak Sikric8c38de2010-11-10 14:33:18 +053092 if (!hcd->regs) {
93 dev_dbg(&pdev->dev, "ioremap failed\n");
94 retval = -ENOMEM;
Viresh Kumar98515e52012-11-08 20:37:59 +053095 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +053096 }
97
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +053098 sohci_p = to_spear_ohci(hcd);
99 sohci_p->clk = usbh_clk;
100
101 clk_prepare_enable(sohci_p->clk);
102
103 ohci = hcd_to_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530104
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800105 retval = usb_add_hcd(hcd, platform_get_irq(pdev, 0), 0);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530106 if (retval == 0)
107 return retval;
108
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530109 clk_disable_unprepare(sohci_p->clk);
Viresh Kumar98515e52012-11-08 20:37:59 +0530110err_put_hcd:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530111 usb_put_hcd(hcd);
Viresh Kumar98515e52012-11-08 20:37:59 +0530112fail:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530113 dev_err(&pdev->dev, "init fail, %d\n", retval);
114
115 return retval;
116}
117
118static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
119{
120 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530121 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530122
123 usb_remove_hcd(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530124 if (sohci_p->clk)
125 clk_disable_unprepare(sohci_p->clk);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530126
Deepak Sikric8c38de2010-11-10 14:33:18 +0530127 usb_put_hcd(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530128 return 0;
129}
130
131#if defined(CONFIG_PM)
Greg Kroah-Hartman3de80bf2013-10-14 10:15:50 -0700132static int spear_ohci_hcd_drv_suspend(struct platform_device *dev,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530133 pm_message_t message)
134{
Greg Kroah-Hartman3de80bf2013-10-14 10:15:50 -0700135 struct usb_hcd *hcd = platform_get_drvdata(dev);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530136 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530137 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530138
139 if (time_before(jiffies, ohci->next_statechange))
140 msleep(5);
141 ohci->next_statechange = jiffies;
142
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530143 clk_disable_unprepare(sohci_p->clk);
144
Greg Kroah-Hartman3de80bf2013-10-14 10:15:50 -0700145 return 0;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530146}
147
148static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
149{
150 struct usb_hcd *hcd = platform_get_drvdata(dev);
151 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530152 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530153
154 if (time_before(jiffies, ohci->next_statechange))
155 msleep(5);
156 ohci->next_statechange = jiffies;
157
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530158 clk_prepare_enable(sohci_p->clk);
Florian Fainellicfa49b42012-10-08 15:11:29 +0200159 ohci_resume(hcd, false);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530160 return 0;
161}
162#endif
163
Bill Pembertond3608b62012-11-19 13:24:34 -0500164static struct of_device_id spear_ohci_id_table[] = {
Stefan Roese56fafb92012-04-16 09:08:08 +0530165 { .compatible = "st,spear600-ohci", },
166 { },
167};
168
Deepak Sikric8c38de2010-11-10 14:33:18 +0530169/* Driver definition to register with the platform bus */
170static struct platform_driver spear_ohci_hcd_driver = {
171 .probe = spear_ohci_hcd_drv_probe,
172 .remove = spear_ohci_hcd_drv_remove,
173#ifdef CONFIG_PM
174 .suspend = spear_ohci_hcd_drv_suspend,
175 .resume = spear_ohci_hcd_drv_resume,
176#endif
177 .driver = {
178 .owner = THIS_MODULE,
179 .name = "spear-ohci",
Sachin Kamatc0d6f0b2013-05-21 17:17:20 +0530180 .of_match_table = spear_ohci_id_table,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530181 },
182};
183
Manjunath Goudar1cc6ac52013-09-21 16:38:41 +0530184static const struct ohci_driver_overrides spear_overrides __initconst = {
185 .extra_priv_size = sizeof(struct spear_ohci),
186};
187static int __init ohci_spear_init(void)
188{
189 if (usb_disabled())
190 return -ENODEV;
191
192 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
193
194 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
195 return platform_driver_register(&spear_ohci_hcd_driver);
196}
197module_init(ohci_spear_init);
198
199static void __exit ohci_spear_cleanup(void)
200{
201 platform_driver_unregister(&spear_ohci_hcd_driver);
202}
203module_exit(ohci_spear_cleanup);
204
205MODULE_DESCRIPTION(DRIVER_DESC);
206MODULE_AUTHOR("Deepak Sikri");
207MODULE_LICENSE("GPL v2");
Deepak Sikric8c38de2010-11-10 14:33:18 +0530208MODULE_ALIAS("platform:spear-ohci");