blob: 8bd915b2ae8c158e6ea86309f516e524f6d5c04b [file] [log] [blame]
Deepak Sikric8c38de2010-11-10 14:33:18 +05301/*
Manjunath Goudar7675d6b2013-04-02 18:24:00 +02002* Driver for EHCI HCD on SPEAr SOC
Deepak Sikric8c38de2010-11-10 14:33:18 +05303*
4* Copyright (C) 2010 ST Micro Electronics,
5* Deepak Sikri <deepak.sikri@st.com>
6*
7* Based on various ehci-*.c drivers
8*
9* This file is subject to the terms and conditions of the GNU General Public
10* License. See the file COPYING in the main directory of this archive for
11* more details.
12*/
13
Deepak Sikric8c38de2010-11-10 14:33:18 +053014#include <linux/clk.h>
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020015#include <linux/dma-mapping.h>
16#include <linux/io.h>
Deepak Sikri8c1b3692012-02-24 14:49:31 +053017#include <linux/jiffies.h>
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020018#include <linux/kernel.h>
19#include <linux/module.h>
Stefan Roese56fafb92012-04-16 09:08:08 +053020#include <linux/of.h>
Deepak Sikri8c1b3692012-02-24 14:49:31 +053021#include <linux/platform_device.h>
22#include <linux/pm.h>
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020023#include <linux/usb.h>
24#include <linux/usb/hcd.h>
25
26#include "ehci.h"
27
28#define DRIVER_DESC "EHCI SPEAr driver"
29
30static const char hcd_name[] = "SPEAr-ehci";
Deepak Sikric8c38de2010-11-10 14:33:18 +053031
32struct spear_ehci {
Deepak Sikric8c38de2010-11-10 14:33:18 +053033 struct clk *clk;
34};
35
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020036#define to_spear_ehci(hcd) (struct spear_ehci *)(hcd_to_ehci(hcd)->priv)
Deepak Sikric8c38de2010-11-10 14:33:18 +053037
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020038static struct hc_driver __read_mostly ehci_spear_hc_driver;
Deepak Sikric8c38de2010-11-10 14:33:18 +053039
Jingoo Hanab1f0462013-03-26 15:48:08 +090040#ifdef CONFIG_PM_SLEEP
Deepak Sikri8c1b3692012-02-24 14:49:31 +053041static int ehci_spear_drv_suspend(struct device *dev)
42{
43 struct usb_hcd *hcd = dev_get_drvdata(dev);
Alan Sternc5cf9212012-06-28 11:19:02 -040044 bool do_wakeup = device_may_wakeup(dev);
Deepak Sikri8c1b3692012-02-24 14:49:31 +053045
Alan Sternc5cf9212012-06-28 11:19:02 -040046 return ehci_suspend(hcd, do_wakeup);
Deepak Sikri8c1b3692012-02-24 14:49:31 +053047}
48
49static int ehci_spear_drv_resume(struct device *dev)
50{
51 struct usb_hcd *hcd = dev_get_drvdata(dev);
Deepak Sikri8c1b3692012-02-24 14:49:31 +053052
Alan Sternc5cf9212012-06-28 11:19:02 -040053 ehci_resume(hcd, false);
Deepak Sikri8c1b3692012-02-24 14:49:31 +053054 return 0;
55}
Jingoo Hanab1f0462013-03-26 15:48:08 +090056#endif /* CONFIG_PM_SLEEP */
Deepak Sikri8c1b3692012-02-24 14:49:31 +053057
58static SIMPLE_DEV_PM_OPS(ehci_spear_pm_ops, ehci_spear_drv_suspend,
59 ehci_spear_drv_resume);
60
Deepak Sikric8c38de2010-11-10 14:33:18 +053061static int spear_ehci_hcd_drv_probe(struct platform_device *pdev)
62{
63 struct usb_hcd *hcd ;
Manjunath Goudar7675d6b2013-04-02 18:24:00 +020064 struct spear_ehci *sehci;
Deepak Sikric8c38de2010-11-10 14:33:18 +053065 struct resource *res;
66 struct clk *usbh_clk;
67 const struct hc_driver *driver = &ehci_spear_hc_driver;
Deepak Sikric8c38de2010-11-10 14:33:18 +053068 int irq, retval;
Deepak Sikric8c38de2010-11-10 14:33:18 +053069
70 if (usb_disabled())
71 return -ENODEV;
72
73 irq = platform_get_irq(pdev, 0);
74 if (irq < 0) {
75 retval = irq;
Viresh Kumar98515e52012-11-08 20:37:59 +053076 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053077 }
78
Stefan Roese56fafb92012-04-16 09:08:08 +053079 /*
80 * Right now device-tree probed devices don't get dma_mask set.
81 * Since shared usb code relies on it, set it here for now.
82 * Once we have dma capability bindings this can go away.
83 */
Russell Kinge1fd7342013-06-27 12:36:37 +010084 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +010085 if (retval)
86 goto fail;
Stefan Roese56fafb92012-04-16 09:08:08 +053087
Viresh Kumar98515e52012-11-08 20:37:59 +053088 usbh_clk = devm_clk_get(&pdev->dev, NULL);
Deepak Sikric8c38de2010-11-10 14:33:18 +053089 if (IS_ERR(usbh_clk)) {
90 dev_err(&pdev->dev, "Error getting interface clock\n");
91 retval = PTR_ERR(usbh_clk);
Viresh Kumar98515e52012-11-08 20:37:59 +053092 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053093 }
94
95 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
96 if (!hcd) {
97 retval = -ENOMEM;
Viresh Kumar98515e52012-11-08 20:37:59 +053098 goto fail;
Deepak Sikric8c38de2010-11-10 14:33:18 +053099 }
100
101 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
102 if (!res) {
103 retval = -ENODEV;
Viresh Kumar98515e52012-11-08 20:37:59 +0530104 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530105 }
106
107 hcd->rsrc_start = res->start;
108 hcd->rsrc_len = resource_size(res);
Viresh Kumar98515e52012-11-08 20:37:59 +0530109 if (!devm_request_mem_region(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530110 driver->description)) {
111 retval = -EBUSY;
Viresh Kumar98515e52012-11-08 20:37:59 +0530112 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530113 }
114
Viresh Kumar98515e52012-11-08 20:37:59 +0530115 hcd->regs = devm_ioremap(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530116 if (hcd->regs == NULL) {
117 dev_dbg(&pdev->dev, "error mapping memory\n");
118 retval = -ENOMEM;
Viresh Kumar98515e52012-11-08 20:37:59 +0530119 goto err_put_hcd;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530120 }
121
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200122 sehci = to_spear_ehci(hcd);
123 sehci->clk = usbh_clk;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530124
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200125 /* registers start at offset 0x0 */
126 hcd_to_ehci(hcd)->caps = hcd->regs;
127
128 clk_prepare_enable(sehci->clk);
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800129 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530130 if (retval)
Viresh Kumar98515e52012-11-08 20:37:59 +0530131 goto err_stop_ehci;
Deepak Sikric8c38de2010-11-10 14:33:18 +0530132
Peter Chen3c9740a2013-11-05 10:46:02 +0800133 device_wakeup_enable(hcd->self.controller);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530134 return retval;
135
Viresh Kumar98515e52012-11-08 20:37:59 +0530136err_stop_ehci:
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200137 clk_disable_unprepare(sehci->clk);
Viresh Kumar98515e52012-11-08 20:37:59 +0530138err_put_hcd:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530139 usb_put_hcd(hcd);
Viresh Kumar98515e52012-11-08 20:37:59 +0530140fail:
Deepak Sikric8c38de2010-11-10 14:33:18 +0530141 dev_err(&pdev->dev, "init fail, %d\n", retval);
142
143 return retval ;
144}
145
146static int spear_ehci_hcd_drv_remove(struct platform_device *pdev)
147{
148 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200149 struct spear_ehci *sehci = to_spear_ehci(hcd);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530150
Deepak Sikric8c38de2010-11-10 14:33:18 +0530151 usb_remove_hcd(hcd);
152
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200153 if (sehci->clk)
154 clk_disable_unprepare(sehci->clk);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530155 usb_put_hcd(hcd);
156
Deepak Sikric8c38de2010-11-10 14:33:18 +0530157 return 0;
158}
159
Bill Pembertond3608b62012-11-19 13:24:34 -0500160static struct of_device_id spear_ehci_id_table[] = {
Stefan Roese56fafb92012-04-16 09:08:08 +0530161 { .compatible = "st,spear600-ehci", },
162 { },
163};
164
Deepak Sikric8c38de2010-11-10 14:33:18 +0530165static struct platform_driver spear_ehci_hcd_driver = {
166 .probe = spear_ehci_hcd_drv_probe,
167 .remove = spear_ehci_hcd_drv_remove,
168 .shutdown = usb_hcd_platform_shutdown,
169 .driver = {
170 .name = "spear-ehci",
Deepak Sikri8c1b3692012-02-24 14:49:31 +0530171 .bus = &platform_bus_type,
172 .pm = &ehci_spear_pm_ops,
Sachin Kamat2c398f32013-05-21 17:17:17 +0530173 .of_match_table = spear_ehci_id_table,
Deepak Sikric8c38de2010-11-10 14:33:18 +0530174 }
175};
176
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200177static const struct ehci_driver_overrides spear_overrides __initdata = {
178 .extra_priv_size = sizeof(struct spear_ehci),
179};
180
181static int __init ehci_spear_init(void)
182{
183 if (usb_disabled())
184 return -ENODEV;
185
186 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
187
188 ehci_init_driver(&ehci_spear_hc_driver, &spear_overrides);
189 return platform_driver_register(&spear_ehci_hcd_driver);
190}
191module_init(ehci_spear_init);
192
193static void __exit ehci_spear_cleanup(void)
194{
195 platform_driver_unregister(&spear_ehci_hcd_driver);
196}
197module_exit(ehci_spear_cleanup);
198
199MODULE_DESCRIPTION(DRIVER_DESC);
Deepak Sikric8c38de2010-11-10 14:33:18 +0530200MODULE_ALIAS("platform:spear-ehci");
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200201MODULE_AUTHOR("Deepak Sikri");
202MODULE_LICENSE("GPL");