2 * Driver for EHCI HCD on SPEAr SOC
4 * Copyright (C) 2010 ST Micro Electronics,
5 * Deepak Sikri <deepak.sikri@st.com>
7 * Based on various ehci-*.c drivers
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
14 #include <linux/clk.h>
15 #include <linux/dma-mapping.h>
17 #include <linux/jiffies.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
21 #include <linux/platform_device.h>
23 #include <linux/usb.h>
24 #include <linux/usb/hcd.h>
28 #define DRIVER_DESC "EHCI SPEAr driver"
30 static const char hcd_name
[] = "SPEAr-ehci";
36 #define to_spear_ehci(hcd) (struct spear_ehci *)(hcd_to_ehci(hcd)->priv)
38 static struct hc_driver __read_mostly ehci_spear_hc_driver
;
40 #ifdef CONFIG_PM_SLEEP
41 static int ehci_spear_drv_suspend(struct device
*dev
)
43 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
44 bool do_wakeup
= device_may_wakeup(dev
);
46 return ehci_suspend(hcd
, do_wakeup
);
49 static int ehci_spear_drv_resume(struct device
*dev
)
51 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
53 ehci_resume(hcd
, false);
56 #endif /* CONFIG_PM_SLEEP */
58 static SIMPLE_DEV_PM_OPS(ehci_spear_pm_ops
, ehci_spear_drv_suspend
,
59 ehci_spear_drv_resume
);
61 static int spear_ehci_hcd_drv_probe(struct platform_device
*pdev
)
64 struct spear_ehci
*sehci
;
67 const struct hc_driver
*driver
= &ehci_spear_hc_driver
;
73 irq
= platform_get_irq(pdev
, 0);
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.
84 retval
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
88 usbh_clk
= devm_clk_get(&pdev
->dev
, NULL
);
89 if (IS_ERR(usbh_clk
)) {
90 dev_err(&pdev
->dev
, "Error getting interface clock\n");
91 retval
= PTR_ERR(usbh_clk
);
95 hcd
= usb_create_hcd(driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
101 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
102 hcd
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
103 if (IS_ERR(hcd
->regs
)) {
104 retval
= PTR_ERR(hcd
->regs
);
107 hcd
->rsrc_start
= res
->start
;
108 hcd
->rsrc_len
= resource_size(res
);
110 sehci
= to_spear_ehci(hcd
);
111 sehci
->clk
= usbh_clk
;
113 /* registers start at offset 0x0 */
114 hcd_to_ehci(hcd
)->caps
= hcd
->regs
;
116 clk_prepare_enable(sehci
->clk
);
117 retval
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
121 device_wakeup_enable(hcd
->self
.controller
);
125 clk_disable_unprepare(sehci
->clk
);
129 dev_err(&pdev
->dev
, "init fail, %d\n", retval
);
134 static int spear_ehci_hcd_drv_remove(struct platform_device
*pdev
)
136 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
137 struct spear_ehci
*sehci
= to_spear_ehci(hcd
);
142 clk_disable_unprepare(sehci
->clk
);
148 static const struct of_device_id spear_ehci_id_table
[] = {
149 { .compatible
= "st,spear600-ehci", },
152 MODULE_DEVICE_TABLE(of
, spear_ehci_id_table
);
154 static struct platform_driver spear_ehci_hcd_driver
= {
155 .probe
= spear_ehci_hcd_drv_probe
,
156 .remove
= spear_ehci_hcd_drv_remove
,
157 .shutdown
= usb_hcd_platform_shutdown
,
159 .name
= "spear-ehci",
160 .bus
= &platform_bus_type
,
161 .pm
= &ehci_spear_pm_ops
,
162 .of_match_table
= spear_ehci_id_table
,
166 static const struct ehci_driver_overrides spear_overrides __initconst
= {
167 .extra_priv_size
= sizeof(struct spear_ehci
),
170 static int __init
ehci_spear_init(void)
175 pr_info("%s: " DRIVER_DESC
"\n", hcd_name
);
177 ehci_init_driver(&ehci_spear_hc_driver
, &spear_overrides
);
178 return platform_driver_register(&spear_ehci_hcd_driver
);
180 module_init(ehci_spear_init
);
182 static void __exit
ehci_spear_cleanup(void)
184 platform_driver_unregister(&spear_ehci_hcd_driver
);
186 module_exit(ehci_spear_cleanup
);
188 MODULE_DESCRIPTION(DRIVER_DESC
);
189 MODULE_ALIAS("platform:spear-ehci");
190 MODULE_AUTHOR("Deepak Sikri");
191 MODULE_LICENSE("GPL");